Skip to content

Instantly share code, notes, and snippets.

@youssef22222
Created July 30, 2025 05:20
Show Gist options
  • Select an option

  • Save youssef22222/20596fc829b9bc544397604b11d5dfb5 to your computer and use it in GitHub Desktop.

Select an option

Save youssef22222/20596fc829b9bc544397604b11d5dfb5 to your computer and use it in GitHub Desktop.
Speed Violation Map - 8856 GRD (Zeeshan) - 1753852807
<!DOCTYPE html>
<html>
<head>
<title>Speed Violation Path - 8856 GRD (Zeeshan)</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}
#map {
height: 100%;
position: relative;
}
/* Enhanced marker styles */
.number-icon {
background-color: #FF1744;
border: 2px solid white;
border-radius: 50%;
color: white;
font-weight: bold;
text-align: center;
font-size: 12px;
line-height: 20px;
width: 24px;
height: 24px;
margin-left: -12px;
margin-top: -12px;
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.violation-icon {
background-color: #FF1744;
border: 3px solid white;
width: 32px;
height: 32px;
line-height: 26px;
font-size: 16px;
font-weight: bold;
margin-left: -16px;
margin-top: -16px;
position: relative;
}
/* Pulsing animation for last violation point */
.pulse-ring {
border: 3px solid #FF1744;
border-radius: 50%;
height: 50px;
width: 50px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
animation: pulsate 2s ease-out;
animation-iteration-count: infinite;
opacity: 0;
}
@keyframes pulsate {
0% {
transform: translate(-50%, -50%) scale(0.1, 0.1);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: translate(-50%, -50%) scale(1.2, 1.2);
opacity: 0;
}
}
/* Enhanced popup styles */
.popup-content {
min-width: 280px;
font-family: inherit;
}
.popup-content table {
width: 100%;
border-collapse: collapse;
}
.popup-content td {
padding: 4px 8px;
border-bottom: 1px solid #eee;
font-size: 13px;
}
.popup-content td:first-child {
font-weight: 600;
width: 45%;
color: #555;
}
.popup-content td:last-child {
color: #2c3e50;
}
.popup-title {
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
padding-bottom: 8px;
border-bottom: 2px solid #e9ecef;
font-size: 16px;
}
.speed-violation {
color: #e74c3c;
font-weight: bold;
}
/* Enhanced legend styles */
.legend {
position: absolute;
bottom: 20px;
right: 20px;
background: white;
padding: 15px 20px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
font-size: 13px;
z-index: 1000;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
transform: translateX(0);
min-width: 200px;
}
.legend.collapsed {
transform: translateX(calc(100% + 20px));
}
.legend-toggle-btn {
position: absolute;
left: -35px;
top: 50%;
width: 35px;
height: 50px;
background-color: #3498db;
color: white;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
transition: all 0.3s ease;
z-index: 1001;
border-radius: 8px 0 0 8px;
transform: translateY(-50%);
}
.legend-toggle-btn:hover {
background-color: #2980b9;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.legend-toggle-btn i {
transition: transform 0.3s ease;
}
.legend.collapsed .legend-toggle-btn i {
transform: rotate(180deg);
}
.legend-title {
font-weight: 600;
margin-bottom: 12px;
color: #2c3e50;
font-size: 14px;
}
.legend-item {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
font-size: 12px;
}
.legend-item:last-child {
margin-bottom: 0;
}
.legend-marker {
width: 18px;
height: 18px;
border-radius: 50%;
border: 2px solid white;
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
flex-shrink: 0;
}
.legend-line {
width: 25px;
height: 4px;
border-radius: 2px;
flex-shrink: 0;
}
.legend-arrow {
width: 25px;
height: 4px;
background: #3498db;
position: relative;
flex-shrink: 0;
}
.legend-arrow::after {
content: '';
position: absolute;
right: 0;
top: -3px;
width: 0;
height: 0;
border-left: 8px solid #3498db;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
}
.legend-path-arrow {
width: 25px;
height: 4px;
background: #000000;
position: relative;
flex-shrink: 0;
}
.legend-path-arrow::after {
content: '';
position: absolute;
right: 0;
top: -3px;
width: 0;
height: 0;
border-left: 8px solid #000000;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
}
/* Info control styles */
.info-control {
min-width: 200px;
position: absolute;
top: 20px;
left: 20px;
background: rgba(255,255,255,0.95);
padding: 15px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
font-size: 14px;
z-index: 1000;
}
.info-control h4 {
margin: 0 0 8px 0;
color: #2c3e50;
font-size: 16px;
}
.info-control div {
margin: 3px 0;
}
/* Enhanced leaflet popup */
.leaflet-popup-content {
margin: 13px 19px;
font-size: 14px;
line-height: 1.5;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.polylineDecorator.js"></script>
<script>
// Initialize the map
var map = L.map('map').setView([26.269946721311477, 49.98812050819672], 14);
// Add OpenStreetMap tile layer
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 19,
attribution: '© OpenStreetMap contributors'
}).addTo(map);
// Define the coordinates and the detailed path data
var latlngs = [
[26.258798, 49.996902],
[26.284298, 49.964107],
[26.285835, 50.19071],
[26.25861, 49.997015],
[26.262462, 49.994095],
[26.278673, 49.955248],
[26.2675, 49.963097],
[26.242812, 49.973853],
[26.235152, 49.988217],
[26.258608, 49.997072],
[26.25779, 49.997653],
[26.265272, 49.991848],
[26.284327, 49.964228],
[26.270332, 49.96086],
[26.257843, 49.997667],
[26.265425, 49.991798],
[26.237633, 50.098928],
[26.378933, 50.009808],
[26.375128, 50.000368],
[26.27876, 49.955357],
[26.270537, 49.960747],
[26.257792, 49.997698],
[26.265348, 49.991858],
[26.278687, 49.955197],
[26.270418, 49.960777],
[26.239067, 49.985153],
[26.279343, 49.956198],
[26.270433, 49.96081],
[26.242875, 49.973912],
[26.257743, 49.997692],
[26.265372, 49.991783],
[26.258772, 49.997003],
[26.28431, 49.964135],
[26.270597, 49.960718],
[26.278742, 49.955313],
[26.270383, 49.960787],
[26.213717, 50.170787],
[26.257745, 49.997763],
[26.265367, 49.991818],
[26.278655, 49.955177],
[26.270258, 49.960952],
[26.242953, 49.974032],
[26.235502, 49.98794],
[26.279412, 49.956415],
[26.268373, 49.962447],
[26.242823, 49.973855],
[26.257823, 49.997737],
[26.265288, 49.991948],
[26.279357, 49.9563],
[26.270382, 49.960848],
[26.239132, 49.985143],
[26.25884, 49.996858],
[26.284275, 49.964117],
[26.270512, 49.960798],
[26.293432, 50.171147],
[26.333543, 49.938948],
[26.321138, 49.954232],
[26.279945, 49.957155],
[26.270517, 49.960737],
[26.257843, 49.9977],
[26.265308, 49.991885]
];
var pathData = [{"latitude": 26.258798, "longitude": 49.996902, "speed": 68, "time": "06/29/25,05:10:56", "vehicle_direction": 324, "street_name_ar": null, "street_name": null, "distance_to_segment": 1.82, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.25880793366465, 49.99691652043401], "highway": "unclassified", "name:en": null}, {"latitude": 26.284298, "longitude": 49.964107, "speed": 68, "time": "06/29/25,05:16:42", "vehicle_direction": 231, "street_name_ar": null, "street_name": null, "distance_to_segment": 3.77, "speed_limit": 40, "segment_bearing": 232.5, "nearest_segment": [[26.2863981, 49.9672197], [26.2840583, 49.9638209]], "closest_point": [26.284270276046843, 49.964128807915934], "highway": "secondary", "name:en": null}, {"latitude": 26.285835, "longitude": 50.19071, "speed": 99, "time": "06/30/25,15:39:48", "vehicle_direction": 98, "street_name_ar": "\u0637\u0631\u0642 \u062e\u0627\u062f\u0645 \u0627\u0644\u062d\u0631\u0645\u064a\u0646 \u0627\u0644\u0634\u0631\u064a\u0641\u064a\u0646", "street_name": "Custodian of the Two Holy Mosques Road", "distance_to_segment": 5.71, "speed_limit": 80, "segment_bearing": 108.1, "nearest_segment": [[26.2860426, 50.1898255], [26.2848734, 50.1938096]], "closest_point": [26.285792472912316, 50.190677823957145], "highway": "motorway", "name:en": "Custodian of the Two Holy Mosques Road"}, {"latitude": 26.25861, "longitude": 49.997015, "speed": 61, "time": "07/01/25,05:07:43", "vehicle_direction": 325, "street_name_ar": null, "street_name": null, "distance_to_segment": 4.5, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.258634569702643, 49.997050914417464], "highway": "unclassified", "name:en": null}, {"latitude": 26.262462, "longitude": 49.994095, "speed": 53, "time": "07/02/25,05:32:34", "vehicle_direction": 325, "street_name_ar": null, "street_name": null, "distance_to_segment": 0.65, "speed_limit": 40, "segment_bearing": 325.3, "nearest_segment": [[26.2619339, 49.9944948], [26.268064, 49.9897618]], "closest_point": [26.262458447908067, 49.99408979801979], "highway": "unclassified", "name:en": null}, {"latitude": 26.278673, "longitude": 49.955248, "speed": 73, "time": "07/02/25,14:51:54", "vehicle_direction": 234, "street_name_ar": null, "street_name": null, "distance_to_segment": 0.09, "speed_limit": 40, "segment_bearing": 233.8, "nearest_segment": [[26.280305, 49.9577375], [26.2784532, 49.9549145]], "closest_point": [26.278672296503828, 49.95524849702305], "highway": "secondary", "name:en": null}, {"latitude": 26.2675, "longitude": 49.963097, "speed": 73, "time": "07/02/25,14:53:19", "vehicle_direction": 145, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 5.15, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.2679942, 49.9626521], [26.267026, 49.9634006]], "closest_point": [26.267471905176297, 49.963055877588474], "highway": "secondary", "name:en": null}, {"latitude": 26.242812, "longitude": 49.973853, "speed": 59, "time": "07/02/25,14:56:57", "vehicle_direction": 234, "street_name_ar": null, "street_name": null, "distance_to_segment": 12.7, "speed_limit": 40, "segment_bearing": 235.0, "nearest_segment": [[26.2444833, 49.9762963], [26.2427566, 49.9735433]], "closest_point": [26.242911184870476, 49.97378976041442], "highway": "tertiary", "name:en": null}, {"latitude": 26.235152, "longitude": 49.988217, "speed": 70, "time": "07/02/25,15:08:57", "vehicle_direction": 143, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 5.48, "speed_limit": 40, "segment_bearing": 145.1, "nearest_segment": [[26.2367656, 49.986895], [26.2349892, 49.9882767]], "closest_point": [26.235122079376836, 49.98817334501625], "highway": "secondary", "name:en": null}, {"latitude": 26.258608, "longitude": 49.997072, "speed": 68, "time": "07/03/25,05:21:51", "vehicle_direction": 325, "street_name_ar": null, "street_name": null, "distance_to_segment": 0.04, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.258607781666576, 49.997071680854205], "highway": "unclassified", "name:en": null}, {"latitude": 26.25779, "longitude": 49.997653, "speed": 80, "time": "07/05/25,06:19:57", "vehicle_direction": 324, "street_name_ar": null, "street_name": null, "distance_to_segment": 4.31, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.257813530685226, 49.997687395240426], "highway": "unclassified", "name:en": null}, {"latitude": 26.265272, "longitude": 49.991848, "speed": 79, "time": "07/05/25,06:20:52", "vehicle_direction": 324, "street_name_ar": null, "street_name": null, "distance_to_segment": 5.7, "speed_limit": 40, "segment_bearing": 325.3, "nearest_segment": [[26.2619339, 49.9944948], [26.268064, 49.9897618]], "closest_point": [26.26530306066134, 49.991893489678304], "highway": "unclassified", "name:en": null}, {"latitude": 26.284327, "longitude": 49.964228, "speed": 74, "time": "07/05/25,06:24:53", "vehicle_direction": 231, "street_name_ar": null, "street_name": null, "distance_to_segment": 1.02, "speed_limit": 40, "segment_bearing": 232.5, "nearest_segment": [[26.2863981, 49.9672197], [26.2840583, 49.9638209]], "closest_point": [26.284334501351324, 49.96422209937809], "highway": "secondary", "name:en": null}, {"latitude": 26.270332, "longitude": 49.96086, "speed": 76, "time": "07/08/25,15:01:41", "vehicle_direction": 145, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 1.25, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.270946, 49.9603701], [26.2694397, 49.9615346]], "closest_point": [26.270325193305663, 49.96085003667214], "highway": "secondary", "name:en": null}, {"latitude": 26.257843, "longitude": 49.997667, "speed": 72, "time": "07/09/25,05:37:04", "vehicle_direction": 324, "street_name_ar": null, "street_name": null, "distance_to_segment": 0.2, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.257841904839236, 49.997665399181926], "highway": "unclassified", "name:en": null}, {"latitude": 26.265425, "longitude": 49.991798, "speed": 68, "time": "07/09/25,05:38:10", "vehicle_direction": 325, "street_name_ar": null, "street_name": null, "distance_to_segment": 0.11, "speed_limit": 40, "segment_bearing": 325.3, "nearest_segment": [[26.2619339, 49.9944948], [26.268064, 49.9897618]], "closest_point": [26.265425599739476, 49.991798878346266], "highway": "unclassified", "name:en": null}, {"latitude": 26.237633, "longitude": 50.098928, "speed": 75, "time": "07/10/25,07:04:49", "vehicle_direction": 354, "street_name_ar": null, "street_name": null, "distance_to_segment": 0.25, "speed_limit": 40, "segment_bearing": 354.1, "nearest_segment": [[26.2364463, 50.0990681], [26.2404804, 50.0986]], "closest_point": [26.237633843465026, 50.098930280030366], "highway": "motorway", "name:en": null}, {"latitude": 26.378933, "longitude": 50.009808, "speed": 94, "time": "07/10/25,09:35:58", "vehicle_direction": 241, "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0641\u0647\u062f", "street_name": "King Fahd Road", "distance_to_segment": 0.55, "speed_limit": 90, "segment_bearing": 245.9, "nearest_segment": [[26.379317, 50.0107527], [26.3781248, 50.0077794]], "closest_point": [26.37893787317898, 50.009807163588626], "highway": "motorway", "name:en": "King Fahd Road"}, {"latitude": 26.375128, "longitude": 50.000368, "speed": 95, "time": "07/10/25,09:38:48", "vehicle_direction": 65, "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0641\u0647\u062f", "street_name": "King Fahd Road", "distance_to_segment": 7.68, "speed_limit": 90, "segment_bearing": 66.4, "nearest_segment": [[26.3748619, 49.9998735], [26.3752541, 50.0008754]], "closest_point": [26.37505961027628, 50.00037856241086], "highway": "motorway", "name:en": "King Fahd Road"}, {"latitude": 26.27876, "longitude": 49.955357, "speed": 58, "time": "07/10/25,15:05:59", "vehicle_direction": 235, "street_name_ar": null, "street_name": null, "distance_to_segment": 1.49, "speed_limit": 40, "segment_bearing": 233.8, "nearest_segment": [[26.280305, 49.9577375], [26.2784532, 49.9549145]], "closest_point": [26.278748706408244, 49.955364978951295], "highway": "secondary", "name:en": null}, {"latitude": 26.270537, "longitude": 49.960747, "speed": 78, "time": "07/10/25,15:07:11", "vehicle_direction": 144, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 4.98, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.270946, 49.9603701], [26.2694397, 49.9615346]], "closest_point": [26.27050985993492, 49.96070727349677], "highway": "secondary", "name:en": null}, {"latitude": 26.257792, "longitude": 49.997698, "speed": 84, "time": "07/13/25,05:29:43", "vehicle_direction": 324, "street_name_ar": null, "street_name": null, "distance_to_segment": 0.5, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.257794720753015, 49.99770197697538], "highway": "unclassified", "name:en": null}, {"latitude": 26.265348, "longitude": 49.991858, "speed": 77, "time": "07/13/25,05:30:41", "vehicle_direction": 324, "street_name_ar": null, "street_name": null, "distance_to_segment": 0.07, "speed_limit": 40, "segment_bearing": 325.3, "nearest_segment": [[26.2619339, 49.9944948], [26.268064, 49.9897618]], "closest_point": [26.265348354287163, 49.99185851886939], "highway": "unclassified", "name:en": null}, {"latitude": 26.278687, "longitude": 49.955197, "speed": 49, "time": "07/13/25,15:02:17", "vehicle_direction": 234, "street_name_ar": null, "street_name": null, "distance_to_segment": 4.36, "speed_limit": 40, "segment_bearing": 233.8, "nearest_segment": [[26.280305, 49.9577375], [26.2784532, 49.9549145]], "closest_point": [26.27865386975128, 49.95522040667384], "highway": "secondary", "name:en": null}, {"latitude": 26.270418, "longitude": 49.960777, "speed": 66, "time": "07/13/25,15:03:29", "vehicle_direction": 144, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 0.11, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.270946, 49.9603701], [26.2694397, 49.9615346]], "closest_point": [26.270418576309435, 49.960777843576444], "highway": "secondary", "name:en": null}, {"latitude": 26.239067, "longitude": 49.985153, "speed": 71, "time": "07/13/25,15:08:58", "vehicle_direction": 143, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 3.25, "speed_limit": 40, "segment_bearing": 145.2, "nearest_segment": [[26.2393889, 49.9848642], [26.2367656, 49.986895]], "closest_point": [26.239049290473762, 49.985127104389775], "highway": "secondary", "name:en": null}, {"latitude": 26.279343, "longitude": 49.956198, "speed": 51, "time": "07/14/25,15:10:10", "vehicle_direction": 235, "street_name_ar": null, "street_name": null, "distance_to_segment": 4.3, "speed_limit": 40, "segment_bearing": 233.8, "nearest_segment": [[26.280305, 49.9577375], [26.2784532, 49.9549145]], "closest_point": [26.2793103013195, 49.95622110129097], "highway": "secondary", "name:en": null}, {"latitude": 26.270433, "longitude": 49.96081, "speed": 65, "time": "07/14/25,15:11:50", "vehicle_direction": 144, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 3.55, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.270946, 49.9603701], [26.2694397, 49.9615346]], "closest_point": [26.27041363914683, 49.960781660427465], "highway": "secondary", "name:en": null}, {"latitude": 26.242875, "longitude": 49.973912, "speed": 63, "time": "07/14/25,15:15:33", "vehicle_direction": 234, "street_name_ar": null, "street_name": null, "distance_to_segment": 10.33, "speed_limit": 40, "segment_bearing": 235.0, "nearest_segment": [[26.2444833, 49.9762963], [26.2427566, 49.9735433]], "closest_point": [26.242955616482806, 49.97386059957683], "highway": "tertiary", "name:en": null}, {"latitude": 26.257743, "longitude": 49.997692, "speed": 72, "time": "07/15/25,05:36:15", "vehicle_direction": 324, "street_name_ar": null, "street_name": null, "distance_to_segment": 4.1, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.257765384076123, 49.9977247191983], "highway": "unclassified", "name:en": null}, {"latitude": 26.265372, "longitude": 49.991783, "speed": 77, "time": "07/15/25,05:37:11", "vehicle_direction": 326, "street_name_ar": null, "street_name": null, "distance_to_segment": 4.7, "speed_limit": 40, "segment_bearing": 325.3, "nearest_segment": [[26.2619339, 49.9944948], [26.268064, 49.9897618]], "closest_point": [26.26539760193823, 49.991820495196976], "highway": "unclassified", "name:en": null}, {"latitude": 26.258772, "longitude": 49.997003, "speed": 85, "time": "07/16/25,05:44:59", "vehicle_direction": 324, "street_name_ar": null, "street_name": null, "distance_to_segment": 4.8, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.258745793212817, 49.99696469250871], "highway": "unclassified", "name:en": null}, {"latitude": 26.28431, "longitude": 49.964135, "speed": 67, "time": "07/16/25,05:50:19", "vehicle_direction": 230, "street_name_ar": null, "street_name": null, "distance_to_segment": 3.13, "speed_limit": 40, "segment_bearing": 232.5, "nearest_segment": [[26.2863981, 49.9672197], [26.2840583, 49.9638209]], "closest_point": [26.284286996188584, 49.96415309500116], "highway": "secondary", "name:en": null}, {"latitude": 26.270597, "longitude": 49.960718, "speed": 71, "time": "07/16/25,15:03:09", "vehicle_direction": 145, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 6.41, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.270946, 49.9603701], [26.2694397, 49.9615346]], "closest_point": [26.270562087780625, 49.960666896895134], "highway": "secondary", "name:en": null}, {"latitude": 26.278742, "longitude": 49.955313, "speed": 68, "time": "07/20/25,13:31:26", "vehicle_direction": 235, "street_name_ar": null, "street_name": null, "distance_to_segment": 2.46, "speed_limit": 40, "segment_bearing": 233.8, "nearest_segment": [[26.280305, 49.9577375], [26.2784532, 49.9549145]], "closest_point": [26.278723283459883, 49.955326223293575], "highway": "secondary", "name:en": null}, {"latitude": 26.270383, "longitude": 49.960787, "speed": 71, "time": "07/20/25,13:32:32", "vehicle_direction": 144, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 1.5, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.270946, 49.9603701], [26.2694397, 49.9615346]], "closest_point": [26.27039120224566, 49.96079900608103], "highway": "secondary", "name:en": null}, {"latitude": 26.213717, "longitude": 50.170787, "speed": 83, "time": "07/20/25,14:43:20", "vehicle_direction": 96, "street_name_ar": null, "street_name": null, "distance_to_segment": 1.75, "speed_limit": 40, "segment_bearing": 96.6, "nearest_segment": [[26.2137416, 50.170408], [26.2136646, 50.1711462]], "closest_point": [26.213702884726946, 50.17077916393634], "highway": "motorway_link", "name:en": null}, {"latitude": 26.257745, "longitude": 49.997763, "speed": 73, "time": "07/21/25,05:38:52", "vehicle_direction": 324, "street_name_ar": null, "street_name": null, "distance_to_segment": 1.84, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.25773495107516, 49.997748311309465], "highway": "unclassified", "name:en": null}, {"latitude": 26.265367, "longitude": 49.991818, "speed": 66, "time": "07/21/25,05:39:57", "vehicle_direction": 324, "street_name_ar": null, "street_name": null, "distance_to_segment": 2.14, "speed_limit": 40, "segment_bearing": 325.3, "nearest_segment": [[26.2619339, 49.9944948], [26.268064, 49.9897618]], "closest_point": [26.26537867944969, 49.99183510508115], "highway": "unclassified", "name:en": null}, {"latitude": 26.278655, "longitude": 49.955177, "speed": 69, "time": "07/22/25,14:21:22", "vehicle_direction": 235, "street_name_ar": null, "street_name": null, "distance_to_segment": 2.66, "speed_limit": 40, "segment_bearing": 233.8, "nearest_segment": [[26.280305, 49.9577375], [26.2784532, 49.9549145]], "closest_point": [26.278634770985885, 49.95519129190095], "highway": "secondary", "name:en": null}, {"latitude": 26.270258, "longitude": 49.960952, "speed": 65, "time": "07/22/25,14:22:33", "vehicle_direction": 145, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 4.1, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.270946, 49.9603701], [26.2694397, 49.9615346]], "closest_point": [26.270235639377365, 49.960919269578646], "highway": "secondary", "name:en": null}, {"latitude": 26.242953, "longitude": 49.974032, "speed": 65, "time": "07/22/25,14:26:33", "vehicle_direction": 235, "street_name_ar": null, "street_name": null, "distance_to_segment": 10.08, "speed_limit": 40, "segment_bearing": 235.0, "nearest_segment": [[26.2444833, 49.9762963], [26.2427566, 49.9735433]], "closest_point": [26.243031663606512, 49.97398184485573], "highway": "tertiary", "name:en": null}, {"latitude": 26.235502, "longitude": 49.98794, "speed": 76, "time": "07/22/25,14:39:23", "vehicle_direction": 143, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 5.09, "speed_limit": 40, "segment_bearing": 145.1, "nearest_segment": [[26.2367656, 49.986895], [26.2349892, 49.9882767]], "closest_point": [26.2354742103606, 49.987899453973], "highway": "secondary", "name:en": null}, {"latitude": 26.279412, "longitude": 49.956415, "speed": 51, "time": "07/23/25,14:11:49", "vehicle_direction": 235, "street_name_ar": null, "street_name": null, "distance_to_segment": 2.29, "speed_limit": 40, "segment_bearing": 233.8, "nearest_segment": [[26.280305, 49.9577375], [26.2784532, 49.9549145]], "closest_point": [26.279429419892516, 49.956402693064916], "highway": "secondary", "name:en": null}, {"latitude": 26.268373, "longitude": 49.962447, "speed": 78, "time": "07/23/25,14:13:16", "vehicle_direction": 144, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 7.2, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.2694397, 49.9615346], [26.2679942, 49.9626521]], "closest_point": [26.268333771478712, 49.96238958070336], "highway": "secondary", "name:en": null}, {"latitude": 26.242823, "longitude": 49.973855, "speed": 82, "time": "07/23/25,14:16:48", "vehicle_direction": 235, "street_name_ar": null, "street_name": null, "distance_to_segment": 11.81, "speed_limit": 40, "segment_bearing": 235.0, "nearest_segment": [[26.2444833, 49.9762963], [26.2427566, 49.9735433]], "closest_point": [26.242915223312075, 49.97379619906588], "highway": "tertiary", "name:en": null}, {"latitude": 26.257823, "longitude": 49.997737, "speed": 71, "time": "07/24/25,05:13:49", "vehicle_direction": 325, "street_name_ar": null, "street_name": null, "distance_to_segment": 4.67, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.257797543051538, 49.99769978908818], "highway": "unclassified", "name:en": null}, {"latitude": 26.265288, "longitude": 49.991948, "speed": 76, "time": "07/24/25,05:14:47", "vehicle_direction": 325, "street_name_ar": null, "street_name": null, "distance_to_segment": 3.52, "speed_limit": 40, "segment_bearing": 325.3, "nearest_segment": [[26.2619339, 49.9944948], [26.268064, 49.9897618]], "closest_point": [26.26526882739341, 49.99191992088508], "highway": "unclassified", "name:en": null}, {"latitude": 26.279357, "longitude": 49.9563, "speed": 52, "time": "07/24/25,14:20:02", "vehicle_direction": 235, "street_name_ar": null, "street_name": null, "distance_to_segment": 0.45, "speed_limit": 40, "segment_bearing": 233.8, "nearest_segment": [[26.280305, 49.9577375], [26.2784532, 49.9549145]], "closest_point": [26.279360455209012, 49.95629755893303], "highway": "secondary", "name:en": null}, {"latitude": 26.270382, "longitude": 49.960848, "speed": 78, "time": "07/24/25,14:21:16", "vehicle_direction": 145, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 3.44, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.270946, 49.9603701], [26.2694397, 49.9615346]], "closest_point": [26.2703632772632, 49.960820594494585], "highway": "secondary", "name:en": null}, {"latitude": 26.239132, "longitude": 49.985143, "speed": 65, "time": "07/24/25,14:26:34", "vehicle_direction": 144, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 6.55, "speed_limit": 40, "segment_bearing": 145.2, "nearest_segment": [[26.2393889, 49.9848642], [26.2367656, 49.986895]], "closest_point": [26.23909626182793, 49.98509074210102], "highway": "secondary", "name:en": null}, {"latitude": 26.25884, "longitude": 49.996858, "speed": 65, "time": "07/26/25,05:53:53", "vehicle_direction": 325, "street_name_ar": null, "street_name": null, "distance_to_segment": 2.76, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.25885504823546, 49.9968799966197], "highway": "unclassified", "name:en": null}, {"latitude": 26.284275, "longitude": 49.964117, "speed": 70, "time": "07/26/25,05:58:21", "vehicle_direction": 231, "street_name_ar": null, "street_name": null, "distance_to_segment": 1.13, "speed_limit": 40, "segment_bearing": 232.5, "nearest_segment": [[26.2863981, 49.9672197], [26.2840583, 49.9638209]], "closest_point": [26.28426666220856, 49.96412355858402], "highway": "secondary", "name:en": null}, {"latitude": 26.270512, "longitude": 49.960798, "speed": 69, "time": "07/26/25,07:39:40", "vehicle_direction": 144, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 7.58, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.270946, 49.9603701], [26.2694397, 49.9615346]], "closest_point": [26.270470700310124, 49.960737547246865], "highway": "secondary", "name:en": null}, {"latitude": 26.293432, "longitude": 50.171147, "speed": 81, "time": "07/26/25,08:03:58", "vehicle_direction": 131, "street_name_ar": "\u0637\u0631\u064a\u0642 \u062e\u0627\u062f\u0645 \u0627\u0644\u062d\u0631\u0645\u064a\u0646 \u0627\u0644\u0634\u0631\u064a\u0641\u064a\u0646", "street_name": "Custodian of the Two Holly Mosques Road", "distance_to_segment": 4.4, "speed_limit": 80, "segment_bearing": 126.1, "nearest_segment": [[26.2944474, 50.1695184], [26.2921171, 50.1730856]], "closest_point": [26.293403418574016, 50.171116523820636], "highway": "motorway", "name:en": "Custodian of the Two Holly Mosques Road"}, {"latitude": 26.333543, "longitude": 49.938948, "speed": 92, "time": "07/29/25,10:11:51", "vehicle_direction": 263, "street_name_ar": null, "street_name": null, "distance_to_segment": 2.78, "speed_limit": 60, "segment_bearing": 262.8, "nearest_segment": [[26.3335879, 49.9391384], [26.3334373, 49.9377992]], "closest_point": [26.333567264206287, 49.93895489741672], "highway": "motorway_link", "name:en": null}, {"latitude": 26.321138, "longitude": 49.954232, "speed": 82, "time": "07/29/25,10:14:36", "vehicle_direction": 154, "street_name_ar": null, "street_name": null, "distance_to_segment": 1.85, "speed_limit": 40, "segment_bearing": 154.3, "nearest_segment": [[26.3281007, 49.9505197], [26.3146789, 49.9577154]], "closest_point": [26.321147055281457, 49.95424755636857], "highway": "unclassified", "name:en": null}, {"latitude": 26.279945, "longitude": 49.957155, "speed": 69, "time": "07/29/25,11:35:32", "vehicle_direction": 235, "street_name_ar": null, "street_name": null, "distance_to_segment": 1.99, "speed_limit": 40, "segment_bearing": 233.8, "nearest_segment": [[26.280305, 49.9577375], [26.2784532, 49.9549145]], "closest_point": [26.279929902347092, 49.957165666132994], "highway": "secondary", "name:en": null}, {"latitude": 26.270517, "longitude": 49.960737, "speed": 70, "time": "07/29/25,11:36:51", "vehicle_direction": 144, "street_name_ar": "Makkah Road", "street_name": null, "distance_to_segment": 2.89, "speed_limit": 40, "segment_bearing": 145.3, "nearest_segment": [[26.270946, 49.9603701], [26.2694397, 49.9615346]], "closest_point": [26.270501242805125, 49.960713935277255], "highway": "secondary", "name:en": null}, {"latitude": 26.257843, "longitude": 49.9977, "speed": 70, "time": "07/30/25,05:18:47", "vehicle_direction": 327, "street_name_ar": null, "street_name": null, "distance_to_segment": 2.91, "speed_limit": 40, "segment_bearing": 325.2, "nearest_segment": [[26.2560406, 49.9990618], [26.2614426, 49.9948741]], "closest_point": [26.25782715250595, 49.997676835405905], "highway": "unclassified", "name:en": null}, {"latitude": 26.265308, "longitude": 49.991885, "speed": 75, "time": "07/30/25,05:19:46", "vehicle_direction": 325, "street_name_ar": null, "street_name": null, "distance_to_segment": 0.38, "speed_limit": 40, "segment_bearing": 325.3, "nearest_segment": [[26.2619339, 49.9944948], [26.268064, 49.9897618]], "closest_point": [26.26531009066662, 49.99188806187298], "highway": "unclassified", "name:en": null}];
var fullPathCoordinates = [[26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300193, 50.222535], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.300308, 50.222505], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.30034, 50.222463], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300335, 50.222343], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300287, 50.222292], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.300205, 50.222262], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.295813, 50.221145], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292245, 50.220315], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292238, 50.220237], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292612, 50.217752], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.292848, 50.216125], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.29276, 50.216113], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291577, 50.21589], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.291538, 50.215925], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.29152, 50.216015], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291508, 50.216332], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291573, 50.216345], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291838, 50.216425], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.291925, 50.216483], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.29194, 50.21646], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.291955, 50.2165], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292078, 50.216505], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292092, 50.216487], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292163, 50.216188], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.292157, 50.216], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291567, 50.215865], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291555, 50.215868], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291535, 50.215902], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291527, 50.215952], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291087, 50.218643], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291075, 50.21867], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291108, 50.218605], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291137, 50.218602], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291163, 50.218637], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291188, 50.218777], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.291107, 50.219232], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.29093, 50.219938], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290908, 50.219982], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290885, 50.220048], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290872, 50.22006], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290842, 50.220072], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.290612, 50.220067], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289843, 50.219903], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289697, 50.219857], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289695, 50.219835], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289712, 50.219778], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289733, 50.219737], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.289608, 50.219733], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.28508, 50.219068], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.280617, 50.218097], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279602, 50.217825], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279468, 50.217627], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279405, 50.217392], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.279468, 50.216867], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.280238, 50.21175], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.281167, 50.206827], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.282645, 50.20184], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.284075, 50.197015], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.285495, 50.192218], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.286962, 50.187283], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.288418, 50.182183], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.290045, 50.177393], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.2925, 50.173058], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.295297, 50.16864], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.298453, 50.16495], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.302228, 50.161892], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.306338, 50.159785], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.310542, 50.157892], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.314445, 50.155098], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.318185, 50.152293], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.322038, 50.149413], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.324157, 50.14731], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.327258, 50.143353], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330187, 50.139297], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.330423, 50.138887], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.332928, 50.134597], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335282, 50.1301], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.335567, 50.129395], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.336282, 50.127573], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.338477, 50.123117], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340253, 50.12004], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.340312, 50.119903], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.341028, 50.116893], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.340925, 50.113953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339602, 50.108953], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.339388, 50.108207], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.33815, 50.105555], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.334992, 50.101527], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33337, 50.096672], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.33314, 50.095962], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.331615, 50.091032], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.330108, 50.086237], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32862, 50.081397], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.32711, 50.076622], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.325572, 50.0717], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.323858, 50.066858], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.322328, 50.063505], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.31999, 50.05945], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.317095, 50.055363], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.313933, 50.051725], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.310472, 50.048467], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.306775, 50.045607], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.30298, 50.042738], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.301073, 50.041308], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.299378, 50.04002], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.295615, 50.037198], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.292853, 50.035097], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.289007, 50.032215], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.287548, 50.031123], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.28371, 50.028228], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.279938, 50.025395], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.276103, 50.022518], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.272325, 50.019663], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.268585, 50.016837], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.264788, 50.013967], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.26099, 50.011088], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.257247, 50.008265], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.253375, 50.005318], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.251008, 50.00328], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.250968, 50.00303], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.251088, 50.00281], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25252, 50.001768], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.25625, 49.998898], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.257843, 49.9977], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.261593, 49.994768], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.265308, 49.991885], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898], [26.269072, 49.98898]];
// Add device name to each point's data
pathData.forEach(function(data) {
data.device_name = "8856 GRD (Zeeshan)";
});
// Global variable to store path decorators for zoom-based updates
var pathDecorators = [];
// Function to calculate arrow spacing based on zoom level
function getArrowSpacing(zoomLevel) {
if (zoomLevel >= 16) return '50px'; // Close zoom: many arrows
if (zoomLevel >= 14) return '100px'; // Medium zoom: moderate arrows
if (zoomLevel >= 12) return '150px'; // Far zoom: fewer arrows
return '200px'; // Very far zoom: minimal arrows
}
// Function to update path arrows based on zoom level
function updatePathArrows() {
var currentZoom = map.getZoom();
var spacing = getArrowSpacing(currentZoom);
// Remove existing decorators
pathDecorators.forEach(function(decorator) {
map.removeLayer(decorator);
});
pathDecorators = [];
// Re-add decorators with new spacing if path exists
if (window.vehiclePath) {
var decorator = L.polylineDecorator(window.vehiclePath, {
patterns: [{
offset: '25px',
repeat: spacing,
symbol: L.Symbol.arrowHead({
pixelSize: 12,
polygon: false,
pathOptions: {
stroke: true,
color: '#000000',
weight: 2,
opacity: 0.8
}
})
}]
});
decorator.addTo(map);
pathDecorators.push(decorator);
}
}
// Function to create numbered div icons for violations
function createNumberedIcon(number, isLast = false) {
if (isLast) {
return L.divIcon({
className: 'number-icon violation-icon',
html: 'V<div class="pulse-ring"></div>',
iconSize: [32, 32]
});
} else {
return L.divIcon({
className: 'number-icon',
html: number.toString(),
iconSize: [24, 24]
});
}
}
// Function to create popup content
function createPopupContent(pointNum, data, isLast) {
var lat = data.latitude;
var lon = data.longitude;
var speedClass = 'speed-violation';
var html = '<div class="popup-content">';
html += '<div class="popup-title">Violation Point ' + pointNum + (isLast ? ' (Latest)' : '') + '</div>';
html += '<table>';
html += '<tr><td>Latitude:</td><td>' + lat.toFixed(6) + '</td></tr>';
html += '<tr><td>Longitude:</td><td>' + lon.toFixed(6) + '</td></tr>';
if (data.time) {
html += '<tr><td>Time:</td><td>' + data.time + '</td></tr>';
}
if (data.device_name) {
html += '<tr><td>Vehicle:</td><td>' + data.device_name + '</td></tr>';
}
if (data.street_name_ar) {
html += '<tr><td>Street (AR):</td><td style="direction: rtl;">' + data.street_name_ar + '</td></tr>';
}
if (data.street_name) {
html += '<tr><td>Street (EN):</td><td>' + data.street_name + '</td></tr>';
}
if (data.distance_to_segment !== undefined) {
html += '<tr><td>Dist to street:</td><td>' + data.distance_to_segment.toFixed(2) + ' m</td></tr>';
}
if (data.vehicle_direction !== undefined) {
html += '<tr><td>Vehicle Dir:</td><td>' + data.vehicle_direction.toFixed(1) + '°</td></tr>';
}
if (data.segment_bearing !== undefined) {
html += '<tr><td>Street Bearing:</td><td>' + data.segment_bearing.toFixed(1) + '°</td></tr>';
}
if (data.speed_limit) {
html += '<tr><td>Speed Limit:</td><td>' + data.speed_limit + ' km/h</td></tr>';
}
if (data.speed) {
html += '<tr><td>Vehicle Speed:</td><td class="' + speedClass + '">' + data.speed + ' km/h</td></tr>';
}
if (data.speed && data.speed_limit) {
var overSpeed = data.speed - data.speed_limit;
html += '<tr><td>Over Speed:</td><td class="speed-violation">+' + overSpeed + ' km/h</td></tr>';
}
html += '</table>';
html += '</div>';
return html;
}
// Function to create direction arrow from point
function createDirectionArrow(lat, lon, direction) {
if (direction === undefined || direction === null) return null;
var arrowLength = 0.0002; // Length of arrow in degrees
var radians = direction * Math.PI / 180;
var endLat = lat + arrowLength * Math.cos(radians);
var endLon = lon + arrowLength * Math.sin(radians);
var arrow = L.polyline([[lat, lon], [endLat, endLon]], {
color: '#3498db',
weight: 3,
opacity: 0.8
});
var decorator = L.polylineDecorator(arrow, {
patterns: [{
offset: '100%',
repeat: 0,
symbol: L.Symbol.arrowHead({
pixelSize: 12,
polygon: false,
pathOptions: {
stroke: true,
color: '#3498db',
weight: 2,
opacity: 0.9
}
})
}]
});
return { arrow: arrow, decorator: decorator };
}
// Draw the vehicle path with directional arrows if full_path is provided
if (fullPathCoordinates && fullPathCoordinates.length > 1) {
// Create the main path line in black
window.vehiclePath = L.polyline(fullPathCoordinates, {
color: '#000000',
weight: 4,
opacity: 0.8,
smoothFactor: 1
}).addTo(map);
// Add initial arrows
updatePathArrows();
// Update arrows when zoom changes
map.on('zoomend', updatePathArrows);
}
// Add markers for all points - all are violation points
var allBounds = [];
for (var i = 0; i < pathData.length; i++) {
var data = pathData[i];
var isLast = (i === latlngs.length - 1);
var icon = createNumberedIcon(i + 1, isLast);
var popupContent = createPopupContent(i + 1, data, isLast);
// Add marker to map
var vehicleMarker = L.marker([data.latitude, data.longitude], {icon: icon})
.addTo(map)
.bindPopup(popupContent);
allBounds.push([data.latitude, data.longitude]);
// Add direction arrow for each point
if (data.vehicle_direction !== undefined && data.vehicle_direction !== null) {
var directionArrowData = createDirectionArrow(data.latitude, data.longitude, data.vehicle_direction);
if (directionArrowData) {
directionArrowData.arrow.addTo(map);
directionArrowData.decorator.addTo(map);
}
}
// Draw the nearest street segment for each point if available
if (data.nearest_segment && data.nearest_segment.length === 2) {
var segmentPolyline = L.polyline(data.nearest_segment, {
color: '#9b59b6',
weight: 8,
opacity: 0.8
}).addTo(map).bindPopup('Nearest Street Segment for Violation ' + (i + 1));
// Add enhanced start and end circles for the segment
L.circleMarker(data.nearest_segment[0], {
radius: 6,
color: '#8e44ad',
fillColor: '#9b59b6',
fillOpacity: 1,
weight: 2
}).addTo(map);
L.circleMarker(data.nearest_segment[1], {
radius: 6,
color: '#8e44ad',
fillColor: '#9b59b6',
fillOpacity: 1,
weight: 2
}).addTo(map);
}
// Draw the closest point on the segment and a line to it
if (data.closest_point && data.closest_point.length === 2) {
// Enhanced closest point marker
L.circleMarker(data.closest_point, {
radius: 8,
color: '#e67e22',
fillColor: '#f39c12',
fillOpacity: 1,
weight: 3
}).addTo(map).bindPopup('Closest Point on Street<br>Distance: ' + (data.distance_to_segment ? data.distance_to_segment.toFixed(2) + ' m' : 'N/A'));
// Enhanced dashed line from vehicle to closest point
var lineToClosest = [
[data.latitude, data.longitude],
data.closest_point
];
L.polyline(lineToClosest, {
color: '#3498db',
weight: 3,
opacity: 0.7,
dashArray: '8, 8'
}).addTo(map);
}
}
// Include full path coordinates in bounds if available
if (fullPathCoordinates) {
fullPathCoordinates.forEach(function(coord) {
allBounds.push(coord);
});
}
// Fit the map to show all points
if (allBounds.length > 0) {
var bounds = L.latLngBounds(allBounds);
map.fitBounds(bounds.pad(0.1));
}
// Add enhanced legend with toggle functionality
var legendHtml = '<button class="legend-toggle-btn" onclick="toggleLegend()"><i class="fas fa-chevron-right"></i></button>';
legendHtml += '<div class="legend-title">Map Legend</div>';
legendHtml += '<div class="legend-item"><div class="legend-marker" style="background: #FF1744;"></div><span>Violation Points</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-marker" style="background: #FF1744; width: 24px; height: 24px;"></div><span>Latest Violation</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-line" style="background: #000000; height: 6px;"></div><span>Vehicle Path</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-path-arrow"></div><span>Path Direction</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-arrow"></div><span>Vehicle Direction</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-line" style="background: #9b59b6; height: 6px;"></div><span>Nearest Street Segment</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-marker" style="background: #f39c12;"></div><span>Closest Point</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-line" style="background: #3498db; border: 2px dashed #3498db; height: 2px;"></div><span>Distance Line</span></div>';
var legendControl = L.control({position: 'bottomright'});
legendControl.onAdd = function (map) {
var div = L.DomUtil.create('div', 'legend');
div.id = 'mapLegend';
div.innerHTML = legendHtml;
return div;
};
legendControl.addTo(map);
// Toggle legend function
function toggleLegend() {
var legend = document.getElementById('mapLegend');
legend.classList.toggle('collapsed');
}
// Add info control
var infoControl = L.control({position: 'topleft'});
infoControl.onAdd = function (map) {
var div = L.DomUtil.create('div', 'info-control');
var pathInfo = fullPathCoordinates ? '<div><strong>Path Points:</strong> ' + fullPathCoordinates.length + '</div>' : '';
div.innerHTML = '<h4><i class="fas fa-car" style="margin-right: 8px; color: #3498db;"></i>Vehicle Path Analysis</h4>' +
'<div><strong>Vehicle:</strong> 8856 GRD (Zeeshan)</div>' +
'<div><strong>Total Violations:</strong> ' + latlngs.length + '</div>' +
pathInfo;
return div;
};
infoControl.addTo(map);
// Add zoom control to top right
L.control.zoom({position: 'topright'}).addTo(map);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment