commit 9590629795f91ceafd527016bbc4b393b662ef30 Author: root Date: Sun Apr 26 12:44:06 2026 +0200 Server diff --git a/AdminPanel.cs b/AdminPanel.cs new file mode 100644 index 0000000..60f10da --- /dev/null +++ b/AdminPanel.cs @@ -0,0 +1,795 @@ +namespace GeoSus.Server; + +using System.Collections.Concurrent; +using System.Net; +using System.Net.WebSockets; +using System.Security.Cryptography; +using System.Text; +using System.Text.Json; +using Microsoft.Extensions.Logging; + +/// +/// Admin Panel - Webová administrace serveru +/// +/// Funkce: +/// - Přehled stavu serveru +/// - Real-time spectate mode pro lobby +/// - Konfigurace serveru za běhu +/// - Informace o hráčích +/// - WebSocket pro live updates +/// +public class AdminPanel +{ + private readonly ILogger _logger; + private readonly ServerConfig _config; + private readonly LobbyManager _lobbyManager; + private readonly StatsDb _statsDb; + + // Bezpečnost + private readonly string _adminPasswordHash; + private readonly ConcurrentDictionary _sessions = new(); + private readonly TimeSpan _sessionTimeout = TimeSpan.FromHours(8); + + // WebSocket connections pro spectate + private readonly ConcurrentDictionary _spectators = new(); + + public AdminPanel( + ILogger logger, + ServerConfig config, + LobbyManager lobbyManager, + StatsDb statsDb) + { + _logger = logger; + _config = config; + _lobbyManager = lobbyManager; + _statsDb = statsDb; + + // Hash admin hesla (z env nebo default) + var adminPassword = Environment.GetEnvironmentVariable("GEOSUS_ADMIN_PASSWORD") ?? "admin123"; + _adminPasswordHash = HashPassword(adminPassword); + + _logger.LogInformation("Admin Panel inicializován"); + } + + #region ═══════════════════════════════════════════════════════════════════ + // AUTENTIZACE + // ════════════════════════════════════════════════════════════════════════ + #endregion + + private static string HashPassword(string password) + { + using var sha256 = SHA256.Create(); + var bytes = sha256.ComputeHash(Encoding.UTF8.GetBytes(password + "GeoSus_Salt_2026")); + return Convert.ToBase64String(bytes); + } + + private string? ValidateSession(HttpListenerRequest request) + { + var cookie = request.Cookies["geosus_admin_session"]; + if (cookie == null) return null; + + if (_sessions.TryGetValue(cookie.Value, out var session)) + { + if (DateTime.UtcNow - session.LastActivity < _sessionTimeout) + { + session.LastActivity = DateTime.UtcNow; + return cookie.Value; + } + _sessions.TryRemove(cookie.Value, out _); + } + return null; + } + + private string CreateSession() + { + var sessionId = Convert.ToBase64String(RandomNumberGenerator.GetBytes(32)); + _sessions[sessionId] = new AdminSession { LastActivity = DateTime.UtcNow }; + return sessionId; + } + + #region ═══════════════════════════════════════════════════════════════════ + // HTTP HANDLING + // ════════════════════════════════════════════════════════════════════════ + #endregion + + public async Task HandleRequestAsync(HttpListenerContext context) + { + var request = context.Request; + var response = context.Response; + var path = request.Url?.AbsolutePath ?? "/"; + + try + { + // Login endpoint - vždy přístupný + if (path == "/admin/login" && request.HttpMethod == "POST") + { + await HandleLoginAsync(request, response); + return; + } + + // Statické soubory pro login stránku - bez autentizace + if (path == "/admin" || path == "/admin/") + { + await ServeStaticFileAsync(response, "admin.html", "text/html"); + return; + } + + // CSS a JS musí být dostupné bez autentizace (pro login stránku) + if (path == "/admin/app.js") + { + await ServeStaticFileAsync(response, "admin.js", "application/javascript"); + return; + } + + if (path == "/admin/style.css") + { + await ServeStaticFileAsync(response, "admin.css", "text/css"); + return; + } + + // Všechno ostatní vyžaduje autentizaci + var sessionId = ValidateSession(request); + if (sessionId == null) + { + response.StatusCode = 401; + await WriteJsonAsync(response, new { error = "Unauthorized", redirect = "/admin" }); + return; + } + + // WebSocket pro spectate + if (path.StartsWith("/admin/ws/spectate/") && request.IsWebSocketRequest) + { + var lobbyId = path["/admin/ws/spectate/".Length..]; + await HandleSpectateWebSocketAsync(context, lobbyId, sessionId); + return; + } + + // WebSocket pro server stats + if (path == "/admin/ws/stats" && request.IsWebSocketRequest) + { + await HandleStatsWebSocketAsync(context, sessionId); + return; + } + + // REST API endpointy + switch (path) + { + case "/admin/api/status": + await HandleStatusAsync(response); + break; + + case "/admin/api/lobbies": + await HandleLobbiesAsync(response); + break; + + case "/admin/api/config": + if (request.HttpMethod == "GET") + await HandleGetConfigAsync(response); + else if (request.HttpMethod == "POST") + await HandleSetConfigAsync(request, response); + break; + + case "/admin/api/players": + await HandlePlayersAsync(request, response); + break; + + case "/admin/api/kick": + await HandleKickAsync(request, response); + break; + + case "/admin/api/broadcast": + await HandleBroadcastAsync(request, response); + break; + + case "/admin/api/logout": + _sessions.TryRemove(sessionId, out _); + response.SetCookie(new Cookie("geosus_admin_session", "", "/admin") { Expired = true }); + await WriteJsonAsync(response, new { success = true }); + break; + + default: + response.StatusCode = 404; + await WriteJsonAsync(response, new { error = "Not found" }); + break; + } + } + catch (Exception ex) + { + _logger.LogError(ex, "Admin panel error: {Path}", path); + + // Don't try to write response for WebSocket requests (already submitted) + if (!request.IsWebSocketRequest) + { + try + { + response.StatusCode = 500; + await WriteJsonAsync(response, new { error = ex.Message }); + } + catch { /* Response may already be sent */ } + } + } + } + + #region ═══════════════════════════════════════════════════════════════════ + // LOGIN + // ════════════════════════════════════════════════════════════════════════ + #endregion + + private async Task HandleLoginAsync(HttpListenerRequest request, HttpListenerResponse response) + { + using var reader = new StreamReader(request.InputStream); + var body = await reader.ReadToEndAsync(); + var data = JsonSerializer.Deserialize(body); + + var password = data.GetProperty("password").GetString() ?? ""; + var hash = HashPassword(password); + + if (hash == _adminPasswordHash) + { + var sessionId = CreateSession(); + response.SetCookie(new Cookie("geosus_admin_session", sessionId, "/admin") + { + HttpOnly = true, + Expires = DateTime.Now.Add(_sessionTimeout) + }); + + _logger.LogInformation("Admin login successful from {IP}", request.RemoteEndPoint); + await WriteJsonAsync(response, new { success = true }); + } + else + { + _logger.LogWarning("Admin login failed from {IP}", request.RemoteEndPoint); + response.StatusCode = 401; + await WriteJsonAsync(response, new { error = "Invalid password" }); + } + } + + #region ═══════════════════════════════════════════════════════════════════ + // API ENDPOINTS + // ════════════════════════════════════════════════════════════════════════ + #endregion + + private async Task HandleStatusAsync(HttpListenerResponse response) + { + var uptime = DateTime.UtcNow - Program.StartTime; + var status = new + { + status = "online", + version = "1.0.0", + uptime = new + { + days = uptime.Days, + hours = uptime.Hours, + minutes = uptime.Minutes, + seconds = uptime.Seconds, + totalSeconds = (long)uptime.TotalSeconds + }, + lobbies = new + { + active = _lobbyManager.LobbyCount, + players = _lobbyManager.TotalPlayerCount + }, + memory = new + { + usedMb = GC.GetTotalMemory(false) / 1024 / 1024, + gcCollections = new + { + gen0 = GC.CollectionCount(0), + gen1 = GC.CollectionCount(1), + gen2 = GC.CollectionCount(2) + } + }, + sessions = _sessions.Count, + spectators = _spectators.Count + }; + + await WriteJsonAsync(response, status); + } + + private async Task HandleLobbiesAsync(HttpListenerResponse response) + { + var lobbies = _lobbyManager.GetAllLobbies().Select(l => new + { + id = l.LobbyId, + joinCode = l.JoinCode, + phase = l.Phase.ToString(), + players = l.GetPlayers().Select(p => new + { + id = p.PlayerId, + name = p.DisplayName, + state = p.State.ToString(), + role = p.Role.ToString(), + position = new { lat = p.Position.Lat, lng = p.Position.Lon }, + isHost = p.IsHost + }), + playerCount = l.PlayerCount, + settings = new + { + impostorCount = l.Settings.ImpostorCount, + taskCount = l.Settings.TaskCount, + center = new { lat = l.Settings.PlayAreaCenter.Lat, lng = l.Settings.PlayAreaCenter.Lon }, + radius = l.Settings.PlayAreaRadius + }, + createdAt = l.CreatedAt, + activeSabotage = l.ActiveSabotage?.Type.ToString() + }); + + await WriteJsonAsync(response, new { lobbies }); + } + + private async Task HandleGetConfigAsync(HttpListenerResponse response) + { + // Vrátíme pouze bezpečné konfigurace (ne hesla apod.) + var config = new + { + tcpPort = _config.TcpPort, + httpPort = _config.HttpPort, + maxPlayersPerLobby = _config.MaxPlayersPerLobby, + killDistanceM = _config.KillDistanceM, + killCooldownMs = _config.KillCooldownMs, + discussionPhaseMs = _config.DiscussionPhaseMs, + votingPhaseMs = _config.VotingPhaseMs, + taskStartDistanceM = _config.TaskStartDistanceM, + sabotageCooldownMs = _config.SabotageCooldownMs, + criticalMeltdownDeadlineMs = _config.CriticalMeltdownDeadlineMs, + maxSpeedMps = _config.MaxSpeedMps, + teleportThresholdMeters = _config.TeleportThresholdMeters + }; + + await WriteJsonAsync(response, config); + } + + private async Task HandleSetConfigAsync(HttpListenerRequest request, HttpListenerResponse response) + { + using var reader = new StreamReader(request.InputStream); + var body = await reader.ReadToEndAsync(); + var data = JsonSerializer.Deserialize(body); + + // Aplikuj změny + if (data.TryGetProperty("killDistanceM", out var kd)) _config.KillDistanceM = kd.GetDouble(); + if (data.TryGetProperty("killCooldownMs", out var kc)) _config.KillCooldownMs = kc.GetInt32(); + if (data.TryGetProperty("discussionPhaseMs", out var dp)) _config.DiscussionPhaseMs = dp.GetInt32(); + if (data.TryGetProperty("votingPhaseMs", out var vp)) _config.VotingPhaseMs = vp.GetInt32(); + if (data.TryGetProperty("maxSpeedMps", out var ms)) _config.MaxSpeedMps = ms.GetDouble(); + + _logger.LogInformation("Config updated via admin panel"); + + await WriteJsonAsync(response, new { success = true }); + } + + private async Task HandlePlayersAsync(HttpListenerRequest request, HttpListenerResponse response) + { + var query = request.QueryString; + var search = query["search"] ?? ""; + + var allPlayers = _lobbyManager.GetAllLobbies() + .SelectMany(l => l.GetPlayers().Select(p => new + { + playerId = p.PlayerId, + displayName = p.DisplayName, + lobbyId = l.LobbyId, + joinCode = l.JoinCode, + state = p.State.ToString(), + role = p.Role.ToString(), + position = new { lat = p.Position.Lat, lng = p.Position.Lon }, + isHost = p.IsHost, + cheatScore = p.CheatScore + })) + .Where(p => string.IsNullOrEmpty(search) || + p.displayName.Contains(search, StringComparison.OrdinalIgnoreCase) || + p.playerId.Contains(search, StringComparison.OrdinalIgnoreCase)) + .ToList(); + + await WriteJsonAsync(response, new { players = allPlayers, total = allPlayers.Count }); + } + + private async Task HandleKickAsync(HttpListenerRequest request, HttpListenerResponse response) + { + using var reader = new StreamReader(request.InputStream); + var body = await reader.ReadToEndAsync(); + var data = JsonSerializer.Deserialize(body); + + var playerId = data.GetProperty("playerId").GetString(); + var reason = data.TryGetProperty("reason", out var r) ? r.GetString() : "Kicked by admin"; + + // Najdi hráče a kickni ho + foreach (var lobby in _lobbyManager.GetAllLobbies()) + { + if (lobby.TryKickPlayer(playerId!, reason!)) + { + _logger.LogInformation("Player {PlayerId} kicked by admin: {Reason}", playerId, reason); + await WriteJsonAsync(response, new { success = true }); + return; + } + } + + response.StatusCode = 404; + await WriteJsonAsync(response, new { error = "Player not found" }); + } + + private async Task HandleBroadcastAsync(HttpListenerRequest request, HttpListenerResponse response) + { + using var reader = new StreamReader(request.InputStream); + var body = await reader.ReadToEndAsync(); + var data = JsonSerializer.Deserialize(body); + + var message = data.GetProperty("message").GetString(); + var lobbyId = data.TryGetProperty("lobbyId", out var l) ? l.GetString() : null; + + if (string.IsNullOrEmpty(lobbyId)) + { + // Broadcast všem + foreach (var lobby in _lobbyManager.GetAllLobbies()) + { + lobby.BroadcastSystemMessage(message!); + } + } + else + { + // Broadcast do konkrétní lobby + var lobby = _lobbyManager.GetLobby(lobbyId); + lobby?.BroadcastSystemMessage(message!); + } + + _logger.LogInformation("Admin broadcast: {Message}", message); + await WriteJsonAsync(response, new { success = true }); + } + + #region ═══════════════════════════════════════════════════════════════════ + // WEBSOCKET - SPECTATE + // ════════════════════════════════════════════════════════════════════════ + #endregion + + private async Task HandleSpectateWebSocketAsync(HttpListenerContext context, string lobbyId, string sessionId) + { + var wsContext = await context.AcceptWebSocketAsync(null); + var ws = wsContext.WebSocket; + var spectatorId = Guid.NewGuid().ToString("N")[..8]; + + var lobby = _lobbyManager.GetLobby(lobbyId); + if (lobby == null) + { + try + { + await ws.CloseAsync(WebSocketCloseStatus.InvalidPayloadData, "Lobby not found", CancellationToken.None); + } + catch (WebSocketException) { /* Client already disconnected */ } + return; + } + + var connection = new SpectatorConnection + { + WebSocket = ws, + LobbyId = lobbyId, + SessionId = sessionId + }; + + _spectators[spectatorId] = connection; + _logger.LogInformation("Spectator {Id} connected to lobby {LobbyId}", spectatorId, lobbyId); + + try + { + // Pošli initial state + await SendLobbyStateAsync(ws, lobby); + + var buffer = new byte[4096]; + var updateInterval = TimeSpan.FromMilliseconds(200); + var cts = new CancellationTokenSource(); + var receivedMessage = new TaskCompletionSource<(bool closed, string? message)>(); + + // Spustíme receive task separátně + var receiveTask = Task.Run(async () => + { + try + { + while (ws.State == WebSocketState.Open && !cts.Token.IsCancellationRequested) + { + var result = await ws.ReceiveAsync(new ArraySegment(buffer), cts.Token); + if (result.MessageType == WebSocketMessageType.Close) + { + return true; // closed + } + + if (result.Count > 0) + { + var message = Encoding.UTF8.GetString(buffer, 0, result.Count); + await HandleSpectatorMessageAsync(ws, lobby!, message); + } + } + } + catch (OperationCanceledException) { } + catch (WebSocketException) { } + return ws.State != WebSocketState.Open; + }); + + // Hlavní smyčka posílá state + while (ws.State == WebSocketState.Open && !receiveTask.IsCompleted) + { + lobby = _lobbyManager.GetLobby(lobbyId); + if (lobby != null) + { + await SendLobbyStateAsync(ws, lobby); + } + else + { + break; + } + + try + { + await Task.WhenAny(receiveTask, Task.Delay(updateInterval, cts.Token)); + } + catch (OperationCanceledException) { break; } + } + + cts.Cancel(); + + // Gracefully close if still open + if (ws.State == WebSocketState.Open) + { + try + { + await ws.CloseAsync(WebSocketCloseStatus.NormalClosure, lobby == null ? "Lobby closed" : "Closing", CancellationToken.None); + } + catch (WebSocketException) { /* Already closed by client */ } + } + } + catch (WebSocketException) + { + // Client disconnected - this is normal + } + catch (Exception ex) + { + _logger.LogDebug(ex, "Spectate WebSocket error"); + } + finally + { + _spectators.TryRemove(spectatorId, out _); + _logger.LogInformation("Spectator {Id} disconnected", spectatorId); + } + } + + private async Task SendLobbyStateAsync(WebSocket ws, LobbyActor lobby) + { + var state = new + { + type = "state", + lobby = new + { + id = lobby.LobbyId, + joinCode = lobby.JoinCode, + phase = lobby.Phase.ToString(), + phaseEndTime = lobby.PhaseEndTime?.ToString("o"), + + players = lobby.GetPlayers().Select(p => new + { + id = p.PlayerId, + name = p.DisplayName, + state = p.State.ToString(), + role = p.Role.ToString(), + lat = p.Position.Lat, + lng = p.Position.Lon, + isHost = p.IsHost, + cheatScore = p.CheatScore, + killCooldownEnd = p.KillCooldownEnd?.ToString("o"), + votedFor = p.VotedFor + }), + + tasks = lobby.GetTasks().Select(t => new + { + id = t.TaskId, + name = t.Name, + lat = t.Location.Lat, + lng = t.Location.Lon, + completedBy = t.CompletedBy.ToList() + }), + + bodies = lobby.GetBodies().Select(b => new + { + victimId = b.VictimId, + lat = b.Position.Lat, + lng = b.Position.Lon, + reportedAt = b.ReportedAt?.ToString("o") + }), + + sabotage = lobby.ActiveSabotage != null ? new + { + type = lobby.ActiveSabotage.Type.ToString(), + deadline = lobby.ActiveSabotage.Deadline?.ToString("o"), + repairStations = lobby.ActiveSabotage.RepairStations.Select(rs => new + { + id = rs.StationId, + lat = rs.Location.Lat, + lng = rs.Location.Lon, + isRepaired = rs.IsRepaired + }) + } : null, + + votes = lobby.Phase == GamePhase.Voting ? lobby.GetVotes() : null, + + settings = new + { + center = new { lat = lobby.Settings.PlayAreaCenter.Lat, lng = lobby.Settings.PlayAreaCenter.Lon }, + radius = lobby.Settings.PlayAreaRadius, + impostorCount = lobby.Settings.ImpostorCount, + taskCount = lobby.Settings.TaskCount + }, + + mapData = lobby.MapData // Overpass data pro vykreslení mapy + }, + timestamp = DateTime.UtcNow.ToString("o") + }; + + var json = JsonSerializer.Serialize(state, JsonOptions.Default); + var bytes = Encoding.UTF8.GetBytes(json); + + if (ws.State == WebSocketState.Open) + { + await ws.SendAsync(new ArraySegment(bytes), WebSocketMessageType.Text, true, CancellationToken.None); + } + } + + private async Task HandleSpectatorMessageAsync(WebSocket ws, LobbyActor lobby, string message) + { + try + { + var data = JsonSerializer.Deserialize(message); + var type = data.GetProperty("type").GetString(); + + switch (type) + { + case "ping": + await SendJsonAsync(ws, new { type = "pong" }); + break; + + case "getPlayerHistory": + var playerId = data.GetProperty("playerId").GetString(); + var stats = _statsDb.GetPlayerStats(playerId!); + await SendJsonAsync(ws, new { type = "playerHistory", stats }); + break; + } + } + catch { } + } + + #region ═══════════════════════════════════════════════════════════════════ + // WEBSOCKET - SERVER STATS + // ════════════════════════════════════════════════════════════════════════ + #endregion + + private async Task HandleStatsWebSocketAsync(HttpListenerContext context, string sessionId) + { + var wsContext = await context.AcceptWebSocketAsync(null); + var ws = wsContext.WebSocket; + + try + { + var buffer = new byte[1024]; + var updateInterval = TimeSpan.FromSeconds(1); + var cts = new CancellationTokenSource(); + + // Spustíme receive task separátně - bude běžet celou dobu + var receiveTask = Task.Run(async () => + { + try + { + while (ws.State == WebSocketState.Open && !cts.Token.IsCancellationRequested) + { + var result = await ws.ReceiveAsync(new ArraySegment(buffer), cts.Token); + if (result.MessageType == WebSocketMessageType.Close) + { + return; + } + } + } + catch (OperationCanceledException) { } + catch (WebSocketException) { } + }); + + // Hlavní smyčka posílá stats + while (ws.State == WebSocketState.Open && !receiveTask.IsCompleted) + { + var uptime = DateTime.UtcNow - Program.StartTime; + var stats = new + { + type = "stats", + uptime = (long)uptime.TotalSeconds, + lobbies = _lobbyManager.LobbyCount, + players = _lobbyManager.TotalPlayerCount, + memoryMb = GC.GetTotalMemory(false) / 1024 / 1024, + spectators = _spectators.Count, + timestamp = DateTime.UtcNow.ToString("o") + }; + + await SendJsonAsync(ws, stats); + + // Čekáme na interval nebo ukončení receive tasku + var delayTask = Task.Delay(updateInterval, cts.Token); + try + { + await Task.WhenAny(receiveTask, delayTask); + } + catch (OperationCanceledException) { break; } + } + + cts.Cancel(); + + if (ws.State == WebSocketState.Open) + { + try + { + await ws.CloseAsync(WebSocketCloseStatus.NormalClosure, "Closing", CancellationToken.None); + } + catch (WebSocketException) { /* Already closed */ } + } + } + catch (WebSocketException) { } + catch (Exception ex) + { + _logger.LogDebug(ex, "Stats WebSocket error"); + } + } + + #region ═══════════════════════════════════════════════════════════════════ + // HELPERS + // ════════════════════════════════════════════════════════════════════════ + #endregion + + private static async Task WriteJsonAsync(HttpListenerResponse response, object data) + { + response.ContentType = "application/json"; + var json = JsonSerializer.Serialize(data, JsonOptions.Default); + var bytes = Encoding.UTF8.GetBytes(json); + response.ContentLength64 = bytes.Length; + await response.OutputStream.WriteAsync(bytes); + } + + private static async Task SendJsonAsync(WebSocket ws, object data) + { + var json = JsonSerializer.Serialize(data, JsonOptions.Default); + var bytes = Encoding.UTF8.GetBytes(json); + if (ws.State == WebSocketState.Open) + { + await ws.SendAsync(new ArraySegment(bytes), WebSocketMessageType.Text, true, CancellationToken.None); + } + } + + private async Task ServeStaticFileAsync(HttpListenerResponse response, string filename, string contentType) + { + var content = GetEmbeddedResource(filename); + if (content == null) + { + response.StatusCode = 404; + return; + } + + response.ContentType = contentType + "; charset=utf-8"; + var bytes = Encoding.UTF8.GetBytes(content); + response.ContentLength64 = bytes.Length; + await response.OutputStream.WriteAsync(bytes); + } + + private string? GetEmbeddedResource(string filename) + { + // Embedded resources z AdminResources třídy + return filename switch + { + "admin.html" => AdminResources.Html, + "admin.css" => AdminResources.Css, + "admin.js" => AdminResources.JavaScript, + _ => null + }; + } +} + +public class AdminSession +{ + public DateTime LastActivity { get; set; } +} + +public class SpectatorConnection +{ + public required WebSocket WebSocket { get; set; } + public required string LobbyId { get; set; } + public required string SessionId { get; set; } +} diff --git a/AdminResources.cs b/AdminResources.cs new file mode 100644 index 0000000..040bcc7 --- /dev/null +++ b/AdminResources.cs @@ -0,0 +1,2374 @@ +namespace GeoSus.Server; + +/// +/// Embedded resources pro Admin Panel +/// HTML, CSS a JavaScript jako stringy pro snadné servování bez externích souborů +/// +public static class AdminResources +{ + public static string Html => @" + + + + + GeoSus Admin Panel + + + + + + +
+
+
+
🌍
+

GeoSus

+

Admin Panel

+
+
+
+ + 🔐 +
+ +
+
+
+
+
+ + +
+ + + + +
+ +
+
+

Dashboard

+
+ Aktualizováno: --:--:-- +
+
+ +
+
+
🎮
+
+
0
+
Aktivní lobby
+
+
+
+
👥
+
+
0
+
Hráčů online
+
+
+
+
⏱️
+
+
0:00:00
+
Uptime
+
+
+
+
💾
+
+
0 MB
+
Paměť
+
+
+
+ +
+
+
+

Aktivní Lobby

+ +
+
+
+
Žádné aktivní lobby
+
+
+
+ +
+
+

Rychlé akce

+
+
+
+ + + +
+
+
+
+
+ + +
+
+

Správa Lobby

+
+ +
+
+ +
+
+
+ + +
+
+ +

Spectate: ---

+
---
+
+ +
+
+
+
+
+
Crew
+
Impostor
+
Dead
+
Task
+
Body
+
Repair
+
+
+
+ +
+
+

👥 Hráči

+
+
+ +
+

🗳️ Hlasování

+
+
+ +
+

⚠️ Sabotáž

+
+
+ +
+

📋 Tasks

+
+
+
+
+ 0/0 +
+
+
+
+
+ + +
+
+

Správa hráčů

+
+ +
+
+ +
+ + + + + + + + + + + + + + +
JménoIDLobbyRoleStavCheat ScoreAkce
+
+
+ + +
+
+

Konfigurace serveru

+
+ +
+
+
+

🎯 Gameplay

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+ +
+

🗳️ Meeting

+
+
+ + +
+
+ + +
+
+
+ +
+

⚠️ Sabotáž

+
+
+ + +
+
+ + +
+
+
+ +
+ + +
+
+
+
+ + +
+
+

Broadcast zpráva

+
+ +
+
+
+ + +
+
+ + +
+ +
+
+
+
+
+ + +
+ +
+
+

Kick hráče

+ +
+
+

Opravdu chcete vyhodit hráče ?

+
+ + +
+
+
+ + +
+
+ + + +"; + + public static string Css => @"/* ═══════════════════════════════════════════════════════════════════════════ + GeoSus Admin Panel - Styles + Modern, Dark Theme with Accent Colors + ═══════════════════════════════════════════════════════════════════════════ */ + +:root { + --bg-primary: #0f0f1a; + --bg-secondary: #1a1a2e; + --bg-card: #16213e; + --bg-hover: #1f2b4a; + + --text-primary: #ffffff; + --text-secondary: #a0a0b0; + --text-muted: #6b6b7b; + + --accent-primary: #00d4ff; + --accent-secondary: #7c3aed; + --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%); + + --success: #10b981; + --warning: #f59e0b; + --danger: #ef4444; + --info: #3b82f6; + + --crew-color: #3b82f6; + --impostor-color: #ef4444; + --dead-color: #6b7280; + --task-color: #10b981; + --body-color: #f59e0b; + --repair-color: #8b5cf6; + + --border-color: rgba(255, 255, 255, 0.1); + --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3); + --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.4); + + --radius-sm: 6px; + --radius-md: 10px; + --radius-lg: 16px; + --radius-full: 9999px; + + --transition: all 0.2s ease; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; + background: var(--bg-primary); + color: var(--text-primary); + line-height: 1.6; + overflow: hidden; + height: 100vh; +} + +/* ═══════════════════════════════════════════════════════════════════════════ + LOGIN SCREEN + ═══════════════════════════════════════════════════════════════════════════ */ + +.screen { + display: none; + height: 100vh; +} + +.screen.active { + display: flex; +} + +#login-screen { + justify-content: center; + align-items: center; + position: relative; + overflow: hidden; +} + +.login-bg { + position: absolute; + inset: 0; + background: + radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%), + radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%), + var(--bg-primary); + z-index: 0; +} + +.login-container { + position: relative; + z-index: 1; + background: var(--bg-secondary); + padding: 3rem; + border-radius: var(--radius-lg); + border: 1px solid var(--border-color); + box-shadow: var(--shadow-lg); + width: 100%; + max-width: 400px; + animation: slideUp 0.5s ease; +} + +@keyframes slideUp { + from { opacity: 0; transform: translateY(20px); } + to { opacity: 1; transform: translateY(0); } +} + +.login-logo { + text-align: center; + margin-bottom: 2rem; +} + +.logo-icon { + font-size: 4rem; + margin-bottom: 0.5rem; + animation: float 3s ease-in-out infinite; +} + +@keyframes float { + 0%, 100% { transform: translateY(0); } + 50% { transform: translateY(-10px); } +} + +.login-logo h1 { + font-size: 2rem; + background: var(--accent-gradient); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; +} + +.login-logo p { + color: var(--text-secondary); + font-size: 0.9rem; +} + +.input-group { + position: relative; + margin-bottom: 1.5rem; +} + +.input-group input { + width: 100%; + padding: 1rem 1rem 1rem 3rem; + background: var(--bg-primary); + border: 1px solid var(--border-color); + border-radius: var(--radius-md); + color: var(--text-primary); + font-size: 1rem; + transition: var(--transition); +} + +.input-group input:focus { + outline: none; + border-color: var(--accent-primary); + box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2); +} + +.input-icon { + position: absolute; + left: 1rem; + top: 50%; + transform: translateY(-50%); + font-size: 1.2rem; +} + +.error-message { + color: var(--danger); + font-size: 0.85rem; + margin-top: 1rem; + text-align: center; + min-height: 1.5rem; +} + +/* ═══════════════════════════════════════════════════════════════════════════ + BUTTONS + ═══════════════════════════════════════════════════════════════════════════ */ + +.btn { + display: inline-flex; + align-items: center; + justify-content: center; + gap: 0.5rem; + padding: 0.75rem 1.5rem; + border: none; + border-radius: var(--radius-md); + font-size: 0.95rem; + font-weight: 500; + cursor: pointer; + transition: var(--transition); + background: var(--bg-card); + color: var(--text-primary); + border: 1px solid var(--border-color); +} + +.btn:hover { + background: var(--bg-hover); + transform: translateY(-1px); +} + +.btn-primary { + background: var(--accent-gradient); + border: none; + color: white; +} + +.btn-primary:hover { + opacity: 0.9; + box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4); +} + +.btn-danger { + background: var(--danger); + border: none; + color: white; +} + +.btn-danger:hover { + background: #dc2626; +} + +.btn-full { + width: 100%; +} + +.btn-sm { + padding: 0.4rem 0.8rem; + font-size: 0.85rem; +} + +.btn-arrow { + transition: transform 0.2s; +} + +.btn:hover .btn-arrow { + transform: translateX(4px); +} + +.btn-action { + flex-direction: column; + padding: 1.5rem; + gap: 0.75rem; + flex: 1; +} + +.action-icon { + font-size: 2rem; +} + +.btn-back { + padding: 0.5rem 1rem; +} + +/* ═══════════════════════════════════════════════════════════════════════════ + DASHBOARD LAYOUT + ═══════════════════════════════════════════════════════════════════════════ */ + +#dashboard { + display: flex; +} + +.sidebar { + width: 260px; + background: var(--bg-secondary); + border-right: 1px solid var(--border-color); + display: flex; + flex-direction: column; + height: 100vh; +} + +.sidebar-header { + padding: 1.5rem; + display: flex; + align-items: center; + gap: 0.75rem; + border-bottom: 1px solid var(--border-color); +} + +.sidebar-header .logo { + font-size: 2rem; +} + +.logo-text { + font-size: 1.5rem; + font-weight: 700; + background: var(--accent-gradient); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; +} + +.nav-section { + padding: 1rem 0; +} + +.nav-label { + padding: 0.5rem 1.5rem; + font-size: 0.75rem; + text-transform: uppercase; + letter-spacing: 0.1em; + color: var(--text-muted); +} + +.nav-item { + display: flex; + align-items: center; + gap: 0.75rem; + padding: 0.75rem 1.5rem; + color: var(--text-secondary); + text-decoration: none; + transition: var(--transition); + position: relative; +} + +.nav-item:hover { + background: var(--bg-hover); + color: var(--text-primary); +} + +.nav-item.active { + background: rgba(0, 212, 255, 0.1); + color: var(--accent-primary); +} + +.nav-item.active::before { + content: ''; + position: absolute; + left: 0; + top: 0; + bottom: 0; + width: 3px; + background: var(--accent-gradient); + border-radius: 0 3px 3px 0; +} + +.nav-icon { + font-size: 1.2rem; +} + +.nav-badge { + margin-left: auto; + background: var(--accent-primary); + color: var(--bg-primary); + padding: 0.15rem 0.5rem; + border-radius: var(--radius-full); + font-size: 0.75rem; + font-weight: 600; +} + +.sidebar-footer { + margin-top: auto; + padding: 1rem 1.5rem; + border-top: 1px solid var(--border-color); +} + +.server-status { + display: flex; + align-items: center; + gap: 0.5rem; + margin-bottom: 1rem; + font-size: 0.9rem; + color: var(--text-secondary); +} + +.status-dot { + width: 8px; + height: 8px; + border-radius: 50%; + background: var(--text-muted); +} + +.status-dot.online { + background: var(--success); + box-shadow: 0 0 8px var(--success); +} + +.btn-logout { + display: flex; + align-items: center; + gap: 0.5rem; + width: 100%; + padding: 0.75rem; + background: transparent; + border: 1px solid var(--border-color); + border-radius: var(--radius-md); + color: var(--text-secondary); + cursor: pointer; + transition: var(--transition); +} + +.btn-logout:hover { + background: rgba(239, 68, 68, 0.1); + border-color: var(--danger); + color: var(--danger); +} + +/* ═══════════════════════════════════════════════════════════════════════════ + MAIN CONTENT + ═══════════════════════════════════════════════════════════════════════════ */ + +.main-content { + flex: 1; + overflow-y: auto; + height: 100vh; + background: var(--bg-primary); +} + +.view { + display: none; + padding: 2rem; + animation: fadeIn 0.3s ease; +} + +.view.active { + display: block; +} + +@keyframes fadeIn { + from { opacity: 0; } + to { opacity: 1; } +} + +.view-header { + display: flex; + align-items: center; + gap: 1rem; + margin-bottom: 2rem; +} + +.view-header h1 { + font-size: 1.75rem; + font-weight: 600; +} + +.header-actions { + margin-left: auto; + display: flex; + align-items: center; + gap: 1rem; +} + +.last-update { + font-size: 0.85rem; + color: var(--text-muted); +} + +/* ═══════════════════════════════════════════════════════════════════════════ + STATS CARDS + ═══════════════════════════════════════════════════════════════════════════ */ + +.stats-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 1.5rem; + margin-bottom: 2rem; +} + +.stat-card { + background: var(--bg-card); + border-radius: var(--radius-lg); + padding: 1.5rem; + display: flex; + align-items: center; + gap: 1rem; + border: 1px solid var(--border-color); + transition: var(--transition); +} + +.stat-card:hover { + transform: translateY(-2px); + box-shadow: var(--shadow-lg); + border-color: var(--accent-primary); +} + +.stat-icon { + font-size: 2.5rem; + opacity: 0.8; +} + +.stat-value { + font-size: 2rem; + font-weight: 700; + background: var(--accent-gradient); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; +} + +.stat-label { + font-size: 0.9rem; + color: var(--text-secondary); +} + +/* ═══════════════════════════════════════════════════════════════════════════ + CARDS + ═══════════════════════════════════════════════════════════════════════════ */ + +.card { + background: var(--bg-card); + border-radius: var(--radius-lg); + border: 1px solid var(--border-color); + overflow: hidden; +} + +.card-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: 1rem 1.5rem; + border-bottom: 1px solid var(--border-color); +} + +.card-header h3 { + font-size: 1rem; + font-weight: 600; +} + +.card-body { + padding: 1.5rem; +} + +.dashboard-grid { + display: grid; + grid-template-columns: 2fr 1fr; + gap: 1.5rem; +} + +@media (max-width: 1200px) { + .dashboard-grid { + grid-template-columns: 1fr; + } +} + +.quick-actions { + display: flex; + gap: 1rem; +} + +.empty-state { + text-align: center; + padding: 2rem; + color: var(--text-muted); +} + +/* ═══════════════════════════════════════════════════════════════════════════ + LOBBY LIST + ═══════════════════════════════════════════════════════════════════════════ */ + +.lobby-list { + display: flex; + flex-direction: column; + gap: 0.75rem; + max-height: 400px; + overflow-y: auto; +} + +.lobby-item { + display: flex; + align-items: center; + gap: 1rem; + padding: 1rem; + background: var(--bg-secondary); + border-radius: var(--radius-md); + cursor: pointer; + transition: var(--transition); +} + +.lobby-item:hover { + background: var(--bg-hover); + transform: translateX(4px); +} + +.lobby-code { + font-family: monospace; + font-size: 1.1rem; + font-weight: 600; + color: var(--accent-primary); + background: rgba(0, 212, 255, 0.1); + padding: 0.25rem 0.75rem; + border-radius: var(--radius-sm); +} + +.lobby-info { + flex: 1; +} + +.lobby-phase { + font-size: 0.85rem; + color: var(--text-secondary); +} + +.lobby-players { + display: flex; + align-items: center; + gap: 0.5rem; + font-size: 0.9rem; +} + +.btn-spectate { + padding: 0.5rem 1rem; + background: var(--accent-gradient); + border: none; + color: white; +} + +/* ═══════════════════════════════════════════════════════════════════════════ + SPECTATE VIEW + ═══════════════════════════════════════════════════════════════════════════ */ + +#view-spectate { + padding: 0; + height: 100vh; + display: none; + flex-direction: column; +} + +#view-spectate.active { + display: flex; +} + +#view-spectate .view-header { + padding: 1rem 2rem; + background: var(--bg-secondary); + border-bottom: 1px solid var(--border-color); + margin-bottom: 0; +} + +.spectate-phase { + margin-left: auto; + padding: 0.5rem 1rem; + background: var(--bg-card); + border-radius: var(--radius-full); + font-weight: 600; + text-transform: uppercase; + font-size: 0.85rem; +} + +.spectate-phase.lobby { color: var(--info); } +.spectate-phase.playing { color: var(--success); } +.spectate-phase.discussion { color: var(--warning); } +.spectate-phase.voting { color: var(--danger); } + +.spectate-container { + flex: 1; + display: flex; + overflow: hidden; +} + +.spectate-map-container { + flex: 1; + position: relative; +} + +.spectate-map { + width: 100%; + height: 100%; + background: var(--bg-primary); +} + +.map-overlay { + position: absolute; + bottom: 1rem; + left: 1rem; + z-index: 1000; +} + +.map-legend { + background: rgba(15, 15, 26, 0.9); + padding: 0.75rem 1rem; + border-radius: var(--radius-md); + display: flex; + gap: 1rem; + flex-wrap: wrap; +} + +.legend-item { + display: flex; + align-items: center; + gap: 0.5rem; + font-size: 0.8rem; + color: var(--text-secondary); +} + +.legend-dot { + width: 12px; + height: 12px; + border-radius: 50%; +} + +.legend-dot.crew { background: var(--crew-color); } +.legend-dot.impostor { background: var(--impostor-color); } +.legend-dot.dead { background: var(--dead-color); } +.legend-dot.task { background: var(--task-color); } +.legend-dot.body { background: var(--body-color); } +.legend-dot.repair { background: var(--repair-color); } + +.spectate-sidebar { + width: 320px; + background: var(--bg-secondary); + border-left: 1px solid var(--border-color); + overflow-y: auto; + display: flex; + flex-direction: column; +} + +.spectate-panel { + padding: 1rem; + border-bottom: 1px solid var(--border-color); +} + +.spectate-panel h3 { + font-size: 0.9rem; + margin-bottom: 0.75rem; + color: var(--text-secondary); +} + +.player-list { + display: flex; + flex-direction: column; + gap: 0.5rem; +} + +.player-item { + display: flex; + align-items: center; + gap: 0.75rem; + padding: 0.5rem 0.75rem; + background: var(--bg-card); + border-radius: var(--radius-sm); + font-size: 0.9rem; +} + +.player-role { + width: 8px; + height: 8px; + border-radius: 50%; +} + +.player-role.crew { background: var(--crew-color); } +.player-role.impostor { background: var(--impostor-color); } + +.player-item.dead { + opacity: 0.5; + text-decoration: line-through; +} + +.player-name { + flex: 1; +} + +.player-state { + font-size: 0.75rem; + color: var(--text-muted); + text-transform: uppercase; +} + +/* Votes Display */ +.votes-display { + display: flex; + flex-direction: column; + gap: 0.5rem; +} + +.vote-row { + display: flex; + align-items: center; + gap: 0.5rem; + padding: 0.5rem; + background: var(--bg-card); + border-radius: var(--radius-sm); +} + +.vote-target { + font-weight: 600; + flex: 1; +} + +.vote-count { + background: var(--accent-primary); + color: var(--bg-primary); + padding: 0.15rem 0.5rem; + border-radius: var(--radius-full); + font-size: 0.8rem; + font-weight: 600; +} + +/* Task Progress */ +.task-progress { + display: flex; + align-items: center; + gap: 1rem; +} + +.progress-bar { + flex: 1; + height: 8px; + background: var(--bg-primary); + border-radius: var(--radius-full); + overflow: hidden; +} + +.progress-fill { + height: 100%; + background: var(--accent-gradient); + transition: width 0.3s ease; + width: 0%; +} + +/* Sabotage Info */ +.sabotage-info { + background: rgba(239, 68, 68, 0.1); + border: 1px solid var(--danger); + border-radius: var(--radius-md); + padding: 0.75rem; +} + +.sabotage-type { + font-weight: 600; + color: var(--danger); + margin-bottom: 0.5rem; +} + +.sabotage-timer { + font-size: 1.5rem; + font-weight: 700; + color: var(--danger); + font-family: monospace; +} + +/* ═══════════════════════════════════════════════════════════════════════════ + PLAYERS TABLE + ═══════════════════════════════════════════════════════════════════════════ */ + +.search-input { + padding: 0.5rem 1rem; + background: var(--bg-secondary); + border: 1px solid var(--border-color); + border-radius: var(--radius-md); + color: var(--text-primary); + font-size: 0.9rem; + width: 250px; +} + +.search-input:focus { + outline: none; + border-color: var(--accent-primary); +} + +.players-table-container { + background: var(--bg-card); + border-radius: var(--radius-lg); + border: 1px solid var(--border-color); + overflow: hidden; +} + +.data-table { + width: 100%; + border-collapse: collapse; +} + +.data-table th, +.data-table td { + padding: 1rem; + text-align: left; + border-bottom: 1px solid var(--border-color); +} + +.data-table th { + background: var(--bg-secondary); + font-weight: 600; + font-size: 0.85rem; + text-transform: uppercase; + letter-spacing: 0.05em; + color: var(--text-secondary); +} + +.data-table tr:hover { + background: var(--bg-hover); +} + +.data-table .role-badge { + padding: 0.25rem 0.75rem; + border-radius: var(--radius-full); + font-size: 0.8rem; + font-weight: 600; +} + +.role-badge.crew { + background: rgba(59, 130, 246, 0.2); + color: var(--crew-color); +} + +.role-badge.impostor { + background: rgba(239, 68, 68, 0.2); + color: var(--impostor-color); +} + +.cheat-score { + font-weight: 600; +} + +.cheat-score.low { color: var(--success); } +.cheat-score.medium { color: var(--warning); } +.cheat-score.high { color: var(--danger); } + +/* ═══════════════════════════════════════════════════════════════════════════ + CONFIG FORM + ═══════════════════════════════════════════════════════════════════════════ */ + +.config-container { + max-width: 800px; +} + +.config-form { + background: var(--bg-card); + border-radius: var(--radius-lg); + border: 1px solid var(--border-color); + overflow: hidden; +} + +.config-section { + padding: 1.5rem; + border-bottom: 1px solid var(--border-color); +} + +.config-section:last-of-type { + border-bottom: none; +} + +.config-section h3 { + margin-bottom: 1rem; + font-size: 1rem; +} + +.config-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 1rem; +} + +.config-item label { + display: block; + margin-bottom: 0.5rem; + font-size: 0.85rem; + color: var(--text-secondary); +} + +.config-item input { + width: 100%; + padding: 0.75rem; + background: var(--bg-primary); + border: 1px solid var(--border-color); + border-radius: var(--radius-md); + color: var(--text-primary); + font-size: 1rem; +} + +.config-item input:focus { + outline: none; + border-color: var(--accent-primary); +} + +.config-actions { + padding: 1.5rem; + background: var(--bg-secondary); + display: flex; + gap: 1rem; +} + +/* ═══════════════════════════════════════════════════════════════════════════ + BROADCAST FORM + ═══════════════════════════════════════════════════════════════════════════ */ + +.broadcast-container { + max-width: 600px; +} + +.broadcast-form { + background: var(--bg-card); + border-radius: var(--radius-lg); + border: 1px solid var(--border-color); + padding: 1.5rem; +} + +.form-group { + margin-bottom: 1.5rem; +} + +.form-group label { + display: block; + margin-bottom: 0.5rem; + font-weight: 500; +} + +.form-group select, +.form-group textarea { + width: 100%; + padding: 0.75rem; + background: var(--bg-primary); + border: 1px solid var(--border-color); + border-radius: var(--radius-md); + color: var(--text-primary); + font-size: 1rem; + font-family: inherit; +} + +.form-group textarea { + resize: vertical; + min-height: 100px; +} + +.form-group select:focus, +.form-group textarea:focus { + outline: none; + border-color: var(--accent-primary); +} + +/* ═══════════════════════════════════════════════════════════════════════════ + MODAL + ═══════════════════════════════════════════════════════════════════════════ */ + +.modal-overlay { + position: fixed; + inset: 0; + background: rgba(0, 0, 0, 0.7); + z-index: 1000; + opacity: 0; + visibility: hidden; + transition: var(--transition); +} + +.modal-overlay.active { + opacity: 1; + visibility: visible; +} + +.modal { + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%) scale(0.9); + background: var(--bg-card); + border-radius: var(--radius-lg); + border: 1px solid var(--border-color); + z-index: 1001; + width: 90%; + max-width: 400px; + opacity: 0; + visibility: hidden; + transition: var(--transition); +} + +.modal.active { + opacity: 1; + visibility: visible; + transform: translate(-50%, -50%) scale(1); +} + +.modal-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: 1rem 1.5rem; + border-bottom: 1px solid var(--border-color); +} + +.modal-close { + background: none; + border: none; + font-size: 1.5rem; + color: var(--text-secondary); + cursor: pointer; +} + +.modal-body { + padding: 1.5rem; +} + +.modal-footer { + padding: 1rem 1.5rem; + background: var(--bg-secondary); + display: flex; + justify-content: flex-end; + gap: 0.75rem; +} + +/* ═══════════════════════════════════════════════════════════════════════════ + LEAFLET MAP CUSTOMIZATION + ═══════════════════════════════════════════════════════════════════════════ */ + +.leaflet-container { + background: var(--bg-primary) !important; +} + +.player-marker { + display: flex; + align-items: center; + justify-content: center; + width: 32px; + height: 32px; + border-radius: 50%; + border: 3px solid white; + font-size: 14px; + font-weight: bold; + color: white; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); + transition: transform 0.3s ease; +} + +.player-marker.crew { background: var(--crew-color); } +.player-marker.impostor { background: var(--impostor-color); } +.player-marker.dead { + background: var(--dead-color); + opacity: 0.6; +} + +.task-marker { + width: 20px; + height: 20px; + background: var(--task-color); + border-radius: 50%; + border: 2px solid white; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); +} + +.task-marker.completed { + background: var(--text-muted); +} + +.body-marker { + width: 24px; + height: 24px; + background: var(--body-color); + border-radius: 50%; + border: 2px solid white; + display: flex; + align-items: center; + justify-content: center; + font-size: 12px; +} + +.repair-marker { + width: 24px; + height: 24px; + background: var(--repair-color); + border-radius: 4px; + border: 2px solid white; + display: flex; + align-items: center; + justify-content: center; + font-size: 14px; +} + +.repair-marker.repaired { + background: var(--success); +} + +/* Custom popup */ +.leaflet-popup-content-wrapper { + background: var(--bg-card) !important; + border: 1px solid var(--border-color) !important; + color: var(--text-primary) !important; + border-radius: var(--radius-md) !important; +} + +.leaflet-popup-tip { + background: var(--bg-card) !important; +} + +/* ═══════════════════════════════════════════════════════════════════════════ + RESPONSIVE + ═══════════════════════════════════════════════════════════════════════════ */ + +@media (max-width: 1024px) { + .sidebar { + width: 80px; + } + + .logo-text, + .nav-item span:not(.nav-icon):not(.nav-badge), + .nav-label, + .btn-logout span:last-child { + display: none; + } + + .nav-item { + justify-content: center; + padding: 1rem; + } + + .nav-badge { + position: absolute; + top: 0.5rem; + right: 0.5rem; + margin: 0; + } + + .spectate-sidebar { + width: 280px; + } +} + +@media (max-width: 768px) { + .spectate-container { + flex-direction: column; + } + + .spectate-sidebar { + width: 100%; + height: 200px; + flex-direction: row; + overflow-x: auto; + } + + .spectate-panel { + min-width: 200px; + } + + .stats-grid { + grid-template-columns: repeat(2, 1fr); + } + + .quick-actions { + flex-direction: column; + } +} + +/* ═══════════════════════════════════════════════════════════════════════════ + SCROLLBAR + ═══════════════════════════════════════════════════════════════════════════ */ + +::-webkit-scrollbar { + width: 8px; + height: 8px; +} + +::-webkit-scrollbar-track { + background: var(--bg-primary); +} + +::-webkit-scrollbar-thumb { + background: var(--bg-hover); + border-radius: 4px; +} + +::-webkit-scrollbar-thumb:hover { + background: var(--text-muted); +} + +/* ═══════════════════════════════════════════════════════════════════════════ + ANIMATIONS + ═══════════════════════════════════════════════════════════════════════════ */ + +@keyframes pulse { + 0%, 100% { opacity: 1; } + 50% { opacity: 0.5; } +} + +.loading { + animation: pulse 1.5s infinite; +} + +@keyframes shake { + 0%, 100% { transform: translateX(0); } + 25% { transform: translateX(-5px); } + 75% { transform: translateX(5px); } +} + +.shake { + animation: shake 0.3s ease; +}"; + + public static string JavaScript => @"/* ═══════════════════════════════════════════════════════════════════════════ + GeoSus Admin Panel - JavaScript + Real-time dashboard with WebSocket support + ═══════════════════════════════════════════════════════════════════════════ */ + +// State +let statsWs = null; +let spectateWs = null; +let spectateMap = null; +let playerMarkers = {}; +let taskMarkers = {}; +let bodyMarkers = {}; +let repairMarkers = {}; +let buildingLayers = []; +let currentLobbyId = null; +let kickPlayerId = null; + +// ═══════════════════════════════════════════════════════════════════════════ +// INITIALIZATION +// ═══════════════════════════════════════════════════════════════════════════ + +document.addEventListener('DOMContentLoaded', () => { + // Login form + document.getElementById('login-form').addEventListener('submit', handleLogin); + + // Navigation + document.querySelectorAll('.nav-item').forEach(item => { + item.addEventListener('click', (e) => { + e.preventDefault(); + const view = item.dataset.view; + if (view) showView(view); + }); + }); + + // Logout + document.getElementById('logout-btn').addEventListener('click', handleLogout); + + // Config form + document.getElementById('config-form').addEventListener('submit', handleConfigSave); + + // Broadcast form + document.getElementById('broadcast-form').addEventListener('submit', handleBroadcast); + + // Player search + document.getElementById('player-search').addEventListener('input', debounce(loadPlayers, 300)); + + // Check if already logged in + checkAuth(); +}); + +// ═══════════════════════════════════════════════════════════════════════════ +// AUTHENTICATION +// ═══════════════════════════════════════════════════════════════════════════ + +async function checkAuth() { + try { + const response = await fetch('/admin/api/status'); + if (response.ok) { + showDashboard(); + } + } catch (e) { + // Not logged in + } +} + +async function handleLogin(e) { + e.preventDefault(); + const password = document.getElementById('password').value; + const errorEl = document.getElementById('login-error'); + + try { + const response = await fetch('/admin/login', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ password }) + }); + + if (response.ok) { + showDashboard(); + } else { + errorEl.textContent = 'Nesprávné heslo'; + document.getElementById('password').classList.add('shake'); + setTimeout(() => document.getElementById('password').classList.remove('shake'), 300); + } + } catch (e) { + errorEl.textContent = 'Chyba připojení k serveru'; + } +} + +async function handleLogout() { + await fetch('/admin/api/logout'); + if (statsWs) statsWs.close(); + if (spectateWs) spectateWs.close(); + + document.getElementById('dashboard').classList.remove('active'); + document.getElementById('login-screen').classList.add('active'); + document.getElementById('password').value = ''; +} + +function showDashboard() { + document.getElementById('login-screen').classList.remove('active'); + document.getElementById('dashboard').classList.add('active'); + + // Connect WebSocket for stats + connectStatsWebSocket(); + + // Load initial data + refreshLobbies(); + loadConfig(); +} + +// ═══════════════════════════════════════════════════════════════════════════ +// WEBSOCKET - SERVER STATS +// ═══════════════════════════════════════════════════════════════════════════ + +function connectStatsWebSocket() { + const protocol = location.protocol === 'https:' ? 'wss:' : 'ws:'; + statsWs = new WebSocket(`${protocol}//${location.host}/admin/ws/stats`); + + statsWs.onmessage = (event) => { + const data = JSON.parse(event.data); + if (data.type === 'stats') { + updateStats(data); + } + }; + + statsWs.onclose = () => { + setTimeout(connectStatsWebSocket, 3000); + }; +} + +function updateStats(data) { + document.getElementById('stat-lobbies').textContent = data.lobbies; + document.getElementById('stat-players').textContent = data.players; + document.getElementById('stat-memory').textContent = data.memoryMb + ' MB'; + + const uptime = formatUptime(data.uptime); + document.getElementById('stat-uptime').textContent = uptime; + document.getElementById('server-uptime').textContent = uptime; + + document.getElementById('lobby-count').textContent = data.lobbies; + document.getElementById('player-count').textContent = data.players; + + document.getElementById('last-update-time').textContent = new Date().toLocaleTimeString(); +} + +function formatUptime(seconds) { + const h = Math.floor(seconds / 3600); + const m = Math.floor((seconds % 3600) / 60); + const s = seconds % 60; + return `${h}:${String(m).padStart(2, '0')}:${String(s).padStart(2, '0')}`; +} + +// ═══════════════════════════════════════════════════════════════════════════ +// VIEWS +// ═══════════════════════════════════════════════════════════════════════════ + +function showView(viewName) { + // If leaving spectate view, cleanup WebSocket + if (viewName !== 'spectate' && currentLobbyId) { + currentLobbyId = null; // MUST be set before close to prevent reconnect + if (spectateWs) { + spectateWs.close(); + spectateWs = null; + } + } + + // Update nav + document.querySelectorAll('.nav-item').forEach(item => { + item.classList.toggle('active', item.dataset.view === viewName); + }); + + // Update views + document.querySelectorAll('.view').forEach(view => { + view.classList.toggle('active', view.id === `view-${viewName}`); + }); + + // Load data for specific views + if (viewName === 'lobbies') refreshLobbies(); + if (viewName === 'players') loadPlayers(); + if (viewName === 'config') loadConfig(); + if (viewName === 'broadcast') loadBroadcastTargets(); +} + +// ═══════════════════════════════════════════════════════════════════════════ +// LOBBIES +// ═══════════════════════════════════════════════════════════════════════════ + +async function refreshLobbies() { + try { + const response = await fetch('/admin/api/lobbies'); + const data = await response.json(); + renderLobbies(data.lobbies); + } catch (e) { + console.error('Failed to load lobbies:', e); + } +} + +function renderLobbies(lobbies) { + // Dashboard list + const listEl = document.getElementById('lobby-list'); + // Full list + const fullListEl = document.getElementById('lobbies-full-list'); + + if (lobbies.length === 0) { + listEl.innerHTML = '
Žádné aktivní lobby
'; + fullListEl.innerHTML = '
Žádné aktivní lobby
'; + return; + } + + const renderItem = (lobby) => ` +
+ ${lobby.joinCode} +
+
${translatePhase(lobby.phase)}
+
+
+ 👥 + ${lobby.playerCount} +
+ +
+ `; + + listEl.innerHTML = lobbies.slice(0, 5).map(renderItem).join(''); + fullListEl.innerHTML = lobbies.map(renderItem).join(''); +} + +function translatePhase(phase) { + const translations = { + 'Lobby': '🏠 Lobby', + 'Playing': '🎮 Hra', + 'Discussion': '💬 Diskuze', + 'Voting': '🗳️ Hlasování', + 'Ended': '🏁 Konec' + }; + return translations[phase] || phase; +} + +// ═══════════════════════════════════════════════════════════════════════════ +// SPECTATE +// ═══════════════════════════════════════════════════════════════════════════ + +function spectate(lobbyId) { + currentLobbyId = lobbyId; + showView('spectate'); + + // Initialize map if needed + if (!spectateMap) { + spectateMap = L.map('spectate-map', { + zoomControl: true, + attributionControl: false + }).setView([50.0, 14.0], 15); + + L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', { + maxZoom: 19 + }).addTo(spectateMap); + } + + // Connect WebSocket + if (spectateWs) spectateWs.close(); + + const protocol = location.protocol === 'https:' ? 'wss:' : 'ws:'; + spectateWs = new WebSocket(`${protocol}//${location.host}/admin/ws/spectate/${lobbyId}`); + + spectateWs.onmessage = (event) => { + const data = JSON.parse(event.data); + if (data.type === 'state') { + updateSpectateView(data.lobby); + } + }; + + spectateWs.onerror = (err) => { + console.error('Spectate WebSocket error:', err); + }; + + spectateWs.onclose = () => { + // Only reconnect if we're still viewing this specific lobby + // currentLobbyId is set to null when user clicks Back + if (currentLobbyId === lobbyId && document.getElementById('view-spectate').classList.contains('active')) { + console.log('Spectate WebSocket closed, reconnecting in 3s...'); + setTimeout(() => { + // Double-check we still want to reconnect + if (currentLobbyId === lobbyId) { + spectate(lobbyId); + } + }, 3000); + } + }; +} + +function updateSpectateView(lobby) { + // Update header + document.getElementById('spectate-lobby-code').textContent = lobby.joinCode; + const phaseEl = document.getElementById('spectate-phase'); + phaseEl.textContent = translatePhase(lobby.phase); + phaseEl.className = 'spectate-phase ' + lobby.phase.toLowerCase(); + + // Update map center if needed + if (lobby.settings && lobby.settings.center) { + const center = [lobby.settings.center.lat, lobby.settings.center.lng]; + if (spectateMap.getZoom() < 10) { + spectateMap.setView(center, 16); + } + + // Draw play area circle + if (!spectateMap.playAreaCircle) { + spectateMap.playAreaCircle = L.circle(center, { + radius: lobby.settings.radius, + color: '#00d4ff', + fillColor: '#00d4ff', + fillOpacity: 0.05, + weight: 2, + dashArray: '5, 10' + }).addTo(spectateMap); + } + } + + // Update players + updatePlayersOnMap(lobby.players); + updatePlayersList(lobby.players); + + // Update tasks + updateTasksOnMap(lobby.tasks); + updateTaskProgress(lobby.tasks, lobby.players); + + // Update bodies + updateBodiesOnMap(lobby.bodies); + + // Update sabotage + updateSabotage(lobby.sabotage); + + // Update votes + updateVotes(lobby.votes, lobby.players, lobby.phase); + + // Render buildings from map data + if (lobby.mapData && buildingLayers.length === 0) { + renderBuildings(lobby.mapData); + } +} + +function updatePlayersOnMap(players) { + const existingIds = new Set(); + + players.forEach(player => { + existingIds.add(player.id); + + const roleClass = player.role.toLowerCase(); + const isAlive = player.state === 'Alive'; + + if (playerMarkers[player.id]) { + // Update position + playerMarkers[player.id].setLatLng([player.lat, player.lng]); + } else { + // Create marker + const icon = L.divIcon({ + className: 'player-marker-container', + html: `
${player.name.charAt(0).toUpperCase()}
`, + iconSize: [32, 32], + iconAnchor: [16, 16] + }); + + playerMarkers[player.id] = L.marker([player.lat, player.lng], { icon }) + .bindPopup(`${player.name}
Role: ${player.role}
State: ${player.state}`) + .addTo(spectateMap); + } + }); + + // Remove old markers + Object.keys(playerMarkers).forEach(id => { + if (!existingIds.has(id)) { + spectateMap.removeLayer(playerMarkers[id]); + delete playerMarkers[id]; + } + }); +} + +function updatePlayersList(players) { + const listEl = document.getElementById('spectate-players'); + listEl.innerHTML = players.map(p => ` +
+ + ${p.name} + ${p.state} +
+ `).join(''); +} + +function updateTasksOnMap(tasks) { + if (!tasks) return; + + tasks.forEach(task => { + const isComplete = task.completedBy && task.completedBy.length > 0; + + if (!taskMarkers[task.id]) { + const icon = L.divIcon({ + className: 'task-marker-container', + html: `
`, + iconSize: [20, 20], + iconAnchor: [10, 10] + }); + + taskMarkers[task.id] = L.marker([task.lat, task.lng], { icon }) + .bindPopup(`${task.name}`) + .addTo(spectateMap); + } + }); +} + +function updateTaskProgress(tasks, players) { + if (!tasks) return; + + const crewPlayers = players.filter(p => p.role === 'Crew'); + const totalRequired = tasks.length * crewPlayers.length; + const completed = tasks.reduce((sum, t) => sum + (t.completedBy ? t.completedBy.length : 0), 0); + + const percent = totalRequired > 0 ? (completed / totalRequired) * 100 : 0; + + document.getElementById('task-progress-fill').style.width = percent + '%'; + document.getElementById('task-progress-text').textContent = `${completed}/${totalRequired}`; +} + +function updateBodiesOnMap(bodies) { + if (!bodies) return; + + const existingIds = new Set(); + + bodies.forEach(body => { + existingIds.add(body.victimId); + + if (!bodyMarkers[body.victimId]) { + const icon = L.divIcon({ + className: 'body-marker-container', + html: '
💀
', + iconSize: [24, 24], + iconAnchor: [12, 12] + }); + + bodyMarkers[body.victimId] = L.marker([body.lat, body.lng], { icon }) + .addTo(spectateMap); + } + }); + + // Remove reported bodies + Object.keys(bodyMarkers).forEach(id => { + if (!existingIds.has(id)) { + spectateMap.removeLayer(bodyMarkers[id]); + delete bodyMarkers[id]; + } + }); +} + +function updateSabotage(sabotage) { + const panel = document.getElementById('spectate-sabotage-panel'); + const info = document.getElementById('spectate-sabotage'); + + if (!sabotage) { + panel.style.display = 'none'; + // Clear repair markers + Object.values(repairMarkers).forEach(m => spectateMap.removeLayer(m)); + repairMarkers = {}; + return; + } + + panel.style.display = 'block'; + + let timerHtml = ''; + if (sabotage.deadline) { + const remaining = Math.max(0, Math.floor((new Date(sabotage.deadline) - new Date()) / 1000)); + timerHtml = `
${remaining}s
`; + } + + info.innerHTML = ` +
⚠️ ${sabotage.type}
+ ${timerHtml} + `; + + // Show repair stations + if (sabotage.repairStations) { + sabotage.repairStations.forEach(rs => { + if (!repairMarkers[rs.id]) { + const icon = L.divIcon({ + className: 'repair-marker-container', + html: `
🔧
`, + iconSize: [24, 24], + iconAnchor: [12, 12] + }); + + repairMarkers[rs.id] = L.marker([rs.lat, rs.lng], { icon }).addTo(spectateMap); + } + }); + } +} + +function updateVotes(votes, players, phase) { + const panel = document.getElementById('spectate-votes-panel'); + const display = document.getElementById('spectate-votes'); + + if (phase !== 'Voting' || !votes) { + panel.style.display = 'none'; + return; + } + + panel.style.display = 'block'; + + // Count votes + const voteCounts = {}; + Object.values(votes).forEach(targetId => { + voteCounts[targetId] = (voteCounts[targetId] || 0) + 1; + }); + + // Get player names + const playerNames = {}; + players.forEach(p => playerNames[p.id] = p.name); + + display.innerHTML = Object.entries(voteCounts) + .sort((a, b) => b[1] - a[1]) + .map(([targetId, count]) => ` +
+ ${targetId === 'skip' ? '⏭️ Skip' : playerNames[targetId] || targetId} + ${count} +
+ `).join(''); +} + +function renderBuildings(mapData) { + if (!mapData || !mapData.elements) return; + + mapData.elements + .filter(el => el.type === 'way' && el.tags && (el.tags.building || el.tags.amenity)) + .forEach(way => { + if (way.geometry) { + const coords = way.geometry.map(p => [p.lat, p.lon]); + const polygon = L.polygon(coords, { + color: '#00d4ff', + weight: 1, + fillColor: '#1a1a2e', + fillOpacity: 0.7 + }).addTo(spectateMap); + buildingLayers.push(polygon); + } + }); +} + +// ═══════════════════════════════════════════════════════════════════════════ +// PLAYERS MANAGEMENT +// ═══════════════════════════════════════════════════════════════════════════ + +async function loadPlayers() { + const search = document.getElementById('player-search').value; + + try { + const response = await fetch(`/admin/api/players?search=${encodeURIComponent(search)}`); + const data = await response.json(); + renderPlayersTable(data.players); + } catch (e) { + console.error('Failed to load players:', e); + } +} + +function renderPlayersTable(players) { + const tbody = document.getElementById('players-table-body'); + + if (players.length === 0) { + tbody.innerHTML = 'Žádní hráči online'; + return; + } + + tbody.innerHTML = players.map(p => ` + + ${p.displayName} + ${p.playerId.substring(0, 8)} + ${p.joinCode} + ${p.role} + ${p.state} + ${p.cheatScore} + + + + + `).join(''); +} + +function getCheatScoreClass(score) { + if (score < 10) return 'low'; + if (score < 25) return 'medium'; + return 'high'; +} + +function showKickModal(playerId, playerName) { + kickPlayerId = playerId; + document.getElementById('kick-player-name').textContent = playerName; + document.getElementById('kick-reason').value = ''; + document.getElementById('modal-overlay').classList.add('active'); + document.getElementById('kick-modal').classList.add('active'); +} + +function closeModal() { + document.getElementById('modal-overlay').classList.remove('active'); + document.querySelectorAll('.modal').forEach(m => m.classList.remove('active')); +} + +async function confirmKick() { + const reason = document.getElementById('kick-reason').value || 'Kicked by admin'; + + try { + await fetch('/admin/api/kick', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ playerId: kickPlayerId, reason }) + }); + + closeModal(); + loadPlayers(); + } catch (e) { + alert('Nepodařilo se vyhodit hráče'); + } +} + +// ═══════════════════════════════════════════════════════════════════════════ +// CONFIG +// ═══════════════════════════════════════════════════════════════════════════ + +async function loadConfig() { + try { + const response = await fetch('/admin/api/config'); + const config = await response.json(); + + const form = document.getElementById('config-form'); + Object.entries(config).forEach(([key, value]) => { + const input = form.querySelector(`[name=""${key}""]`); + if (input) input.value = value; + }); + } catch (e) { + console.error('Failed to load config:', e); + } +} + +async function handleConfigSave(e) { + e.preventDefault(); + + const form = e.target; + const formData = new FormData(form); + const config = {}; + + formData.forEach((value, key) => { + config[key] = parseFloat(value) || parseInt(value) || value; + }); + + try { + await fetch('/admin/api/config', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(config) + }); + + alert('Konfigurace uložena!'); + } catch (e) { + alert('Nepodařilo se uložit konfiguraci'); + } +} + +// ═══════════════════════════════════════════════════════════════════════════ +// BROADCAST +// ═══════════════════════════════════════════════════════════════════════════ + +async function loadBroadcastTargets() { + try { + const response = await fetch('/admin/api/lobbies'); + const data = await response.json(); + + const select = document.getElementById('broadcast-target'); + select.innerHTML = '' + + data.lobbies.map(l => ``).join(''); + } catch (e) { + console.error('Failed to load broadcast targets:', e); + } +} + +async function handleBroadcast(e) { + e.preventDefault(); + + const lobbyId = document.getElementById('broadcast-target').value; + const message = document.getElementById('broadcast-message').value; + + if (!message.trim()) { + alert('Zadejte zprávu'); + return; + } + + try { + await fetch('/admin/api/broadcast', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ lobbyId: lobbyId || null, message }) + }); + + document.getElementById('broadcast-message').value = ''; + alert('Zpráva odeslána!'); + } catch (e) { + alert('Nepodařilo se odeslat zprávu'); + } +} + +function showBroadcastModal() { + showView('broadcast'); +} + +// ═══════════════════════════════════════════════════════════════════════════ +// UTILITIES +// ═══════════════════════════════════════════════════════════════════════════ + +function debounce(func, wait) { + let timeout; + return function(...args) { + clearTimeout(timeout); + timeout = setTimeout(() => func.apply(this, args), wait); + }; +}"; +} diff --git a/AntiCheat.cs b/AntiCheat.cs new file mode 100644 index 0000000..a681ed5 --- /dev/null +++ b/AntiCheat.cs @@ -0,0 +1,192 @@ +namespace GeoSus.Server; + +using Microsoft.Extensions.Logging; + +// Anti-cheat validace pohybu +public class AntiCheat +{ + private readonly ServerConfig _config; + private readonly ILogger _logger; + private const int PositionHistorySize = 20; + + public AntiCheat(ServerConfig config, ILogger logger) + { + _config = config; + _logger = logger; + } + + // Validuje pohyb hráče a vrací případné cheat violation + public CheatViolation? ValidateMovement(Player player, Position newPosition) + { + var now = DateTime.UtcNow; + var timeSinceLastUpdate = (now - player.LastPositionUpdate).TotalSeconds; + + // Příliš krátký interval ignorujeme + if (timeSinceLastUpdate < 0.1) + return null; + + var distance = player.Position.DistanceTo(newPosition); + + // Teleport detekce + if (distance > _config.TeleportThresholdMeters) + { + var violation = new CheatViolation + { + Type = CheatViolationType.Teleport, + Description = $"Teleport detekován: {distance:F1}m za {timeSinceLastUpdate:F2}s", + Severity = 10 + }; + + ApplyViolation(player, violation); + return violation; + } + + // Speed check + var speed = distance / timeSinceLastUpdate; + var maxAllowedSpeed = _config.MaxSpeedMps * 1.5; // 50% tolerance + + if (speed > maxAllowedSpeed) + { + var violation = new CheatViolation + { + Type = CheatViolationType.SpeedHack, + Description = $"Podezřelá rychlost: {speed:F1}m/s (max {_config.MaxSpeedMps}m/s)", + Severity = 3 + }; + + ApplyViolation(player, violation); + return violation; + } + + // Historie pro detekci pattern + UpdatePositionHistory(player, newPosition, now); + + // Validace historie - průměrná rychlost za delší období + var historyViolation = ValidatePositionHistory(player); + if (historyViolation != null) + { + ApplyViolation(player, historyViolation); + return historyViolation; + } + + // Pokud je OK, pomalu snižujeme cheat score + if (player.CheatScore > 0 && timeSinceLastUpdate > 1) + { + player.CheatScore = Math.Max(0, player.CheatScore - 1); + UpdateCheatStatus(player); + } + + return null; + } + + private void ApplyViolation(Player player, CheatViolation violation) + { + player.CheatScore += violation.Severity; + + var previousStatus = player.CheatStatus; + UpdateCheatStatus(player); + + if (player.CheatStatus != previousStatus) + { + _logger.LogWarning("Cheat status změněn: {Player} -> {Status} (score: {Score})", + player.ClientUuid, player.CheatStatus, player.CheatScore); + } + + _logger.LogWarning("Cheat violation: {Player} - {Type}: {Description}", + player.ClientUuid, violation.Type, violation.Description); + } + + private void UpdateCheatStatus(Player player) + { + player.CheatStatus = player.CheatScore switch + { + >= 50 => CheatStatus.Kicked, + >= 25 => CheatStatus.Restrict, + >= 10 => CheatStatus.Warn, + _ => CheatStatus.Ok + }; + } + + private void UpdatePositionHistory(Player player, Position position, DateTime time) + { + player.PositionHistory.Enqueue((position, time)); + + while (player.PositionHistory.Count > PositionHistorySize) + { + player.PositionHistory.Dequeue(); + } + } + + private CheatViolation? ValidatePositionHistory(Player player) + { + if (player.PositionHistory.Count < 5) + return null; + + var history = player.PositionHistory.ToArray(); + var first = history[0]; + var last = history[^1]; + + var totalTime = (last.Time - first.Time).TotalSeconds; + if (totalTime < _config.MovementValidationWindowSec) + return null; + + // Spočítáme celkovou ujetou vzdálenost + double totalDistance = 0; + for (int i = 1; i < history.Length; i++) + { + totalDistance += history[i - 1].Pos.DistanceTo(history[i].Pos); + } + + var avgSpeed = totalDistance / totalTime; + + // Pokud průměrná rychlost za celé období překračuje limit + if (avgSpeed > _config.MaxSpeedMps * 1.2) + { + return new CheatViolation + { + Type = CheatViolationType.SustainedSpeedHack, + Description = $"Dlouhodobě vysoká rychlost: {avgSpeed:F1}m/s za {totalTime:F0}s", + Severity = 5 + }; + } + + return null; + } + + // Validace akce - zda hráč může provést danou akci + public bool CanPerformAction(Player player, string actionType) + { + if (player.CheatStatus == CheatStatus.Kicked) + return false; + + if (player.CheatStatus == CheatStatus.Restrict) + { + // Omezené akce pro podezřelé hráče + var restrictedActions = new[] { "TaskComplete", "Kill", "EmergencyMeeting" }; + if (restrictedActions.Contains(actionType)) + { + _logger.LogWarning("Akce {Action} blokována pro hráče {Player} (Restrict status)", + actionType, player.ClientUuid); + return false; + } + } + + return true; + } +} + +public class CheatViolation +{ + public CheatViolationType Type { get; set; } + public required string Description { get; set; } + public int Severity { get; set; } +} + +public enum CheatViolationType +{ + SpeedHack, + Teleport, + SustainedSpeedHack, + ActionSpam, + InvalidAction +} diff --git a/Config.cs b/Config.cs new file mode 100644 index 0000000..f325b08 --- /dev/null +++ b/Config.cs @@ -0,0 +1,171 @@ +namespace GeoSus.Server; + +using System.Text.Json; +using System.Text.Json.Serialization; + +// Konfigurace serveru - všechny herní konstanty +public class ServerConfig +{ + // Síťové + public int TcpPort { get; set; } = 7777; + public int HttpPort { get; set; } = 8088; + public int MaxPacketSizeBytes { get; set; } = 1048576; // 1MB + + // Timing + public int TickMs { get; set; } = 200; + public int PositionBroadcastRateMs { get; set; } = 1000; + + // Pohyb & Anti-Cheat + public double MaxSpeedMps { get; set; } = 12.0; + public double MovementValidationWindowSec { get; set; } = 5.0; + public double TeleportThresholdMeters { get; set; } = 50.0; + public int CheatScoreWarnThreshold { get; set; } = 10; + public int CheatScoreRestrictThreshold { get; set; } = 25; + public int CheatScoreKickThreshold { get; set; } = 50; + + // Zabíjení + public double KillDistanceM { get; set; } = 10.0; + public int KillCooldownMs { get; set; } = 30000; + + // Meetingy + public double MeetingArrivalRadiusM { get; set; } = 15.0; + public int ArrivalBaseMs { get; set; } = 30000; + public int ArrivalSafetyMarginMs { get; set; } = 500; + public int AllowedLateMs { get; set; } = 2000; + public int DiscussionPhaseMs { get; set; } = 30000; + public int VotingPhaseMs { get; set; } = 45000; + + // Emergency meeting + public int EmergencyMeetingCooldownMs { get; set; } = 60000; + public int MaxEmergencyMeetingsPerPlayer { get; set; } = 1; + public double EmergencyMeetingCallRadiusM { get; set; } = 15.0; // Vzdálenost od středu mapy pro svolání emergency meeting + public double ReportDistanceM { get; set; } = 5.0; + + // Tasky + public double TaskStartDistanceM { get; set; } = 3.0; + public int TaskLeaveDebounceMs { get; set; } = 2000; + public int TaskProgressKeepaliveMs { get; set; } = 5000; + + // Persistence + public int SnapshotEvents { get; set; } = 200; + public int SnapshotIntervalMs { get; set; } = 300000; + public int WalMaxSizeMb { get; set; } = 10; + public string DataPath { get; set; } = "data"; + + // Host Migration + public int HostTimeoutMs { get; set; } = 15000; + public int ReconnectWindowMs { get; set; } = 60000; + + // Lobby + public int IdleLobbyTtlMs { get; set; } = 3600000; + public int JoinCodeTtlMs { get; set; } = 86400000; // 24h + public int MaxPlayersPerLobby { get; set; } = 15; + public int JoinRateLimitPerMinute { get; set; } = 10; + + // Security + public int SessionKeySizeBytes { get; set; } = 32; // AES-256 + public int RsaKeySizeBits { get; set; } = 2048; + + // Stats API + public int StatsApiRateLimit { get; set; } = 100; // per minute per IP + public string? StatsApiKey { get; set; } = null; + + // Hra - výchozí hodnoty pro nové lobby + public int DefaultImpostorCount { get; set; } = 1; + public int DefaultTaskCount { get; set; } = 5; + public TiePolicy DefaultTiePolicy { get; set; } = TiePolicy.NoEject; + + // Sabotage system + public int SabotageCooldownMs { get; set; } = 30000; // 30s between sabotages + public int CommsBlackoutDurationMs { get; set; } = 30000; // 30s max duration (or until repaired) + public int CriticalMeltdownDeadlineMs { get; set; } = 45000; // 45s to fix or impostor wins + public double RepairStationDistanceM { get; set; } = 5.0; // Must be within 5m to repair + public int RepairStationHoldMs { get; set; } = 3000; // Must hold for 3s to complete repair + public int SimultaneousRepairWindowMs { get; set; } = 5000; // 5s window for both stations to be repaired + + // Overpass API (Map Data) + public string OverpassApiUrl { get; set; } = "https://overpass-api.de/api/interpreter"; + public int OverpassTimeoutSec { get; set; } = 30; + public int OverpassCacheMaxEntries { get; set; } = 100; + public bool OverpassEnabled { get; set; } = true; + public double MinTaskSpacingMeters { get; set; } = 20.0; // Minimum spacing between tasks + + public static ServerConfig Load(string path) + { + ServerConfig config; + + if (File.Exists(path)) + { + var json = File.ReadAllText(path); + config = JsonSerializer.Deserialize(json, JsonOptions.Default) ?? new ServerConfig(); + } + else + { + config = new ServerConfig(); + } + + // Override z environment variables (pro Docker) + config.ApplyEnvironmentOverrides(); + + return config; + } + + /// + /// Aplikuje override hodnot z environment variables. + /// Prefix: GEOSUS_ + /// Příklady: GEOSUS_TCP_PORT=7777, GEOSUS_HTTP_PORT=8088 + /// + private void ApplyEnvironmentOverrides() + { + // Síťové + if (int.TryParse(Environment.GetEnvironmentVariable("GEOSUS_TCP_PORT"), out var tcpPort)) + TcpPort = tcpPort; + if (int.TryParse(Environment.GetEnvironmentVariable("GEOSUS_HTTP_PORT"), out var httpPort)) + HttpPort = httpPort; + + // Data path + var dataPath = Environment.GetEnvironmentVariable("GEOSUS_DATA_PATH"); + if (!string.IsNullOrEmpty(dataPath)) + DataPath = dataPath; + + // Overpass API + var overpassUrl = Environment.GetEnvironmentVariable("GEOSUS_OVERPASS_URL"); + if (!string.IsNullOrEmpty(overpassUrl)) + OverpassApiUrl = overpassUrl; + + // Stats API key + var apiKey = Environment.GetEnvironmentVariable("GEOSUS_API_KEY"); + if (!string.IsNullOrEmpty(apiKey)) + StatsApiKey = apiKey; + } + + public void Save(string path) + { + var json = JsonSerializer.Serialize(this, JsonOptions.Indented); + File.WriteAllText(path, json); + } +} + +public enum TiePolicy +{ + NoEject, + Random, + EjectLowestId +} + +public static class JsonOptions +{ + public static readonly JsonSerializerOptions Default = new() + { + PropertyNamingPolicy = JsonNamingPolicy.CamelCase, + Converters = { new JsonStringEnumConverter() }, + WriteIndented = false + }; + + public static readonly JsonSerializerOptions Indented = new() + { + PropertyNamingPolicy = JsonNamingPolicy.CamelCase, + Converters = { new JsonStringEnumConverter() }, + WriteIndented = true + }; +} diff --git a/DOCKER.md b/DOCKER.md new file mode 100644 index 0000000..d644bf8 --- /dev/null +++ b/DOCKER.md @@ -0,0 +1,180 @@ +# GeoSus Server - Docker Deployment + +## Rychlý start + +```bash +# Build image +docker build -t geosus-server . + +# Spusť kontejner +docker run -d \ + --name geosus \ + -p 7777:7777 \ + -p 8088:8088 \ + -v geosus-data:/app/data \ + geosus-server +``` + +## Docker Compose (doporučeno) + +```bash +# Spuštění +docker-compose up -d + +# Sledování logů +docker-compose logs -f + +# Zastavení +docker-compose down + +# Zastavení včetně smazání dat +docker-compose down -v +``` + +## Porty + +| Port | Protokol | Popis | +|------|----------|-------| +| 7777 | TCP | Herní komunikace (binární protokol s šifrováním) | +| 8088 | HTTP | Stats REST API | + +## Environment Variables + +| Proměnná | Výchozí | Popis | +|----------|---------|-------| +| `GEOSUS_TCP_PORT` | 7777 | TCP port pro herní komunikaci | +| `GEOSUS_HTTP_PORT` | 8088 | HTTP port pro Stats API | +| `GEOSUS_DATA_PATH` | data | Cesta k datové složce | +| `GEOSUS_OVERPASS_URL` | https://mapz.honzuvkod.dev/api/interpreter | URL Overpass API pro mapová data | +| `GEOSUS_API_KEY` | (none) | API klíč pro Stats API (volitelné) | +| `DOTNET_ENVIRONMENT` | Production | Prostředí (.NET) | + +## Volumes + +- `/app/data` - Herní data (lobby, statistiky SQLite) + +## Health Check + +Server poskytuje health endpoint: + +```bash +curl http://localhost:8088/health +``` + +Odpověď: +```json +{ + "status": "ok", + "version": "1.0.0", + "uptimeSeconds": 3600, + "activeLobbies": 2, + "connectedPlayers": 15 +} +``` + +## Vlastní konfigurace + +Můžeš připojit vlastní `appsettings.json`: + +```bash +docker run -d \ + --name geosus \ + -p 7777:7777 \ + -p 8088:8088 \ + -v geosus-data:/app/data \ + -v ./my-settings.json:/app/appsettings.json:ro \ + geosus-server +``` + +## Logování + +```bash +# Živé logy +docker logs -f geosus + +# Posledních 100 řádků +docker logs --tail 100 geosus +``` + +## Firewall + +Nezapomeň otevřít porty na firewallu: + +```bash +# UFW (Ubuntu) +sudo ufw allow 7777/tcp +sudo ufw allow 8088/tcp + +# firewalld (CentOS/RHEL) +sudo firewall-cmd --permanent --add-port=7777/tcp +sudo firewall-cmd --permanent --add-port=8088/tcp +sudo firewall-cmd --reload +``` + +## Reverse Proxy (volitelné) + +Pro HTTPS můžeš použít nginx jako reverse proxy: + +```nginx +server { + listen 443 ssl; + server_name geosus.example.com; + + ssl_certificate /path/to/cert.pem; + ssl_certificate_key /path/to/key.pem; + + # Stats API + location /api/ { + proxy_pass http://localhost:8088/; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + } +} + +# TCP proxy pro herní komunikaci (stream modul) +stream { + server { + listen 7777; + proxy_pass localhost:7777; + } +} +``` + +## Aktualizace + +```bash +# Stáhni nový kód +git pull + +# Rebuild a restart +docker-compose down +docker-compose build --no-cache +docker-compose up -d +``` + +## Troubleshooting + +### Port je obsazený +```bash +# Zjisti co používá port +sudo netstat -tlnp | grep 7777 +sudo lsof -i :7777 +``` + +### Kontejner padá +```bash +# Zkontroluj logy +docker logs geosus + +# Interaktivní shell +docker run -it --rm geosus-server /bin/bash +``` + +### Problémy s daty +```bash +# Zkontroluj volume +docker volume inspect geosus-data + +# Backup dat +docker cp geosus:/app/data ./backup +``` diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1c3290a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,58 @@ +# ═══════════════════════════════════════════════════════════════════════════ +# GeoSus Server Dockerfile +# ═══════════════════════════════════════════════════════════════════════════ +# Multi-stage build pro optimální velikost image +# +# Build: docker build -t geosus-server . +# Run: docker run -d -p 7777:7777 -p 8088:8088 --name geosus geosus-server +# ═══════════════════════════════════════════════════════════════════════════ + +# ───────────────────────────────────────────────────────────────────────────── +# STAGE 1: Build +# ───────────────────────────────────────────────────────────────────────────── +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build +WORKDIR /src + +# Kopíruj pouze csproj pro využití cache vrstev +COPY Server.csproj ./ +RUN dotnet restore + +# Kopíruj zbytek zdrojáků a builduj +COPY . ./ +RUN dotnet publish -c Release -o /app + +# ───────────────────────────────────────────────────────────────────────────── +# STAGE 2: Runtime +# ───────────────────────────────────────────────────────────────────────────── +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS runtime +WORKDIR /app + +# Vytvoř uživatele bez root práv +RUN groupadd -r geosus && useradd -r -g geosus geosus + +# Kopíruj build output +COPY --from=build /app ./ + +# Vytvoř složku pro data s právy +RUN mkdir -p /app/data && chown -R geosus:geosus /app + +# Přepni na non-root uživatele +USER geosus + +# Exponuj porty +# TCP 7777 - Herní komunikace (binární protokol) +# HTTP 8088 - Stats REST API +EXPOSE 7777 +EXPOSE 8088 + +# Health check +HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ + CMD curl -f http://localhost:8088/health || exit 1 + +# Environment variables pro konfiguraci +ENV DOTNET_ENVIRONMENT=Production +ENV GEOSUS_TCP_PORT=7777 +ENV GEOSUS_HTTP_PORT=8088 + +# Spuštění +ENTRYPOINT ["dotnet", "Server.dll"] diff --git a/Encryption.cs b/Encryption.cs new file mode 100644 index 0000000..9997ea5 --- /dev/null +++ b/Encryption.cs @@ -0,0 +1,181 @@ +namespace GeoSus.Server; + +using System.Security.Cryptography; +using System.Text; + +// Šifrování komunikace - RSA handshake + AES-256-CBC session (kompatibilní s Unity) +public class ServerEncryption : IDisposable +{ + private readonly RSA _rsa; + private readonly string _publicKeyPem; + + public ServerEncryption(int keySizeBits = 2048) + { + _rsa = RSA.Create(keySizeBits); + _publicKeyPem = ExportPublicKeyPem(); + } + + public string PublicKeyPem => _publicKeyPem; + + // Dešifruje session key od klienta + public (byte[] Key, byte[] IV) DecryptSessionKey(string encryptedKeyBase64, string encryptedIvBase64) + { + var encryptedKey = Convert.FromBase64String(encryptedKeyBase64); + var encryptedIv = Convert.FromBase64String(encryptedIvBase64); + + // Používáme OaepSHA1 pro Unity kompatibilitu + var key = _rsa.Decrypt(encryptedKey, RSAEncryptionPadding.OaepSHA1); + var iv = _rsa.Decrypt(encryptedIv, RSAEncryptionPadding.OaepSHA1); + + return (key, iv); + } + + private string ExportPublicKeyPem() + { + var publicKey = _rsa.ExportSubjectPublicKeyInfo(); + var base64 = Convert.ToBase64String(publicKey); + var sb = new StringBuilder(); + sb.AppendLine("-----BEGIN PUBLIC KEY-----"); + for (int i = 0; i < base64.Length; i += 64) + { + sb.AppendLine(base64.Substring(i, Math.Min(64, base64.Length - i))); + } + sb.AppendLine("-----END PUBLIC KEY-----"); + return sb.ToString(); + } + + public void Dispose() + { + _rsa.Dispose(); + } +} + +// Session šifrování pro konkrétní klientské spojení - AES-256-CBC + HMAC-SHA256 +public class SessionCrypto : IDisposable +{ + private readonly byte[] _key; + private readonly object _lock = new(); + + public SessionCrypto(byte[] key, byte[] iv) + { + if (key.Length != 32) + throw new ArgumentException("Key musí být 32 bajtů pro AES-256"); + if (iv.Length != 16) + throw new ArgumentException("IV musí být 16 bajtů pro AES-CBC"); + + _key = key; + // IV se nepoužívá přímo - každá zpráva má svůj unikátní IV + } + + // Šifruje zprávu s AES-CBC a HMAC + public byte[] Encrypt(byte[] plaintext) + { + lock (_lock) + { + using var aes = Aes.Create(); + aes.Key = _key; + aes.Mode = CipherMode.CBC; + aes.Padding = PaddingMode.PKCS7; + aes.GenerateIV(); // Generujeme nový IV pro každou zprávu + + byte[] ciphertext; + using (var encryptor = aes.CreateEncryptor()) + { + ciphertext = encryptor.TransformFinalBlock(plaintext, 0, plaintext.Length); + } + + // Počítáme HMAC přes IV + ciphertext (používáme AES klíč pro HMAC) + byte[] hmac; + using (var hmacSha = new HMACSHA256(_key)) + { + var dataToSign = new byte[aes.IV.Length + ciphertext.Length]; + Buffer.BlockCopy(aes.IV, 0, dataToSign, 0, aes.IV.Length); + Buffer.BlockCopy(ciphertext, 0, dataToSign, aes.IV.Length, ciphertext.Length); + hmac = hmacSha.ComputeHash(dataToSign); + } + + // Výstup: [16 bytes IV][32 bytes HMAC][ciphertext] + var result = new byte[16 + 32 + ciphertext.Length]; + Buffer.BlockCopy(aes.IV, 0, result, 0, 16); + Buffer.BlockCopy(hmac, 0, result, 16, 32); + Buffer.BlockCopy(ciphertext, 0, result, 48, ciphertext.Length); + + return result; + } + } + + // Dešifruje zprávu a validuje HMAC + public byte[]? Decrypt(byte[] encrypted) + { + if (encrypted.Length < 48) return null; // 16 IV + 32 HMAC + min data + + try + { + var iv = new byte[16]; + var receivedHmac = new byte[32]; + var ciphertext = new byte[encrypted.Length - 48]; + + Buffer.BlockCopy(encrypted, 0, iv, 0, 16); + Buffer.BlockCopy(encrypted, 16, receivedHmac, 0, 32); + Buffer.BlockCopy(encrypted, 48, ciphertext, 0, ciphertext.Length); + + // Ověříme HMAC (používáme AES klíč pro HMAC) + byte[] computedHmac; + using (var hmacSha = new HMACSHA256(_key)) + { + var dataToVerify = new byte[16 + ciphertext.Length]; + Buffer.BlockCopy(iv, 0, dataToVerify, 0, 16); + Buffer.BlockCopy(ciphertext, 0, dataToVerify, 16, ciphertext.Length); + computedHmac = hmacSha.ComputeHash(dataToVerify); + } + + // Constant-time porovnání + if (!CryptographicOperations.FixedTimeEquals(receivedHmac, computedHmac)) + { + return null; // HMAC mismatch - zpráva byla změněna + } + + // Dešifrujeme + using var aes = Aes.Create(); + aes.Key = _key; + aes.IV = iv; + aes.Mode = CipherMode.CBC; + aes.Padding = PaddingMode.PKCS7; + + using var decryptor = aes.CreateDecryptor(); + return decryptor.TransformFinalBlock(ciphertext, 0, ciphertext.Length); + } + catch (CryptographicException) + { + return null; + } + } + + public void Dispose() + { + Array.Clear(_key, 0, _key.Length); + } +} + +// Klientská strana - generuje session key a šifruje ho RSA public key +public static class ClientEncryptionHelper +{ + public static (byte[] Key, byte[] IV) GenerateSessionKey() + { + var key = RandomNumberGenerator.GetBytes(32); // AES-256 + var iv = RandomNumberGenerator.GetBytes(16); // AES-CBC IV (16 bytes) + return (key, iv); + } + + public static (string EncryptedKey, string EncryptedIV) EncryptSessionKey( + string rsaPublicKeyPem, byte[] key, byte[] iv) + { + using var rsa = RSA.Create(); + rsa.ImportFromPem(rsaPublicKeyPem); + + var encryptedKey = rsa.Encrypt(key, RSAEncryptionPadding.OaepSHA256); + var encryptedIv = rsa.Encrypt(iv, RSAEncryptionPadding.OaepSHA256); + + return (Convert.ToBase64String(encryptedKey), Convert.ToBase64String(encryptedIv)); + } +} diff --git a/GameLogic.cs b/GameLogic.cs new file mode 100644 index 0000000..b5a32e9 --- /dev/null +++ b/GameLogic.cs @@ -0,0 +1,508 @@ +namespace GeoSus.Server; + +using Microsoft.Extensions.Logging; +using System.Threading.Channels; +using System.Security.Cryptography; + +// Herní logika - kill, meeting, voting, tasks +public class GameLogic +{ + private readonly ServerConfig _config; + private readonly ILogger _logger; + private readonly OverpassService? _overpassService; + private readonly Random _random = new Random(); // Sdílená instance pro lepší náhodnost + + public GameLogic(ServerConfig config, ILogger logger, OverpassService? overpassService = null) + { + _config = config; + _logger = logger; + _overpassService = overpassService; + } + + #region Zabíjení + + public (bool Success, string? Error, Body? Body) TryKill( + Player killer, Player victim, Dictionary players, List bodies) + { + // Validace - killer musí být impostor a alive + if (killer.Role != PlayerRole.Impostor) + return (false, "Nejsi impostor", null); + + if (killer.State != PlayerState.Alive) + return (false, "Jsi mrtvý", null); + + if (victim.State != PlayerState.Alive) + return (false, "Oběť je již mrtvá", null); + + // Cooldown kontrola + if (killer.LastKillTime.HasValue) + { + var elapsed = (DateTime.UtcNow - killer.LastKillTime.Value).TotalMilliseconds; + if (elapsed < _config.KillCooldownMs) + { + var remaining = (_config.KillCooldownMs - elapsed) / 1000; + return (false, $"Cooldown: {remaining:F1}s", null); + } + } + + // Vzdálenost + var distance = killer.Position.DistanceTo(victim.Position); + if (distance > _config.KillDistanceM) + return (false, $"Příliš daleko ({distance:F1}m)", null); + + // Kill úspěšný + victim.State = PlayerState.Dead; + killer.LastKillTime = DateTime.UtcNow; + + var body = new Body + { + BodyId = Guid.NewGuid().ToString("N")[..8], + VictimId = victim.ClientUuid, + KillerId = killer.ClientUuid, + Location = victim.Position, + KilledAt = DateTime.UtcNow + }; + + bodies.Add(body); + + _logger.LogInformation("Kill: {Killer} zabil {Victim}, body {BodyId}", + killer.ClientUuid, victim.ClientUuid, body.BodyId); + + return (true, null, body); + } + + #endregion + + #region Reporty a meetingy + + public (bool Success, string? Error, Body? Body) TryReportBody( + Player reporter, string bodyId, List bodies) + { + if (reporter.State != PlayerState.Alive) + return (false, "Jsi mrtvý", null); + + var body = bodies.FirstOrDefault(b => b.BodyId == bodyId); + if (body == null) + return (false, "Tělo neexistuje", null); + + if (body.Reported) + return (false, "Tělo již bylo reportnuto", null); + + // Vzdálenost + var distance = reporter.Position.DistanceTo(body.Location); + if (distance > _config.ReportDistanceM) + return (false, $"Příliš daleko ({distance:F1}m)", null); + + body.Reported = true; + body.ReportedBy = reporter.ClientUuid; + + _logger.LogInformation("Report: {Reporter} reportnul tělo {BodyId}", + reporter.ClientUuid, bodyId); + + return (true, null, body); + } + + public (bool Success, string? Error) TryCallEmergencyMeeting( + Player caller, int maxMeetings, int cooldownMs) + { + if (caller.State != PlayerState.Alive) + return (false, "Jsi mrtvý"); + + // Limit na počet emergency meetings + if (caller.EmergencyMeetingsUsed >= maxMeetings) + return (false, $"Vyčerpal jsi emergency meetingy ({maxMeetings})"); + + // Cooldown + if (caller.LastEmergencyMeetingTime.HasValue) + { + var elapsed = (DateTime.UtcNow - caller.LastEmergencyMeetingTime.Value).TotalMilliseconds; + if (elapsed < cooldownMs) + { + var remaining = (cooldownMs - elapsed) / 1000; + return (false, $"Cooldown: {remaining:F1}s"); + } + } + + caller.EmergencyMeetingsUsed++; + caller.LastEmergencyMeetingTime = DateTime.UtcNow; + + _logger.LogInformation("Emergency meeting: {Caller}", caller.ClientUuid); + + return (true, null); + } + + public Meeting StartMeeting( + MeetingType type, string callerId, Position meetingLocation, + string? reportedBodyId, int arrivalBaseMs, int votingPhaseMs, int discussionPhaseMs) + { + var now = DateTime.UtcNow; + + return new Meeting + { + MeetingId = Guid.NewGuid().ToString("N")[..8], + Type = type, + CallerId = callerId, + ReportedBodyId = reportedBodyId, + MeetingLocation = meetingLocation, + StartTime = now, + ArrivalDeadline = now.AddMilliseconds(arrivalBaseMs + _config.ArrivalSafetyMarginMs), + DiscussionEndTime = discussionPhaseMs > 0 ? now.AddMilliseconds(arrivalBaseMs + discussionPhaseMs) : null, + VotingEndTime = now.AddMilliseconds(arrivalBaseMs + discussionPhaseMs + votingPhaseMs) + }; + } + + public bool CheckPlayerArrival(Player player, Meeting meeting) + { + if (player.State != PlayerState.Alive) + return false; + + var distance = player.Position.DistanceTo(meeting.MeetingLocation); + var now = DateTime.UtcNow; + + // Grace period + var deadline = meeting.ArrivalDeadline.AddMilliseconds(_config.AllowedLateMs); + + if (now <= deadline && distance <= _config.MeetingArrivalRadiusM) + { + meeting.ArrivedPlayers.Add(player.ClientUuid); + return true; + } + + return false; + } + + #endregion + + #region Hlasování + + public (bool Success, string? Error) TryCastVote( + Player voter, string? targetId, Meeting meeting, Dictionary players) + { + if (voter.State != PlayerState.Alive) + return (false, "Jsi mrtvý"); + + if (!meeting.ArrivedPlayers.Contains(voter.ClientUuid)) + return (false, "Nedorazil jsi včas na meeting"); + + var now = DateTime.UtcNow; + + // Kontrola fáze - musíme být ve voting fázi + if (meeting.DiscussionEndTime.HasValue && now < meeting.DiscussionEndTime.Value) + return (false, "Ještě probíhá diskuze"); + + if (now > meeting.VotingEndTime) + return (false, "Hlasování skončilo"); + + // Rate limit na změny hlasu + if (meeting.Votes.ContainsKey(voter.ClientUuid) && meeting.LastVoteChangeTime.HasValue) + { + var sinceLastChange = (now - meeting.LastVoteChangeTime.Value).TotalMilliseconds; + if (sinceLastChange < 2000) + return (false, "Příliš rychlá změna hlasu"); + } + + // Validace targetu + if (targetId != null) + { + if (!players.TryGetValue(targetId, out var target)) + return (false, "Neplatný cíl hlasu"); + if (target.State != PlayerState.Alive) + return (false, "Cíl je mrtvý"); + } + + meeting.Votes[voter.ClientUuid] = targetId; + meeting.LastVoteChangeTime = now; + + return (true, null); + } + + public (string? EjectedId, bool WasTie, Dictionary VoteCounts) ResolveVoting( + Meeting meeting, Dictionary players, TiePolicy tiePolicy) + { + var voteCounts = new Dictionary(); + var skipCount = 0; + + foreach (var (voterId, targetId) in meeting.Votes) + { + if (targetId == null) + { + skipCount++; + } + else + { + voteCounts.TryAdd(targetId, 0); + voteCounts[targetId]++; + } + } + + voteCounts["__SKIP__"] = skipCount; + + // Najdeme maximum + var maxVotes = voteCounts.Values.Max(); + var topVoted = voteCounts.Where(kv => kv.Value == maxVotes).Select(kv => kv.Key).ToList(); + + // Kontrola remízy + if (topVoted.Count > 1 || topVoted.Contains("__SKIP__")) + { + // Remíza nebo skip vyhrál + switch (tiePolicy) + { + case TiePolicy.NoEject: + return (null, topVoted.Count > 1, voteCounts); + + case TiePolicy.Random: + if (topVoted.Contains("__SKIP__")) + topVoted.Remove("__SKIP__"); + if (topVoted.Count > 0) + { + var random = new Random(); + var ejected = topVoted[random.Next(topVoted.Count)]; + return (ejected, true, voteCounts); + } + return (null, true, voteCounts); + + case TiePolicy.EjectLowestId: + if (topVoted.Contains("__SKIP__")) + topVoted.Remove("__SKIP__"); + if (topVoted.Count > 0) + { + var ejected = topVoted.OrderBy(id => id).First(); + return (ejected, true, voteCounts); + } + return (null, true, voteCounts); + + default: + return (null, topVoted.Count > 1, voteCounts); + } + } + + var winner = topVoted[0]; + if (winner == "__SKIP__") + return (null, false, voteCounts); + + return (winner, false, voteCounts); + } + + public void EjectPlayer(Player player) + { + player.State = PlayerState.Dead; + _logger.LogInformation("Ejected: {Player}", player.ClientUuid); + } + + #endregion + + #region Tasky + + /// + /// Pokusí se dokončit task. Kontroluje: + /// - Hráč je naživu + /// - Není impostor + /// - Task existuje a patří hráči + /// - Task ještě není dokončen + /// - Hráč je dostatečně blízko + /// Poznámka: Duchové (mrtví hráči) MOHOU plnit úkoly - to je důležité pro crew! + /// + public (bool Success, string? Error) TryCompleteTask(Player player, string taskId) + { + // Duchové mohou plnit úkoly - neblokujeme mrtvé hráče + // Ale musí být crew role + if (player.Role == PlayerRole.Impostor) + return (false, "Impostoři nemohou dělat tasky"); + + var task = player.Tasks.FirstOrDefault(t => t.TaskId == taskId); + if (task == null) + return (false, "Tento task ti nepatří"); + + if (player.CompletedTaskIds.Contains(taskId)) + return (false, "Task již dokončen"); + + // Kontrola vzdálenosti + var distance = player.Position.DistanceTo(task.Location); + if (distance > _config.TaskStartDistanceM) + return (false, $"Příliš daleko ({distance:F1}m, max {_config.TaskStartDistanceM}m)"); + + // Dokončit task + player.CompletedTaskIds.Add(taskId); + + _logger.LogInformation("Task completed: {Player} dokončil {Task} na pozici {Pos} (vzdálenost {Dist:F1}m)", + player.ClientUuid, task.Name, task.Location, distance); + + return (true, null); + } + + /// + /// Najde nejbližší nedokončený task hráče + /// + public GameTask? FindNearestTask(Player player, double maxDistance) + { + return player.Tasks + .Where(t => !player.CompletedTaskIds.Contains(t.TaskId)) + .Where(t => player.Position.DistanceTo(t.Location) <= maxDistance) + .OrderBy(t => player.Position.DistanceTo(t.Location)) + .FirstOrDefault(); + } + + #endregion + + #region Win conditions + + public (bool GameOver, string? WinningFaction, string? Reason) CheckWinConditions( + Dictionary players, List tasks) + { + var aliveCrew = players.Values.Count(p => p.State == PlayerState.Alive && p.Role == PlayerRole.Crew); + var aliveImpostors = players.Values.Count(p => p.State == PlayerState.Alive && p.Role == PlayerRole.Impostor); + + // Impostoři vyhráli - mají většinu nebo rovnost + if (aliveImpostors >= aliveCrew && aliveCrew > 0) + { + return (true, "Impostor", "Impostoři mají převahu"); + } + + // Všichni impostoři mrtví + if (aliveImpostors == 0) + { + return (true, "Crew", "Všichni impostoři eliminováni"); + } + + // Všechny tasky hotové (počítáme pouze crew tasky) + var crewPlayers = players.Values.Where(p => p.Role == PlayerRole.Crew).ToList(); + var totalTasks = crewPlayers.Sum(p => p.Tasks.Count); + var completedTasks = crewPlayers.Sum(p => p.CompletedTaskIds.Count); + + if (totalTasks > 0 && completedTasks >= totalTasks) + { + return (true, "Crew", "Všechny tasky dokončeny"); + } + + return (false, null, null); + } + + #endregion + + #region Role assignment + + public void AssignRoles(List players, int impostorCount) + { + if (players.Count < 2) + { + // Minimálně 2 hráči + foreach (var p in players) + p.Role = PlayerRole.Crew; + return; + } + + // Omezení počtu impostorů + var maxImpostors = Math.Max(1, players.Count / 3); + impostorCount = Math.Min(impostorCount, maxImpostors); + impostorCount = Math.Min(impostorCount, players.Count - 1); + + // Náhodně vybereme impostory + var shuffled = players.OrderBy(_ => RandomNumberGenerator.GetInt32(int.MaxValue)).ToList(); + + for (int i = 0; i < players.Count; i++) + { + shuffled[i].Role = i < impostorCount ? PlayerRole.Impostor : PlayerRole.Crew; + shuffled[i].State = PlayerState.Alive; + shuffled[i].EmergencyMeetingsUsed = 0; + shuffled[i].LastEmergencyMeetingTime = null; + shuffled[i].LastKillTime = null; + shuffled[i].CompletedTaskIds.Clear(); + shuffled[i].CurrentTaskId = null; + } + + _logger.LogInformation("Roles assigned: {ImpostorCount} impostorů z {TotalPlayers} hráčů", + impostorCount, players.Count); + } + + public List GenerateTasks(int count, Position center, double radius, MapData? mapData = null, int startIndex = 0) + { + var tasks = new List(); + + var taskNames = new[] { + "Opravit kabel", "Zkalibrovat senzor", "Stáhnout data", + "Nabít baterii", "Vyčistit filtr", "Nastavit kompas", + "Opravit antenu", "Zkontrolovat zásoby", "Otestovat reaktor" + }; + + // Get task positions - use map data if available + List positions; + + if (mapData != null && _overpassService != null && mapData.ReachablePositions.Count >= count) + { + positions = _overpassService.GetPOIBasedPositions(mapData, count, _random); + _logger.LogInformation("Generated {Count} positions for tasks using map data", positions.Count); + } + else + { + positions = GenerateRandomPositions(count, center, radius, _random); + _logger.LogDebug("Generated {Count} positions for tasks using random fallback", positions.Count); + } + + for (int i = 0; i < count && i < positions.Count; i++) + { + string taskId = $"task_{startIndex + i}"; + string taskName = taskNames[(startIndex + i) % taskNames.Length]; + + tasks.Add(new GameTask + { + TaskId = taskId, + Name = taskName, + Location = positions[i], + Type = TaskType.Instant + }); + } + + return tasks; + } + + private List GenerateRandomPositions(int count, Position center, double radius, Random random) + { + var positions = new List(); + + for (int i = 0; i < count; i++) + { + // Náhodná pozice v kruhu + var angle = random.NextDouble() * 2 * Math.PI; + var distance = random.NextDouble() * radius * 0.8; // 80% radius aby nebyly na kraji + var lat = center.Lat + (distance / 111000) * Math.Cos(angle); + var lon = center.Lon + (distance / (111000 * Math.Cos(center.Lat * Math.PI / 180))) * Math.Sin(angle); + positions.Add(new Position(lat, lon)); + } + + return positions; + } + + /// + /// Generate repair station positions using map data for reachability + /// + public List GenerateRepairStationPositions(int count, Position center, double radius, MapData? mapData = null) + { + if (mapData != null && _overpassService != null && mapData.ReachablePositions.Count >= count) + { + // Get well-distributed reachable positions + var positions = _overpassService.GetDistributedReachablePositions( + mapData, count, _random, _config.MinTaskSpacingMeters * 2); + + if (positions.Count >= count) + { + _logger.LogInformation("Generated {Count} repair station positions using map data", positions.Count); + return positions; + } + } + + // Fallback: opposite ends of play area + var result = new List(); + for (int i = 0; i < count; i++) + { + var angle = (2 * Math.PI * i) / count; + var dist = radius * 0.7; + var lat = center.Lat + (dist * Math.Cos(angle)) / 111000.0; + var lon = center.Lon + (dist * Math.Sin(angle)) / (111000.0 * Math.Cos(center.Lat * Math.PI / 180)); + result.Add(new Position(lat, lon)); + } + + return result; + } + + #endregion +} diff --git a/LobbyActor.cs b/LobbyActor.cs new file mode 100644 index 0000000..b8abbd2 --- /dev/null +++ b/LobbyActor.cs @@ -0,0 +1,1981 @@ +namespace GeoSus.Server; + +using Microsoft.Extensions.Logging; +using System.Threading.Channels; + +// Per-lobby actor - single-threaded zpracování všech mutací +public class LobbyActor : IDisposable +{ + private readonly string _lobbyId; + private readonly ServerConfig _config; + private readonly ILogger _logger; + private readonly StatsDb _statsDb; + private readonly Persistence _persistence; + private readonly GameLogic _gameLogic; + private readonly AntiCheat _antiCheat; + private readonly OverpassService? _overpassService; + + // Actor channel - deterministic single-threaded processing + private readonly Channel _actionChannel; + private readonly CancellationTokenSource _cts = new(); + private readonly Task _processingTask; + + // State + private readonly Dictionary _players = new(); + private readonly Dictionary _connections = new(); + private readonly List _bodies = new(); + private readonly List _tasks = new(); + private Meeting? _currentMeeting; + private Sabotage? _currentSabotage; + private DateTime? _lastSabotageTime; + private GamePhase _phase = GamePhase.Lobby; + private long _eventId; + private long _serverSeq; + private DateTime _lastActivity = DateTime.UtcNow; + private int _snapshotEventCounter; + private DateTime _lastSnapshotTime = DateTime.UtcNow; + + // Map data loading tracking + private readonly HashSet _playersWithMapData = new(); + + public LobbySettings Settings { get; } + public GamePhase Phase => _phase; + public int PlayerCount => _players.Count; + public DateTime LastActivity => _lastActivity; + public DateTime CreatedAt { get; } = DateTime.UtcNow; + + // Admin panel properties + public string LobbyId => _lobbyId; + public string JoinCode => Settings.JoinCode; + public DateTime? PhaseEndTime { get; private set; } + public Sabotage? ActiveSabotage => _currentSabotage; + public MapData? MapData => Settings.MapData; + + public LobbyActor( + string lobbyId, + LobbySettings settings, + ServerConfig config, + ILogger logger, + StatsDb statsDb, + Persistence persistence, + OverpassService? overpassService = null) + { + _lobbyId = lobbyId; + Settings = settings; + _config = config; + _logger = logger; + _statsDb = statsDb; + _persistence = persistence; + _overpassService = overpassService; + _gameLogic = new GameLogic(config, logger, overpassService); + _antiCheat = new AntiCheat(config, logger); + + // Emergency meeting location = center of play area + Settings.EmergencyMeetingLocation = Settings.PlayAreaCenter; + + _actionChannel = Channel.CreateUnbounded(new UnboundedChannelOptions + { + SingleReader = true, + SingleWriter = false + }); + + _processingTask = Task.Run(ProcessActionsAsync); + + _logger.LogInformation("LobbyActor vytvořen: {LobbyId}", lobbyId); + } + + #region Public API - thread-safe enqueue + + public async Task AddPlayerAsync(string clientUuid, string displayName, bool isOwner) + { + var completion = new TaskCompletionSource(TaskCreationOptions.RunContinuationsAsynchronously); + await EnqueueAsync(new AddPlayerAction + { + ClientUuid = clientUuid, + DisplayName = displayName, + IsOwner = isOwner, + Completion = completion + }); + // Čekáme na dokončení zpracování akce + await completion.Task; + } + + public void RegisterConnection(string clientUuid, ClientConnection connection) + { + _connections[clientUuid] = connection; + } + + public void UnregisterConnection(string clientUuid) + { + _connections.TryRemove(clientUuid, out _); + } + + public async Task HandleMessageAsync(string clientUuid, Message message) + { + _lastActivity = DateTime.UtcNow; + + await EnqueueAsync(new HandleMessageAction + { + ClientUuid = clientUuid, + Message = message + }); + } + + public async Task RemovePlayerAsync(string clientUuid, string? reason = null) + { + await EnqueueAsync(new RemovePlayerAction + { + ClientUuid = clientUuid, + Reason = reason + }); + } + + public LobbyState GetLobbyState() + { + return new LobbyState + { + LobbyId = _lobbyId, + JoinCode = Settings.JoinCode, + OwnerId = _players.Values.FirstOrDefault(p => p.IsOwner)?.ClientUuid, + Phase = _phase, + Players = _players.Values.Select(p => new PlayerInfo + { + ClientUuid = p.ClientUuid, + DisplayName = p.DisplayName, + IsOwner = p.IsOwner, + IsReady = p.IsReady, + State = p.State + }).ToList(), + PlayAreaCenter = Settings.PlayAreaCenter, + PlayAreaRadius = Settings.PlayAreaRadius, + ImpostorCount = Settings.ImpostorCount, + HasPassword = !string.IsNullOrEmpty(Settings.Password), + CreatedAt = _lastActivity, + MapData = Settings.MapDataPayload, + MapDataReady = Settings.MapDataPayload != null || !Settings.OverpassEnabled + }; + } + + /// + /// Get all players for admin panel spectate view + /// + public IEnumerable GetPlayers() + { + return _players.Values.Select(p => new AdminPlayerInfo + { + PlayerId = p.ClientUuid, + DisplayName = p.DisplayName, + State = p.State, + Role = p.Role, + Position = p.Position, + IsHost = p.IsOwner, + CheatScore = p.CheatScore, + KillCooldownEnd = p.LastKillTime?.AddMilliseconds(_config.KillCooldownMs), + VotedFor = _currentMeeting?.Votes.TryGetValue(p.ClientUuid, out var vote) == true ? vote : null + }); + } + + /// + /// Get all tasks for admin panel spectate view + /// + public IEnumerable GetTasks() + { + // Build completed by sets from player data + var completedByTask = new Dictionary>(); + foreach (var player in _players.Values) + { + foreach (var taskId in player.CompletedTaskIds) + { + if (!completedByTask.ContainsKey(taskId)) + completedByTask[taskId] = new HashSet(); + completedByTask[taskId].Add(player.ClientUuid); + } + } + + return _tasks.Select(t => new AdminTaskInfo + { + TaskId = t.TaskId, + Name = t.Name, + Location = t.Location, + CompletedBy = completedByTask.TryGetValue(t.TaskId, out var set) ? set : new HashSet() + }); + } + + /// + /// Get all bodies for admin panel spectate view + /// + public IEnumerable GetBodies() + { + return _bodies.Select(b => new AdminBodyInfo + { + VictimId = b.VictimId, + Position = b.Location, + ReportedAt = b.Reported ? DateTime.UtcNow : null + }); + } + + /// + /// Get current votes during voting phase + /// + public Dictionary? GetVotes() + { + return _currentMeeting?.Votes; + } + + /// + /// Broadcast system message to all players in lobby + /// + public void BroadcastSystemMessage(string message) + { + var evt = CreateEvent("SystemMessage", "server", new SystemMessagePayload + { + Message = message, + Timestamp = DateTime.UtcNow + }); + + PersistAndBroadcast(evt); + _logger.LogInformation("System message broadcast to lobby {LobbyId}: {Message}", _lobbyId, message); + } + + /// + /// Kick player from lobby (admin action) + /// + public bool TryKickPlayer(string playerId, string reason) + { + if (!_players.ContainsKey(playerId)) + return false; + + // Odstraníme hráče asynchronně + _ = RemovePlayerAsync(playerId, reason); + return true; + } + + public async Task ArchiveAndCloseAsync() + { + _cts.Cancel(); + await _processingTask; + + // Uložíme finální snapshot + SaveSnapshot(); + + // Archivujeme + _persistence.ArchiveLobby(_lobbyId); + } + + #endregion + + #region Actor processing + + private async Task EnqueueAsync(LobbyAction action) + { + await _actionChannel.Writer.WriteAsync(action, _cts.Token); + } + + private async Task ProcessActionsAsync() + { + try + { + await foreach (var action in _actionChannel.Reader.ReadAllAsync(_cts.Token)) + { + try + { + await ProcessActionAsync(action); + } + catch (Exception ex) + { + _logger.LogError(ex, "Chyba při zpracování akce {Action}", action.GetType().Name); + } + } + } + catch (OperationCanceledException) + { + _logger.LogInformation("LobbyActor {LobbyId} ukončen", _lobbyId); + } + } + + private async Task ProcessActionAsync(LobbyAction action) + { + try + { + switch (action) + { + case AddPlayerAction a: + ProcessAddPlayer(a); + break; + case RemovePlayerAction a: + ProcessRemovePlayer(a); + break; + case HandleMessageAction a: + await ProcessMessageAsync(a); + break; + case CloseMeetingAction a: + if (_currentMeeting?.MeetingId == a.MeetingId) + { + CloseMeeting(); + } + break; + case CheckMeetingArrivalAction a: + if (_currentMeeting?.MeetingId == a.MeetingId) + { + CheckAllPlayersArrival(); + } + break; + case RepairCompleteAction a: + ProcessRepairComplete(a); + break; + case SabotageMeltdownAction a: + ProcessSabotageMeltdown(a); + break; + case SabotageExpireAction a: + ProcessSabotageExpire(a); + break; + } + + // Signalizace dokončení pro akce, které na to čekají + action.Completion?.TrySetResult(); + } + catch (Exception ex) + { + action.Completion?.TrySetException(ex); + throw; + } + + // Periodické snapshoty + CheckSnapshot(); + } + + #endregion + + #region Player management + + private void ProcessAddPlayer(AddPlayerAction action) + { + if (_players.ContainsKey(action.ClientUuid)) + { + // Reconnect + _players[action.ClientUuid].ConnectedAt = DateTime.UtcNow; + _logger.LogInformation("Hráč {Uuid} reconnected", action.ClientUuid); + return; + } + + var player = new Player + { + ClientUuid = action.ClientUuid, + DisplayName = action.DisplayName, + IsOwner = action.IsOwner, + Position = Settings.PlayAreaCenter + }; + + _players[action.ClientUuid] = player; + _statsDb.EnsurePlayerExists(action.ClientUuid, action.DisplayName); + + var evt = CreateEvent("PlayerJoined", action.ClientUuid, new PlayerJoinedPayload + { + ClientUuid = action.ClientUuid, + DisplayName = action.DisplayName + }); + + PersistAndBroadcast(evt); + + _logger.LogInformation("Hráč {Uuid} ({Name}) přidán do lobby", action.ClientUuid, action.DisplayName); + } + + private void ProcessRemovePlayer(RemovePlayerAction action) + { + if (!_players.TryGetValue(action.ClientUuid, out var player)) + return; + + var wasOwner = player.IsOwner; + _players.Remove(action.ClientUuid); + _connections.TryRemove(action.ClientUuid, out _); + + var evt = CreateEvent("PlayerLeft", action.ClientUuid, new PlayerLeftPayload + { + ClientUuid = action.ClientUuid, + Reason = action.Reason + }); + + PersistAndBroadcast(evt); + + // Host migration pokud odešel owner + if (wasOwner && _players.Count > 0) + { + ElectNewOwner(); + } + + _logger.LogInformation("Hráč {Uuid} opustil lobby: {Reason}", action.ClientUuid, action.Reason); + } + + private void ElectNewOwner() + { + // Nejstarší hráč podle připojení + var newOwner = _players.Values + .OrderBy(p => p.ConnectedAt) + .ThenBy(p => p.ClientUuid) + .FirstOrDefault(); + + if (newOwner == null) return; + + var previousOwnerId = _players.Values.FirstOrDefault(p => p.IsOwner)?.ClientUuid ?? "none"; + + foreach (var p in _players.Values) + p.IsOwner = false; + + newOwner.IsOwner = true; + + var evt = CreateEvent("HostChanged", newOwner.ClientUuid, new HostChangedPayload + { + NewHostId = newOwner.ClientUuid, + PreviousHostId = previousOwnerId + }); + + PersistAndBroadcast(evt); + + _logger.LogInformation("Nový owner: {Uuid}", newOwner.ClientUuid); + } + + #endregion + + #region Message processing + + private async Task ProcessMessageAsync(HandleMessageAction action) + { + var clientUuid = action.ClientUuid; + var message = action.Message; + + if (!_players.TryGetValue(clientUuid, out var player)) + { + _logger.LogWarning("Zpráva od neznámého hráče: {Uuid}", clientUuid); + return; + } + + // Ack pro všechny zprávy + var ack = new Ack { AckedSeq = message.ClientSeq, Success = true }; + + switch (message) + { + case UpdatePosition m: + ProcessUpdatePosition(player, m); + break; + + case StartGame m: + // StartGame is async - it handles its own ack + await ProcessStartGame(player, m, ack); + return; + + case KillAttempt m: + ProcessKillAttempt(player, m, ref ack); + break; + + case ReportBody m: + ProcessReportBody(player, m, ref ack); + break; + + case CallEmergencyMeeting m: + ProcessEmergencyMeeting(player, m, ref ack); + break; + + case CastVote m: + ProcessCastVote(player, m, ref ack); + break; + + case TaskComplete m: + ProcessTaskComplete(player, m, ref ack); + break; + + case Ping m: + var pong = new Pong + { + ClientTime = m.ClientTime, + ServerTime = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds() + }; + SendTo(clientUuid, pong); + return; // Ping nepotřebuje ack + + case LeaveLobby: + await RemovePlayerAsync(clientUuid, "Hráč opustil"); + return; + + case KickPlayer m: + ProcessKickPlayer(player, m, ref ack); + break; + + case StartSabotage m: + ProcessStartSabotage(player, m, ref ack); + break; + + case ActivateRepairStation m: + ProcessActivateRepairStation(player, m, ref ack); + break; + + case DeactivateRepairStation m: + ProcessDeactivateRepairStation(player, m, ref ack); + break; + + case MapDataReceived m: + ProcessMapDataReceived(player, m, ref ack); + break; + + case ReturnToLobby: + ProcessReturnToLobby(player, ref ack); + break; + } + + // Poslat ack + SendTo(clientUuid, ack); + } + + #endregion + + #region Game actions + + private void ProcessUpdatePosition(Player player, UpdatePosition message) + { + var violation = _antiCheat.ValidateMovement(player, message.Position); + + if (violation != null && player.CheatStatus == CheatStatus.Kicked) + { + // Kicknout hráče + _statsDb.IncrementCheatIncidents(player.ClientUuid); + _ = RemovePlayerAsync(player.ClientUuid, "Anti-cheat kick"); + return; + } + + player.Position = message.Position; + player.LastPositionUpdate = DateTime.UtcNow; + + // Kontrola meeting arrival + if (_currentMeeting != null && !_currentMeeting.ArrivedPlayers.Contains(player.ClientUuid)) + { + if (_gameLogic.CheckPlayerArrival(player, _currentMeeting)) + { + // Hráč právě dorazil na meeting - pošleme event + var arrivalEvt = CreateEvent("PlayerArrivedAtMeeting", player.ClientUuid, new PlayerArrivedAtMeetingPayload + { + ClientUuid = player.ClientUuid, + MeetingId = _currentMeeting.MeetingId + }); + PersistAndBroadcast(arrivalEvt); + } + } + } + + private async Task ProcessStartGame(Player player, StartGame message, Ack ack) + { + if (!player.IsOwner) + { + ack.Success = false; + ack.Error = "Pouze owner může spustit hru"; + SendTo(player.ClientUuid, ack); + return; + } + + if (_phase != GamePhase.Lobby) + { + ack.Success = false; + ack.Error = "Hra již probíhá"; + SendTo(player.ClientUuid, ack); + return; + } + + if (_players.Count < 2) + { + ack.Success = false; + ack.Error = "Minimum 2 hráči"; + SendTo(player.ClientUuid, ack); + return; + } + + // Enter loading phase - notify clients to show loading screen + _phase = GamePhase.Loading; + _playersWithMapData.Clear(); + + var loadingEvt = CreateEvent("GameStarting", player.ClientUuid, new GameStartingPayload + { + Message = "Načítám mapová data..." + }); + PersistAndBroadcast(loadingEvt); + + // Send ack immediately + ack.Success = true; + SendTo(player.ClientUuid, ack); + + _logger.LogInformation("Lobby {LobbyId} entering loading phase, fetching map data", _lobbyId); + + // Fetch map data from Overpass API + try + { + if (_overpassService != null) + { + var mapData = await _overpassService.FetchMapDataAsync( + Settings.PlayAreaCenter, + Settings.PlayAreaRadius); + + Settings.MapData = mapData; + + _logger.LogInformation("Lobby {LobbyId} map data loaded: {Buildings} buildings, {Pathways} pathways, {POIs} POIs", + _lobbyId, + mapData?.Buildings?.Count ?? 0, + mapData?.Pathways?.Count ?? 0, + mapData?.PointsOfInterest?.Count ?? 0); + } + + // Broadcast map data to all clients + var mapDataPayload = Settings.MapData != null + ? MapDataPayload.FromMapData(Settings.MapData) + : null; + var mapDataEvt = CreateEvent("MapDataReady", player.ClientUuid, new MapDataReadyPayload + { + MapData = mapDataPayload, + PlayAreaCenter = Settings.PlayAreaCenter, + PlayAreaRadius = Settings.PlayAreaRadius + }); + PersistAndBroadcast(mapDataEvt); + + _logger.LogInformation("Lobby {LobbyId} map data distributed to {Count} players, waiting for confirmations", + _lobbyId, _players.Count); + } + catch (Exception ex) + { + _logger.LogError(ex, "Failed to fetch map data for lobby {LobbyId}", _lobbyId); + + // Revert to lobby phase on error + _phase = GamePhase.Lobby; + + var errorEvt = CreateEvent("MapDataError", player.ClientUuid, new { Error = "Nepodařilo se načíst mapová data" }); + PersistAndBroadcast(errorEvt); + } + } + + private void ProcessMapDataReceived(Player player, MapDataReceived message, ref Ack ack) + { + if (_phase != GamePhase.Loading) + { + ack.Success = false; + ack.Error = "Hra není ve fázi načítání"; + return; + } + + _playersWithMapData.Add(player.ClientUuid); + + _logger.LogDebug("Player {Player} confirmed map data receipt ({Count}/{Total})", + player.DisplayName, _playersWithMapData.Count, _players.Count); + + // Broadcast progress to all clients + var progressEvt = CreateEvent("PlayerMapDataReceived", player.ClientUuid, new PlayerMapDataReceivedPayload + { + ClientUuid = player.ClientUuid, + DisplayName = player.DisplayName, + PlayersReady = _playersWithMapData.Count, + TotalPlayers = _players.Count + }); + PersistAndBroadcast(progressEvt); + + // Check if all players have received map data + if (_playersWithMapData.Count >= _players.Count) + { + _logger.LogInformation("All players confirmed map data receipt, starting game in lobby {LobbyId}", _lobbyId); + StartGameAfterMapDataLoaded(); + } + } + + private void StartGameAfterMapDataLoaded() + { + // Now actually start the game + _phase = GamePhase.Playing; + + // Assign roles first + var playerList = _players.Values.ToList(); + _gameLogic.AssignRoles(playerList, Settings.ImpostorCount); + + // Generate unique tasks for each crew member + _tasks.Clear(); + int taskIndex = 0; + foreach (var p in _players.Values) + { + if (p.Role == PlayerRole.Crew) + { + // Generate unique tasks for this player + var playerTasks = _gameLogic.GenerateTasks( + Settings.TaskCount, + Settings.PlayAreaCenter, + Settings.PlayAreaRadius, + Settings.MapData, + taskIndex); // Pass index for unique task IDs + + p.Tasks = playerTasks; + _tasks.AddRange(playerTasks); + taskIndex += Settings.TaskCount; + } + } + + // Find who triggered the start (owner) + var owner = _players.Values.FirstOrDefault(p => p.IsOwner); + var ownerUuid = owner?.ClientUuid ?? "server"; + + // Broadcast GameStarted + var startEvt = CreateEvent("GameStarted", ownerUuid, new GameStartedPayload + { + ImpostorCount = Settings.ImpostorCount, + TaskCount = Settings.TaskCount + }); + PersistAndBroadcast(startEvt); + + // Send each player their role and their own tasks + foreach (var p in _players.Values) + { + var roleEvt = CreateEvent("RoleAssigned", p.ClientUuid, new RoleAssignedPayload + { + ClientUuid = p.ClientUuid, + Role = p.Role, + Tasks = p.Role == PlayerRole.Crew ? p.Tasks : null + }); + + // Role is sent only to that player + PersistEvent(roleEvt); + SendTo(p.ClientUuid, roleEvt); + } + + _logger.LogInformation("Game started in lobby {LobbyId}", _lobbyId); + } + + private void ProcessKillAttempt(Player killer, KillAttempt message, ref Ack ack) + { + if (_phase != GamePhase.Playing) + { + ack.Success = false; + ack.Error = "Hra neprobíhá"; + return; + } + + if (_currentMeeting != null) + { + ack.Success = false; + ack.Error = "Probíhá meeting"; + return; + } + + if (!_antiCheat.CanPerformAction(killer, "Kill")) + { + ack.Success = false; + ack.Error = "Akce blokována"; + return; + } + + if (!_players.TryGetValue(message.TargetClientUuid, out var victim)) + { + ack.Success = false; + ack.Error = "Oběť neexistuje"; + return; + } + + var (success, error, body) = _gameLogic.TryKill(killer, victim, _players, _bodies); + + if (!success) + { + ack.Success = false; + ack.Error = error; + return; + } + + // Update stats + _statsDb.IncrementKills(killer.ClientUuid); + _statsDb.IncrementDeaths(victim.ClientUuid); + + var evt = CreateEvent("PlayerKilled", killer.ClientUuid, new PlayerKilledPayload + { + VictimId = victim.ClientUuid, + KillerId = killer.ClientUuid, + BodyId = body!.BodyId, + Location = body.Location + }); + + PersistAndBroadcast(evt); + + // Check win conditions + CheckWinConditions(); + } + + private void ProcessReportBody(Player reporter, ReportBody message, ref Ack ack) + { + if (_phase != GamePhase.Playing) + { + ack.Success = false; + ack.Error = "Hra neprobíhá"; + return; + } + + if (_currentMeeting != null) + { + ack.Success = false; + ack.Error = "Probíhá meeting"; + return; + } + + // Check comms sabotage + if (IsCommsBlocked()) + { + ack.Success = false; + ack.Error = "Komunikace je rušena - nelze reportovat"; + return; + } + + // Check reactor meltdown - must repair first! + if (IsMeltdownActive()) + { + ack.Success = false; + ack.Error = "KRITICKÁ HAVARIE! Nelze reportovat - nejprve opravte reaktor!"; + return; + } + + var (success, error, body) = _gameLogic.TryReportBody(reporter, message.BodyId, _bodies); + + if (!success) + { + ack.Success = false; + ack.Error = error; + return; + } + + _statsDb.IncrementBodiesReported(reporter.ClientUuid); + + var reportEvt = CreateEvent("BodyReported", reporter.ClientUuid, new BodyReportedPayload + { + ReporterId = reporter.ClientUuid, + BodyId = body!.BodyId, + VictimId = body.VictimId + }); + PersistAndBroadcast(reportEvt); + + // Cancel any active sabotage when meeting starts + if (_currentSabotage != null && _currentSabotage.State == SabotageState.Active) + { + _currentSabotage.State = SabotageState.Repaired; + _currentSabotage = null; + } + + // Start meeting at body location + StartMeeting(MeetingType.BodyReport, reporter.ClientUuid, body.Location, body.BodyId); + } + + private void ProcessEmergencyMeeting(Player caller, CallEmergencyMeeting message, ref Ack ack) + { + if (_phase != GamePhase.Playing) + { + ack.Success = false; + ack.Error = "Hra neprobíhá"; + return; + } + + if (_currentMeeting != null) + { + ack.Success = false; + ack.Error = "Probíhá meeting"; + return; + } + + // Check comms sabotage + if (IsCommsBlocked()) + { + ack.Success = false; + ack.Error = "Komunikace je rušena - nelze svolat meeting"; + return; + } + + // Check reactor meltdown - must repair first! + if (IsMeltdownActive()) + { + ack.Success = false; + ack.Error = "KRITICKÁ HAVARIE! Nelze svolat meeting - nejprve opravte reaktor!"; + return; + } + + // Kontrola vzdálenosti od středu mapy (emergency button) + var distanceToCenter = caller.Position.DistanceTo(Settings.EmergencyMeetingLocation); + if (distanceToCenter > _config.EmergencyMeetingCallRadiusM) + { + ack.Success = false; + ack.Error = $"Musíš být u emergency buttonu (střed mapy) - vzdálenost: {distanceToCenter:F0}m"; + return; + } + + var (success, error) = _gameLogic.TryCallEmergencyMeeting( + caller, + Settings.MaxEmergencyMeetingsPerPlayer, + Settings.EmergencyMeetingCooldownMs); + + if (!success) + { + ack.Success = false; + ack.Error = error; + return; + } + + _statsDb.IncrementEmergencyMeetings(caller.ClientUuid); + + var callEvt = CreateEvent("EmergencyMeetingCalled", caller.ClientUuid, new EmergencyMeetingCalledPayload + { + CallerId = caller.ClientUuid + }); + PersistAndBroadcast(callEvt); + + // Cancel any active sabotage when meeting starts + if (_currentSabotage != null && _currentSabotage.State == SabotageState.Active) + { + _currentSabotage.State = SabotageState.Repaired; + _currentSabotage = null; + } + + // Start meeting at emergency location + StartMeeting(MeetingType.Emergency, caller.ClientUuid, Settings.EmergencyMeetingLocation, null); + } + + private void StartMeeting(MeetingType type, string callerId, Position location, string? bodyId) + { + _phase = GamePhase.Meeting; + + _currentMeeting = _gameLogic.StartMeeting( + type, callerId, location, bodyId, + _config.ArrivalBaseMs, _config.VotingPhaseMs, _config.DiscussionPhaseMs); + + var evt = CreateEvent("MeetingStarted", callerId, new MeetingStartedPayload + { + MeetingId = _currentMeeting.MeetingId, + Type = type, + MeetingLocation = location, + ArrivalDeadline = _currentMeeting.ArrivalDeadline, + DiscussionEndTime = _currentMeeting.DiscussionEndTime, + VotingEndTime = _currentMeeting.VotingEndTime + }); + + PersistAndBroadcast(evt); + + // Zkontroluj všechny hráče, kteří už jsou na místě meetingu + CheckAllPlayersArrival(); + + // Spustíme periodickou kontrolu během arrival fáze + var meetingId = _currentMeeting.MeetingId; + _ = Task.Run(async () => + { + // Kontrolujeme každou sekundu během arrival fáze + while (_currentMeeting != null && + _currentMeeting.MeetingId == meetingId && + DateTime.UtcNow < _currentMeeting.ArrivalDeadline) + { + await Task.Delay(1000); + await EnqueueAsync(new CheckMeetingArrivalAction { MeetingId = meetingId }); + } + }); + + // Spustíme timer pro voting + _ = Task.Run(async () => + { + await Task.Delay(_currentMeeting.VotingEndTime - DateTime.UtcNow); + await EnqueueAsync(new CloseMeetingAction { MeetingId = _currentMeeting.MeetingId }); + }); + } + + /// + /// Zkontroluje všechny hráče zda jsou na meeting location + /// + private void CheckAllPlayersArrival() + { + if (_currentMeeting == null) return; + + foreach (var player in _players.Values.Where(p => p.State == PlayerState.Alive)) + { + if (!_currentMeeting.ArrivedPlayers.Contains(player.ClientUuid) && + _gameLogic.CheckPlayerArrival(player, _currentMeeting)) + { + var arrivalEvt = CreateEvent("PlayerArrivedAtMeeting", player.ClientUuid, new PlayerArrivedAtMeetingPayload + { + ClientUuid = player.ClientUuid, + MeetingId = _currentMeeting.MeetingId + }); + PersistAndBroadcast(arrivalEvt); + } + } + } + + private void ProcessCastVote(Player voter, CastVote message, ref Ack ack) + { + if (_currentMeeting == null) + { + ack.Success = false; + ack.Error = "Žádný aktivní meeting"; + return; + } + + var (success, error) = _gameLogic.TryCastVote(voter, message.TargetClientUuid, _currentMeeting, _players); + + if (!success) + { + ack.Success = false; + ack.Error = error; + return; + } + + var evt = CreateEvent("PlayerVoted", voter.ClientUuid, new PlayerVotedPayload + { + VoterId = voter.ClientUuid, + TargetId = message.TargetClientUuid + }); + + PersistAndBroadcast(evt); + } + + private void CloseMeeting() + { + if (_currentMeeting == null) return; + + var (ejectedId, wasTie, voteCounts) = _gameLogic.ResolveVoting(_currentMeeting, _players, Settings.TiePolicy); + + // Broadcast voting results + var closeEvt = CreateEvent("VotingClosed", null, new VotingClosedPayload + { + VoteCounts = voteCounts, + EjectedPlayerId = ejectedId, + WasTie = wasTie + }); + PersistAndBroadcast(closeEvt); + + // Eject player if any + if (ejectedId != null && _players.TryGetValue(ejectedId, out var ejected)) + { + _gameLogic.EjectPlayer(ejected); + _statsDb.IncrementTimesVotedOut(ejectedId); + + // Track successful votes (voted for impostor) + if (ejected.Role == PlayerRole.Impostor) + { + foreach (var (voterId, targetId) in _currentMeeting.Votes) + { + if (targetId == ejectedId) + { + _statsDb.IncrementSuccessfulVotes(voterId); + } + } + } + + var ejectEvt = CreateEvent("PlayerEjected", null, new PlayerEjectedPayload + { + ClientUuid = ejectedId, + Role = ejected.Role + }); + PersistAndBroadcast(ejectEvt); + } + + // Clear bodies and meeting + _bodies.Clear(); + _currentMeeting = null; + _phase = GamePhase.Playing; + + // Reset cooldowns for next round + foreach (var player in _players.Values.Where(p => p.State == PlayerState.Alive)) + { + if (player.Role == PlayerRole.Impostor) + { + player.LastKillTime = DateTime.UtcNow; // Reset kill cooldown + } + } + + // Check win conditions after ejection + CheckWinConditions(); + } + + private void ProcessTaskComplete(Player player, TaskComplete message, ref Ack ack) + { + if (_phase != GamePhase.Playing || _currentMeeting != null) + { + ack.Success = false; + ack.Error = "Nelze provádět tasky"; + return; + } + + if (!_antiCheat.CanPerformAction(player, "TaskComplete")) + { + ack.Success = false; + ack.Error = "Akce blokována"; + return; + } + + var (success, error) = _gameLogic.TryCompleteTask(player, message.TaskId); + + if (!success) + { + ack.Success = false; + ack.Error = error; + return; + } + + // Task dokončen úspěšně + _statsDb.IncrementTasksCompleted(player.ClientUuid); + + var crewPlayers = _players.Values.Where(p => p.Role == PlayerRole.Crew).ToList(); + var totalTasks = crewPlayers.Sum(p => p.Tasks.Count); + var completedTasks = crewPlayers.Sum(p => p.CompletedTaskIds.Count); + + var evt = CreateEvent("TaskCompleted", player.ClientUuid, new TaskCompletedPayload + { + ClientUuid = player.ClientUuid, + TaskId = message.TaskId, + TotalCompleted = completedTasks, + TotalTasks = totalTasks + }); + + PersistAndBroadcast(evt); + + _logger.LogInformation("Task {TaskId} completed by {Player}. Progress: {Completed}/{Total}", + message.TaskId, player.DisplayName, completedTasks, totalTasks); + + CheckWinConditions(); + } + + private void ProcessKickPlayer(Player kicker, KickPlayer message, ref Ack ack) + { + if (!kicker.IsOwner) + { + ack.Success = false; + ack.Error = "Pouze owner může kicknout"; + return; + } + + if (message.TargetClientUuid == kicker.ClientUuid) + { + ack.Success = false; + ack.Error = "Nemůžeš kicknout sám sebe"; + return; + } + + _ = RemovePlayerAsync(message.TargetClientUuid, "Kicked by owner"); + } + + private void CheckWinConditions() + { + var (gameOver, winningFaction, reason) = _gameLogic.CheckWinConditions(_players, _tasks); + + if (gameOver) + { + EndGame(winningFaction!, reason!); + } + } + + private void EndGame(string winningFaction, string reason) + { + _phase = GamePhase.Ended; + + var winners = _players.Values + .Where(p => (winningFaction == "Crew" && p.Role == PlayerRole.Crew) || + (winningFaction == "Impostor" && p.Role == PlayerRole.Impostor)) + .Select(p => p.ClientUuid) + .ToList(); + + var evt = CreateEvent("GameEnded", null, new GameEndedPayload + { + WinningFaction = winningFaction, + Reason = reason, + Winners = winners + }); + + PersistAndBroadcast(evt); + + // Uložíme statistiky + var gameStats = new GameEndStats + { + CrewWon = winningFaction == "Crew", + Players = _players.Values.Select(p => new PlayerGameStats + { + ClientUuid = p.ClientUuid, + WasCrew = p.Role == PlayerRole.Crew, + WasImpostor = p.Role == PlayerRole.Impostor, + PlaytimeSeconds = (int)(DateTime.UtcNow - p.ConnectedAt).TotalSeconds + }).ToList() + }; + + _statsDb.RecordGameEnd(gameStats); + + _logger.LogInformation("Hra ukončena: {Winner} vyhráli - {Reason}", winningFaction, reason); + } + + private void ProcessReturnToLobby(Player player, ref Ack ack) + { + // Pouze owner může restartovat hru + if (!player.IsOwner) + { + ack.Success = false; + ack.Error = "Pouze owner může restartovat hru"; + return; + } + + // Pouze pokud je hra ve fázi Ended + if (_phase != GamePhase.Ended) + { + ack.Success = false; + ack.Error = "Hra ještě neskončila"; + return; + } + + // Resetujeme stav hry + _phase = GamePhase.Lobby; + _bodies.Clear(); + _tasks.Clear(); + _currentMeeting = null; + _currentSabotage = null; + _playersWithMapData.Clear(); + + // Resetujeme hráče + foreach (var p in _players.Values) + { + p.Role = PlayerRole.Crew; + p.Position = Settings.PlayAreaCenter; + p.State = PlayerState.Alive; + p.Tasks.Clear(); + p.CompletedTaskIds.Clear(); + p.CurrentTaskId = null; + } + + // Broadcastujeme událost + var evt = CreateEvent("ReturnedToLobby", player.ClientUuid, new ReturnedToLobbyPayload + { + Message = "Hra byla restartována" + }); + PersistAndBroadcast(evt); + + _logger.LogInformation("Lobby {LobbyId} vráceno do lobby fáze hráčem {Player}", _lobbyId, player.DisplayName); + } + + #endregion + + #region Events & Broadcasting + + private GameEvent CreateEvent(string eventType, string? actor, object? payload) + { + return new GameEvent + { + EventId = Interlocked.Increment(ref _eventId), + ServerSeq = Interlocked.Increment(ref _serverSeq), + Timestamp = DateTime.UtcNow, + EventType = eventType, + Actor = actor, + Payload = payload + }; + } + + private void PersistEvent(GameEvent evt) + { + _persistence.AppendToWal(_lobbyId, evt); + _snapshotEventCounter++; + } + + private void PersistAndBroadcast(GameEvent evt) + { + PersistEvent(evt); + BroadcastEvent(evt); + } + + private void BroadcastEvent(GameEvent evt) + { + var message = new GameEvent + { + EventId = evt.EventId, + ServerSeq = evt.ServerSeq, + Timestamp = evt.Timestamp, + EventType = evt.EventType, + Actor = evt.Actor, + Payload = evt.Payload + }; + + foreach (var (clientUuid, connection) in _connections) + { + try + { + connection.SendAsync(message).Wait(); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "Chyba při broadcastu do {ClientUuid}", clientUuid); + } + } + } + + private void SendTo(string clientUuid, Message message) + { + if (_connections.TryGetValue(clientUuid, out var connection)) + { + try + { + connection.SendAsync(message).Wait(); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "Chyba při odesílání do {ClientUuid}", clientUuid); + } + } + } + + // Position broadcast - volat periodicky z externího timeru + public void BroadcastPositions() + { + if (_phase != GamePhase.Playing && _phase != GamePhase.Meeting) + return; + + var positions = _players.Values.Select(p => new PlayerPositionInfo + { + ClientUuid = p.ClientUuid, + Position = p.Position, + State = p.State + }).ToList(); + + var broadcast = new PositionBroadcast { Players = positions }; + + foreach (var connection in _connections.Values) + { + try + { + connection.SendAsync(broadcast).Wait(); + } + catch { } + } + } + + #endregion + + #region Sabotage + + private void ProcessStartSabotage(Player player, StartSabotage message, ref Ack ack) + { + // Only impostors can sabotage + if (player.Role != PlayerRole.Impostor) + { + ack.Success = false; + ack.Error = "Pouze impostor může sabotovat"; + return; + } + + // Must be in playing phase (not meeting) + if (_phase != GamePhase.Playing) + { + ack.Success = false; + ack.Error = "Nelze sabotovat během meetingu"; + return; + } + + // Check cooldown + if (_lastSabotageTime.HasValue && + (DateTime.UtcNow - _lastSabotageTime.Value).TotalMilliseconds < _config.SabotageCooldownMs) + { + var remaining = _config.SabotageCooldownMs - (DateTime.UtcNow - _lastSabotageTime.Value).TotalMilliseconds; + ack.Success = false; + ack.Error = $"Sabotáž na cooldownu ({remaining:F0}ms)"; + return; + } + + // Check if sabotage already active + if (_currentSabotage != null && _currentSabotage.State == SabotageState.Active) + { + ack.Success = false; + ack.Error = "Již probíhá jiná sabotáž"; + return; + } + + // Create sabotage + _currentSabotage = new Sabotage + { + SabotageId = Guid.NewGuid().ToString("N")[..8], + Type = message.SabotageType, + InitiatorId = player.ClientUuid, + StartTime = DateTime.UtcNow + }; + + // Setup based on type + switch (message.SabotageType) + { + case SabotageType.CommsBlackout: + SetupCommsBlackout(_currentSabotage); + break; + case SabotageType.CriticalMeltdown: + SetupCriticalMeltdown(_currentSabotage); + break; + } + + _lastSabotageTime = DateTime.UtcNow; + + // Broadcast sabotage started + var evt = CreateEvent("SabotageStarted", player.ClientUuid, new SabotageStartedPayload + { + SabotageId = _currentSabotage.SabotageId, + Type = _currentSabotage.Type, + InitiatorId = _currentSabotage.InitiatorId, + Deadline = _currentSabotage.Deadline, + RepairStations = _currentSabotage.RepairStations.Select(s => new RepairStationInfo + { + StationId = s.StationId, + Name = s.Name, + Location = s.Location, + RepairDurationMs = s.RepairDurationMs + }).ToList(), + RequiredSimultaneousRepairs = _currentSabotage.RequiredSimultaneousRepairs + }); + + PersistAndBroadcast(evt); + + // Start timer for auto-expire or meltdown + _ = Task.Run(async () => + { + if (_currentSabotage.Deadline.HasValue) + { + // Critical meltdown - wait until deadline + await Task.Delay(_currentSabotage.Deadline.Value - DateTime.UtcNow); + await EnqueueAsync(new SabotageMeltdownAction { SabotageId = _currentSabotage.SabotageId }); + } + else + { + // Comms blackout - auto-expire + await Task.Delay(_config.CommsBlackoutDurationMs); + await EnqueueAsync(new SabotageExpireAction { SabotageId = _currentSabotage.SabotageId }); + } + }); + + _logger.LogInformation("Sabotáž spuštěna: {Type} by {Player}", message.SabotageType, player.DisplayName); + } + + private void SetupCommsBlackout(Sabotage sabotage) + { + sabotage.RequiredSimultaneousRepairs = 1; + + // Get a reachable position using map data if available + var positions = _gameLogic.GenerateRepairStationPositions( + 1, Settings.PlayAreaCenter, Settings.PlayAreaRadius, Settings.MapData); + + var station = new RepairStation + { + StationId = "comms_station", + Name = "Komunikační věž", + Location = positions.FirstOrDefault(), + RepairDurationMs = _config.RepairStationHoldMs + }; + + sabotage.RepairStations.Add(station); + } + + private void SetupCriticalMeltdown(Sabotage sabotage) + { + sabotage.Deadline = DateTime.UtcNow.AddMilliseconds(_config.CriticalMeltdownDeadlineMs); + sabotage.RequiredSimultaneousRepairs = 2; + + // Two repair stations - use map data for reachable positions if available + var positions = _gameLogic.GenerateRepairStationPositions( + 2, Settings.PlayAreaCenter, Settings.PlayAreaRadius, Settings.MapData); + + var station1 = new RepairStation + { + StationId = "reactor_alpha", + Name = "Reaktor Alpha", + Location = positions.Count > 0 ? positions[0] : Settings.PlayAreaCenter, + RepairDurationMs = _config.RepairStationHoldMs + }; + + var station2 = new RepairStation + { + StationId = "reactor_beta", + Name = "Reaktor Beta", + Location = positions.Count > 1 ? positions[1] : Settings.PlayAreaCenter, + RepairDurationMs = _config.RepairStationHoldMs + }; + + sabotage.RepairStations.Add(station1); + sabotage.RepairStations.Add(station2); + } + + private Position GenerateRandomLocation() + { + // Try to use map data for reachable position + if (Settings.MapData != null && _overpassService != null) + { + var pos = _overpassService.GetRandomReachablePosition(Settings.MapData, new Random()); + if (pos.HasValue) + { + return pos.Value; + } + } + + // Fallback to random position + var center = Settings.PlayAreaCenter; + var radius = Settings.PlayAreaRadius * 0.6; // 60% of play area + + var random = new Random(); + var angle = random.NextDouble() * 2 * Math.PI; + var dist = random.NextDouble() * radius; + + var latOffset = (dist * Math.Cos(angle)) / 111000.0; + var lonOffset = (dist * Math.Sin(angle)) / (111000.0 * Math.Cos(center.Lat * Math.PI / 180)); + + return new Position(center.Lat + latOffset, center.Lon + lonOffset); + } + + private void ProcessActivateRepairStation(Player player, ActivateRepairStation message, ref Ack ack) + { + if (_currentSabotage == null || _currentSabotage.State != SabotageState.Active) + { + ack.Success = false; + ack.Error = "Žádná aktivní sabotáž"; + return; + } + + // Dead players can't repair + if (player.State != PlayerState.Alive) + { + ack.Success = false; + ack.Error = "Mrtví hráči nemohou opravovat"; + return; + } + + var station = _currentSabotage.RepairStations.FirstOrDefault(s => s.StationId == message.StationId); + if (station == null) + { + ack.Success = false; + ack.Error = "Neznámá stanice"; + return; + } + + // Check distance + var distance = player.Position.DistanceTo(station.Location); + if (distance > _config.RepairStationDistanceM) + { + ack.Success = false; + ack.Error = $"Příliš daleko od stanice ({distance:F1}m)"; + return; + } + + // INSTANT oprava - klient může simulovat progress bar lokálně + station.IsRepaired = true; + station.RepairingPlayerId = player.ClientUuid; + station.RepairStartTime = DateTime.UtcNow; + + _logger.LogInformation("Stanice opravena: {Station} by {Player}", station.Name, player.DisplayName); + + // Zkontroluj zda je sabotáž kompletně opravena + CheckSabotageRepairComplete(player.ClientUuid, station.StationId); + } + + private void ProcessDeactivateRepairStation(Player player, DeactivateRepairStation message, ref Ack ack) + { + if (_currentSabotage == null) + { + ack.Success = false; + ack.Error = "Žádná aktivní sabotáž"; + return; + } + + var station = _currentSabotage.RepairStations.FirstOrDefault(s => s.StationId == message.StationId); + if (station == null) + { + ack.Success = false; + ack.Error = "Neznámá stanice"; + return; + } + + if (station.RepairingPlayerId != player.ClientUuid) + { + ack.Success = false; + ack.Error = "Tuto stanici neopravujete"; + return; + } + + // Stop repairing + station.IsBeingRepaired = false; + station.RepairingPlayerId = null; + station.RepairStartTime = null; + + var evt = CreateEvent("RepairStopped", player.ClientUuid, new RepairStoppedPayload + { + SabotageId = _currentSabotage.SabotageId, + StationId = station.StationId, + PlayerId = player.ClientUuid + }); + + PersistAndBroadcast(evt); + + _logger.LogInformation("Oprava přerušena: {Station} by {Player}", station.Name, player.DisplayName); + } + + private void ProcessRepairComplete(RepairCompleteAction action) + { + if (_currentSabotage == null || _currentSabotage.SabotageId != action.SabotageId) + return; + + if (_currentSabotage.State != SabotageState.Active) + return; + + var station = _currentSabotage.RepairStations.FirstOrDefault(s => s.StationId == action.StationId); + if (station == null || station.RepairingPlayerId != action.PlayerId) + return; + + // Check if player is still near the station + if (_players.TryGetValue(action.PlayerId, out var player)) + { + var distance = player.Position.DistanceTo(station.Location); + if (distance > _config.RepairStationDistanceM) + { + // Player moved away, cancel repair + station.IsBeingRepaired = false; + station.RepairingPlayerId = null; + station.RepairStartTime = null; + return; + } + } + + // Mark station as repair complete (keep IsBeingRepaired true for multi-station check) + station.IsRepaired = true; + + // Check repair completion based on sabotage type + if (_currentSabotage.RequiredSimultaneousRepairs == 1) + { + // Simple single-station repair + station.IsBeingRepaired = false; + CompleteSabotageRepair(new List { action.PlayerId }); + } + else + { + // Multi-station simultaneous repair + var repairedStations = _currentSabotage.RepairStations + .Where(s => s.IsRepaired && s.RepairStartTime.HasValue) + .ToList(); + + if (repairedStations.Count >= _currentSabotage.RequiredSimultaneousRepairs) + { + // Check if repairs completed within the time window + var repairCompleteTimes = repairedStations + .Select(s => s.RepairStartTime!.Value.AddMilliseconds(s.RepairDurationMs)) + .OrderBy(t => t) + .ToList(); + + var timeDiff = (repairCompleteTimes.Last() - repairCompleteTimes.First()).TotalMilliseconds; + + if (timeDiff <= _config.SimultaneousRepairWindowMs) + { + // Simultaneous repair successful + var repairerIds = repairedStations + .Where(s => s.RepairingPlayerId != null) + .Select(s => s.RepairingPlayerId!) + .ToList(); + + // Clear repair states + foreach (var s in _currentSabotage.RepairStations) + { + s.IsBeingRepaired = false; + } + + CompleteSabotageRepair(repairerIds); + } + } + } + } + + private void CheckSabotageRepairComplete(string playerId, string stationId) + { + if (_currentSabotage == null) return; + + // Check repair completion based on sabotage type + if (_currentSabotage.RequiredSimultaneousRepairs == 1) + { + // Simple single-station repair - done! + CompleteSabotageRepair(new List { playerId }); + } + else + { + // Multi-station repair - check if all stations are repaired + var repairedStations = _currentSabotage.RepairStations.Where(s => s.IsRepaired).ToList(); + + if (repairedStations.Count >= _currentSabotage.RequiredSimultaneousRepairs) + { + // Check if repairs completed within the time window + var repairTimes = repairedStations + .Where(s => s.RepairStartTime.HasValue) + .Select(s => s.RepairStartTime!.Value) + .OrderBy(t => t) + .ToList(); + + if (repairTimes.Count >= 2) + { + var timeDiff = (repairTimes.Last() - repairTimes.First()).TotalMilliseconds; + + if (timeDiff <= _config.SimultaneousRepairWindowMs) + { + // Simultaneous repair successful! + var repairerIds = repairedStations + .Where(s => s.RepairingPlayerId != null) + .Select(s => s.RepairingPlayerId!) + .ToList(); + + CompleteSabotageRepair(repairerIds); + } + else + { + // Too slow - reset the older repairs + foreach (var s in _currentSabotage.RepairStations) + { + if (s.StationId != stationId) + { + s.IsRepaired = false; + s.RepairingPlayerId = null; + s.RepairStartTime = null; + } + } + _logger.LogInformation("Opravy nebyly simultánní - reset starších oprav"); + } + } + } + } + } + + private void CompleteSabotageRepair(List repairerIds) + { + if (_currentSabotage == null) return; + + _currentSabotage.State = SabotageState.Repaired; + _currentSabotage.RepairedAt = DateTime.UtcNow; + + var evt = CreateEvent("SabotageRepaired", repairerIds.First(), new SabotageRepairedPayload + { + SabotageId = _currentSabotage.SabotageId, + Type = _currentSabotage.Type, + RepairerIds = repairerIds + }); + + PersistAndBroadcast(evt); + + _logger.LogInformation("Sabotáž opravena: {Type} by {Players}", + _currentSabotage.Type, + string.Join(", ", repairerIds)); + + _currentSabotage = null; + } + + private void ProcessSabotageMeltdown(SabotageMeltdownAction action) + { + if (_currentSabotage == null || _currentSabotage.SabotageId != action.SabotageId) + return; + + if (_currentSabotage.State != SabotageState.Active) + return; + + // Meltdown - impostors win! + var meltdownEvt = CreateEvent("SabotageMeltdown", _currentSabotage.InitiatorId, new SabotageMeltdownPayload + { + SabotageId = _currentSabotage.SabotageId + }); + + PersistAndBroadcast(meltdownEvt); + + // End game - impostor win + EndGame("Impostor", "Kritická sabotáž - meltdown"); + } + + private void ProcessSabotageExpire(SabotageExpireAction action) + { + if (_currentSabotage == null || _currentSabotage.SabotageId != action.SabotageId) + return; + + if (_currentSabotage.State != SabotageState.Active) + return; + + // Comms blackout expired naturally + _currentSabotage.State = SabotageState.Repaired; + _currentSabotage = null; + + var evt = CreateEvent("SabotageExpired", "system", new SabotageRepairedPayload + { + SabotageId = action.SabotageId, + Type = SabotageType.CommsBlackout, + RepairerIds = new List() + }); + + PersistAndBroadcast(evt); + + _logger.LogInformation("Sabotáž vypršela: CommsBlackout"); + } + + /// + /// Check if comms sabotage blocks reporting/meetings + /// + public bool IsCommsBlocked() + { + return _currentSabotage != null && + _currentSabotage.Type == SabotageType.CommsBlackout && + _currentSabotage.State == SabotageState.Active; + } + + /// + /// Check if reactor meltdown blocks reporting/meetings + /// + public bool IsMeltdownActive() + { + return _currentSabotage != null && + _currentSabotage.Type == SabotageType.CriticalMeltdown && + _currentSabotage.State == SabotageState.Active; + } + + /// + /// Get current sabotage info (for state sync) + /// + public Sabotage? GetCurrentSabotage() => _currentSabotage; + + #endregion + + #region Snapshots + + private void CheckSnapshot() + { + var shouldSnapshot = _snapshotEventCounter >= _config.SnapshotEvents || + (DateTime.UtcNow - _lastSnapshotTime).TotalMilliseconds >= _config.SnapshotIntervalMs; + + if (shouldSnapshot) + { + SaveSnapshot(); + } + } + + private void SaveSnapshot() + { + var snapshot = new LobbySnapshot + { + LobbyId = _lobbyId, + LastEventId = _eventId, + Phase = _phase, + Players = _players.Values.ToList(), + Bodies = _bodies.ToList(), + Tasks = _tasks.ToList(), + CurrentMeeting = _currentMeeting, + PlayAreaCenter = Settings.PlayAreaCenter, + PlayAreaRadius = Settings.PlayAreaRadius, + ImpostorCount = Settings.ImpostorCount, + TiePolicy = Settings.TiePolicy, + Checksum = "" // Bude vyplněno v Persistence + }; + + _persistence.SaveSnapshot(_lobbyId, snapshot); + _snapshotEventCounter = 0; + _lastSnapshotTime = DateTime.UtcNow; + } + + #endregion + + public void Dispose() + { + _cts.Cancel(); + _cts.Dispose(); + } +} + +#region Action types + +abstract class LobbyAction +{ + public TaskCompletionSource? Completion { get; set; } +} + +class AddPlayerAction : LobbyAction +{ + public required string ClientUuid { get; set; } + public required string DisplayName { get; set; } + public bool IsOwner { get; set; } +} + +class RemovePlayerAction : LobbyAction +{ + public required string ClientUuid { get; set; } + public string? Reason { get; set; } +} + +class HandleMessageAction : LobbyAction +{ + public required string ClientUuid { get; set; } + public required Message Message { get; set; } +} + +class CloseMeetingAction : LobbyAction +{ + public required string MeetingId { get; set; } +} + +class CheckMeetingArrivalAction : LobbyAction +{ + public required string MeetingId { get; set; } +} + +class RepairCompleteAction : LobbyAction +{ + public required string SabotageId { get; set; } + public required string StationId { get; set; } + public required string PlayerId { get; set; } +} + +class SabotageMeltdownAction : LobbyAction +{ + public required string SabotageId { get; set; } +} + +class SabotageExpireAction : LobbyAction +{ + public required string SabotageId { get; set; } +} + +#endregion + +// Stub pro ClientConnection - bude implementováno v Program.cs +public class ClientConnection +{ + public required string ClientUuid { get; set; } + public required Func SendAsync { get; set; } +} + +// Extension metoda pro Dictionary +public static class DictionaryExtensions +{ + public static bool TryRemove(this Dictionary dict, TKey key, out TValue? value) where TKey : notnull + { + if (dict.TryGetValue(key, out value)) + { + dict.Remove(key); + return true; + } + value = default; + return false; + } +} + +// Admin panel DTOs +public class AdminPlayerInfo +{ + public required string PlayerId { get; set; } + public required string DisplayName { get; set; } + public required PlayerState State { get; set; } + public required PlayerRole Role { get; set; } + public required Position Position { get; set; } + public bool IsHost { get; set; } + public int CheatScore { get; set; } + public DateTime? KillCooldownEnd { get; set; } + public string? VotedFor { get; set; } +} + +public class AdminTaskInfo +{ + public required string TaskId { get; set; } + public required string Name { get; set; } + public required Position Location { get; set; } + public HashSet CompletedBy { get; set; } = new(); +} + +public class AdminBodyInfo +{ + public required string VictimId { get; set; } + public required Position Position { get; set; } + public DateTime? ReportedAt { get; set; } +} + +public class SystemMessagePayload +{ + public required string Message { get; set; } + public DateTime Timestamp { get; set; } +} diff --git a/LobbyManager.cs b/LobbyManager.cs new file mode 100644 index 0000000..6e43117 --- /dev/null +++ b/LobbyManager.cs @@ -0,0 +1,300 @@ +namespace GeoSus.Server; + +using Microsoft.Extensions.Logging; +using System.Collections.Concurrent; +using System.Security.Cryptography; +using System.Text; + +// Správa lobby - vytváření, join codes, vyhledávání +public class LobbyManager +{ + private readonly ServerConfig _config; + private readonly ILogger _logger; + private readonly StatsDb _statsDb; + private readonly Persistence _persistence; + private readonly OverpassService _overpassService; + + private readonly ConcurrentDictionary _lobbies = new(); + private readonly ConcurrentDictionary _joinCodes = new(); // code -> lobbyId + private readonly ConcurrentDictionary _codeExpiry = new(); + private readonly ConcurrentDictionary _joinRateLimiters = new(); + + // Znaky pro join code - bez podobných (0/O, 1/I/L) + private const string JoinCodeChars = "23456789ABCDEFGHJKMNPQRSTUVWXYZ"; + + public LobbyManager(ServerConfig config, ILogger logger, StatsDb statsDb, Persistence persistence, OverpassService overpassService) + { + _config = config; + _logger = logger; + _statsDb = statsDb; + _persistence = persistence; + _overpassService = overpassService; + } + + public async Task<(LobbyActor? Lobby, string? JoinCode, string? Error)> CreateLobbyAsync( + string ownerId, string ownerName, CreateLobby request) + { + var lobbyId = Guid.NewGuid().ToString("N")[..16]; + var joinCode = GenerateJoinCode(); + + var playAreaCenter = request.PlayAreaCenter ?? new Position(50.0, 14.0); // Default Praha + var playAreaRadius = request.PlayAreaRadius > 0 ? request.PlayAreaRadius : 500; + + // NOTE: Map data is now fetched when game starts, not on lobby creation + // This allows all clients to see a loading screen while data is fetched + + var settings = new LobbySettings + { + LobbyId = lobbyId, + JoinCode = joinCode, + Password = request.Password, + PlayAreaCenter = playAreaCenter, + PlayAreaRadius = playAreaRadius, + ImpostorCount = request.ImpostorCount > 0 ? request.ImpostorCount : _config.DefaultImpostorCount, + TaskCount = request.TaskCount > 0 ? request.TaskCount : _config.DefaultTaskCount, + TiePolicy = _config.DefaultTiePolicy, + EmergencyMeetingCooldownMs = _config.EmergencyMeetingCooldownMs, + MaxEmergencyMeetingsPerPlayer = _config.MaxEmergencyMeetingsPerPlayer, + AllowJoinInProgress = false, + MapData = null, + MapDataPayload = null, + OverpassEnabled = _config.OverpassEnabled + }; + + var lobbyLogger = _logger.CreateLogger(); + var lobby = new LobbyActor(lobbyId, settings, _config, lobbyLogger, _statsDb, _persistence, _overpassService); + + if (!_lobbies.TryAdd(lobbyId, lobby)) + { + return (null, null, "Nepodařilo se vytvořit lobby"); + } + + _joinCodes[joinCode] = lobbyId; + _codeExpiry[joinCode] = DateTime.UtcNow.AddMilliseconds(_config.JoinCodeTtlMs); + + // Přidáme vlastníka + await lobby.AddPlayerAsync(ownerId, ownerName, isOwner: true); + + _logger.LogInformation("Lobby {LobbyId} vytvořeno, join code: {JoinCode}", lobbyId, joinCode); + + return (lobby, joinCode, null); + } + + public async Task<(LobbyActor? Lobby, string? Error)> JoinLobbyAsync( + string clientIp, string clientUuid, string displayName, string joinCode, string? password) + { + // Rate limiting per IP + var limiter = _joinRateLimiters.GetOrAdd(clientIp, _ => new RateLimiter(_config.JoinRateLimitPerMinute, TimeSpan.FromMinutes(1))); + if (!limiter.TryAcquire()) + { + return (null, "Příliš mnoho pokusů o připojení. Počkej chvíli."); + } + + // Najdeme lobby podle join code + if (!_joinCodes.TryGetValue(joinCode.ToUpperInvariant(), out var lobbyId)) + { + return (null, "Neplatný join code"); + } + + // Kontrola expirace + if (_codeExpiry.TryGetValue(joinCode.ToUpperInvariant(), out var expiry) && expiry < DateTime.UtcNow) + { + _joinCodes.TryRemove(joinCode.ToUpperInvariant(), out _); + _codeExpiry.TryRemove(joinCode.ToUpperInvariant(), out _); + return (null, "Join code vypršel"); + } + + if (!_lobbies.TryGetValue(lobbyId, out var lobby)) + { + return (null, "Lobby již neexistuje"); + } + + // Kontrola hesla + if (!string.IsNullOrEmpty(lobby.Settings.Password) && lobby.Settings.Password != password) + { + return (null, "Špatné heslo"); + } + + // Kontrola fáze + if (lobby.Phase != GamePhase.Lobby && !lobby.Settings.AllowJoinInProgress) + { + return (null, "Hra již probíhá"); + } + + // Kontrola počtu hráčů + if (lobby.PlayerCount >= _config.MaxPlayersPerLobby) + { + return (null, "Lobby je plné"); + } + + await lobby.AddPlayerAsync(clientUuid, displayName, isOwner: false); + + _logger.LogInformation("Hráč {ClientUuid} se připojil do lobby {LobbyId}", clientUuid, lobbyId); + + return (lobby, null); + } + + public LobbyActor? GetLobby(string lobbyId) + { + _lobbies.TryGetValue(lobbyId, out var lobby); + return lobby; + } + + public LobbyActor? GetLobbyByJoinCode(string joinCode) + { + if (_joinCodes.TryGetValue(joinCode.ToUpperInvariant(), out var lobbyId)) + { + return GetLobby(lobbyId); + } + return null; + } + + public IEnumerable GetAllLobbies() + { + return _lobbies.Values; + } + + public void RemoveLobby(string lobbyId) + { + if (_lobbies.TryRemove(lobbyId, out var lobby)) + { + // Odstraníme join code + var joinCode = lobby.Settings.JoinCode; + _joinCodes.TryRemove(joinCode, out _); + _codeExpiry.TryRemove(joinCode, out _); + + lobby.Dispose(); + _logger.LogInformation("Lobby {LobbyId} odstraněno", lobbyId); + } + } + + // Čištění idle lobby + public async Task CleanupIdleLobbiesAsync() + { + var now = DateTime.UtcNow; + var idleThreshold = TimeSpan.FromMilliseconds(_config.IdleLobbyTtlMs); + + foreach (var (lobbyId, lobby) in _lobbies) + { + if (now - lobby.LastActivity > idleThreshold) + { + _logger.LogInformation("Ruším idle lobby {LobbyId}", lobbyId); + await lobby.ArchiveAndCloseAsync(); + RemoveLobby(lobbyId); + } + } + + // Čištění expirovaných join codes + foreach (var (code, expiry) in _codeExpiry) + { + if (expiry < now) + { + _joinCodes.TryRemove(code, out _); + _codeExpiry.TryRemove(code, out _); + } + } + } + + private string GenerateJoinCode() + { + Span randomBytes = stackalloc byte[6]; + RandomNumberGenerator.Fill(randomBytes); + + var sb = new StringBuilder(6); + foreach (var b in randomBytes) + { + sb.Append(JoinCodeChars[b % JoinCodeChars.Length]); + } + + var code = sb.ToString(); + + // Pokud kód existuje, generujeme znovu + if (_joinCodes.ContainsKey(code)) + { + return GenerateJoinCode(); + } + + return code; + } + + public int LobbyCount => _lobbies.Count; + + public int TotalPlayerCount => _lobbies.Values.Sum(l => l.PlayerCount); +} + +public class LobbySettings +{ + public required string LobbyId { get; set; } + public required string JoinCode { get; set; } + public string? Password { get; set; } + public Position PlayAreaCenter { get; set; } + public double PlayAreaRadius { get; set; } + public int ImpostorCount { get; set; } + public int TaskCount { get; set; } + public TiePolicy TiePolicy { get; set; } + public int EmergencyMeetingCooldownMs { get; set; } + public int MaxEmergencyMeetingsPerPlayer { get; set; } + public bool AllowJoinInProgress { get; set; } + public Position EmergencyMeetingLocation { get; set; } // Střed play area jako default + + /// Full map data from Overpass (server-side only, for task placement) + public MapData? MapData { get; set; } + + /// Compact map data payload for clients + public MapDataPayload? MapDataPayload { get; set; } + + /// Whether Overpass API was enabled for this lobby + public bool OverpassEnabled { get; set; } +} + +// Jednoduchý rate limiter +public class RateLimiter +{ + private readonly int _maxRequests; + private readonly TimeSpan _window; + private readonly Queue _requests = new(); + private readonly object _lock = new(); + + public RateLimiter(int maxRequests, TimeSpan window) + { + _maxRequests = maxRequests; + _window = window; + } + + public bool TryAcquire() + { + lock (_lock) + { + var now = DateTime.UtcNow; + var cutoff = now - _window; + + // Odstraníme staré požadavky + while (_requests.Count > 0 && _requests.Peek() < cutoff) + { + _requests.Dequeue(); + } + + if (_requests.Count >= _maxRequests) + { + return false; + } + + _requests.Enqueue(now); + return true; + } + } +} + +// Extension pro vytvoření sub-loggeru +public static class LoggerExtensions +{ + public static ILogger CreateLogger(this ILogger logger) + { + if (logger is ILoggerFactory factory) + { + return factory.CreateLogger(); + } + // Fallback - vrátíme prázdný logger + return new LoggerFactory().CreateLogger(); + } +} diff --git a/OverpassService.cs b/OverpassService.cs new file mode 100644 index 0000000..7c87a09 --- /dev/null +++ b/OverpassService.cs @@ -0,0 +1,586 @@ +namespace GeoSus.Server; + +using System.Collections.Concurrent; +using System.Net.Http.Json; +using System.Text.Json; +using System.Text.Json.Serialization; +using Microsoft.Extensions.Logging; + +/// +/// Service for fetching and processing OpenStreetMap data via Overpass API +/// +public class OverpassService +{ + private readonly ServerConfig _config; + private readonly ILogger _logger; + private readonly HttpClient _httpClient; + private readonly ConcurrentDictionary _cache = new(); + + public OverpassService(ServerConfig config, ILogger logger) + { + _config = config; + _logger = logger; + _httpClient = new HttpClient + { + Timeout = TimeSpan.FromSeconds(config.OverpassTimeoutSec) + }; + } + + /// + /// Fetch map data for a circular area, with caching + /// + public async Task GetMapDataAsync(Position center, double radiusMeters) + { + var cacheKey = $"{center.Lat:F5}_{center.Lon:F5}_{radiusMeters:F0}"; + + if (_cache.TryGetValue(cacheKey, out var cached)) + { + _logger.LogDebug("Map data cache hit for {CacheKey}", cacheKey); + return cached; + } + + try + { + var mapData = await FetchMapDataAsync(center, radiusMeters); + if (mapData != null) + { + _cache[cacheKey] = mapData; + + // Clean old cache entries if too many + if (_cache.Count > _config.OverpassCacheMaxEntries) + { + var oldest = _cache.Keys.First(); + _cache.TryRemove(oldest, out _); + } + } + return mapData; + } + catch (Exception ex) + { + _logger.LogError(ex, "Failed to fetch Overpass data for {Center}, radius {Radius}m", center, radiusMeters); + return null; + } + } + + public async Task FetchMapDataAsync(Position center, double radiusMeters) + { + // Build Overpass QL query + var query = BuildOverpassQuery(center, radiusMeters); + + _logger.LogInformation("Fetching Overpass data for center {Center}, radius {Radius}m", center, radiusMeters); + + var response = await _httpClient.PostAsync( + _config.OverpassApiUrl, + new FormUrlEncodedContent(new[] { new KeyValuePair("data", query) }) + ); + + if (!response.IsSuccessStatusCode) + { + _logger.LogError("Overpass API returned {StatusCode}: {Content}", + response.StatusCode, await response.Content.ReadAsStringAsync()); + return null; + } + + var json = await response.Content.ReadAsStringAsync(); + var overpassResult = JsonSerializer.Deserialize(json, new JsonSerializerOptions + { + PropertyNamingPolicy = JsonNamingPolicy.CamelCase + }); + + if (overpassResult == null) + { + _logger.LogError("Failed to parse Overpass response"); + return null; + } + + return ProcessOverpassResult(overpassResult, center, radiusMeters); + } + + private string BuildOverpassQuery(Position center, double radiusMeters) + { + // Query for: roads, paths, buildings, amenities + // We use "around" to get data within radius of center point + return $@" +[out:json][timeout:{_config.OverpassTimeoutSec}]; +( + // Walkable ways (roads, paths, sidewalks) + way[""highway""~""footway|path|pedestrian|steps|track|residential|tertiary|secondary|primary|service|living_street|cycleway|bridleway""] + (around:{radiusMeters},{center.Lat},{center.Lon}); + + // Buildings + way[""building""] + (around:{radiusMeters},{center.Lat},{center.Lon}); + relation[""building""] + (around:{radiusMeters},{center.Lat},{center.Lon}); + + // Interesting POIs for task placement + node[""amenity""] + (around:{radiusMeters},{center.Lat},{center.Lon}); + way[""amenity""] + (around:{radiusMeters},{center.Lat},{center.Lon}); + + // Parks and green areas + way[""leisure""~""park|playground|garden""] + (around:{radiusMeters},{center.Lat},{center.Lon}); + relation[""leisure""~""park|playground|garden""] + (around:{radiusMeters},{center.Lat},{center.Lon}); +); +out body; +>; +out skel qt; +"; + } + + private MapData ProcessOverpassResult(OverpassResult result, Position center, double radiusMeters) + { + var mapData = new MapData + { + Center = center, + RadiusMeters = radiusMeters, + FetchedAt = DateTime.UtcNow + }; + + // Index nodes by ID for quick lookup + var nodesById = new Dictionary(); + foreach (var element in result.Elements) + { + if (element.Type == "node" && element.Lat.HasValue && element.Lon.HasValue) + { + nodesById[element.Id] = new OverpassNode + { + Id = element.Id, + Lat = element.Lat.Value, + Lon = element.Lon.Value, + Tags = element.Tags + }; + } + } + + // Process ways + foreach (var element in result.Elements.Where(e => e.Type == "way")) + { + if (element.Nodes == null || element.Nodes.Count < 2) continue; + + var wayNodes = new List(); + foreach (var nodeId in element.Nodes) + { + if (nodesById.TryGetValue(nodeId, out var node)) + { + wayNodes.Add(new Position(node.Lat, node.Lon)); + } + } + + if (wayNodes.Count < 2) continue; + + var tags = element.Tags ?? new Dictionary(); + + // Classify way type + if (tags.ContainsKey("building")) + { + mapData.Buildings.Add(new MapBuilding + { + Id = $"b_{element.Id}", + Outline = wayNodes, + BuildingType = tags.GetValueOrDefault("building", "yes"), + Name = tags.GetValueOrDefault("name"), + Levels = int.TryParse(tags.GetValueOrDefault("building:levels", "1"), out var l) ? l : 1 + }); + } + else if (tags.ContainsKey("highway")) + { + var highwayType = tags["highway"]; + mapData.Pathways.Add(new MapPathway + { + Id = $"p_{element.Id}", + Points = wayNodes, + PathType = ClassifyPathType(highwayType), + Name = tags.GetValueOrDefault("name"), + IsWalkable = IsWalkableHighway(highwayType), + Width = EstimatePathWidth(highwayType) + }); + } + else if (tags.ContainsKey("leisure")) + { + mapData.Areas.Add(new MapArea + { + Id = $"a_{element.Id}", + Outline = wayNodes, + AreaType = MapAreaType.Park, + Name = tags.GetValueOrDefault("name") + }); + } + else if (tags.ContainsKey("amenity")) + { + // Calculate centroid for POI + var centroid = CalculateCentroid(wayNodes); + mapData.PointsOfInterest.Add(new MapPOI + { + Id = $"poi_{element.Id}", + Position = centroid, + PoiType = ClassifyAmenity(tags["amenity"]), + Name = tags.GetValueOrDefault("name") + }); + } + } + + // Process standalone POI nodes + foreach (var element in result.Elements.Where(e => e.Type == "node" && e.Tags != null)) + { + var tags = element.Tags!; + if (tags.ContainsKey("amenity") && element.Lat.HasValue && element.Lon.HasValue) + { + mapData.PointsOfInterest.Add(new MapPOI + { + Id = $"poi_{element.Id}", + Position = new Position(element.Lat.Value, element.Lon.Value), + PoiType = ClassifyAmenity(tags["amenity"]), + Name = tags.GetValueOrDefault("name") + }); + } + } + + // Build reachability graph and compute reachable positions + BuildReachabilityData(mapData, center, radiusMeters); + + _logger.LogInformation( + "Processed map data: {Buildings} buildings, {Pathways} pathways, {POIs} POIs, {ReachablePoints} reachable points", + mapData.Buildings.Count, mapData.Pathways.Count, mapData.PointsOfInterest.Count, mapData.ReachablePositions.Count); + + return mapData; + } + + private void BuildReachabilityData(MapData mapData, Position center, double radiusMeters) + { + // Build a graph of walkable paths and find connected components from center + var graph = new PathGraph(); + + // Add all walkable pathway segments to graph + foreach (var pathway in mapData.Pathways.Where(p => p.IsWalkable)) + { + for (int i = 0; i < pathway.Points.Count - 1; i++) + { + graph.AddEdge(pathway.Points[i], pathway.Points[i + 1]); + } + } + + // Find all positions reachable from center (or nearest walkable point to center) + var startNode = graph.FindNearestNode(center); + if (startNode == null) + { + _logger.LogWarning("No walkable paths found near center, using all pathway points as reachable"); + // Fallback: all pathway points are considered reachable + foreach (var pathway in mapData.Pathways.Where(p => p.IsWalkable)) + { + mapData.ReachablePositions.AddRange(pathway.Points); + } + return; + } + + // BFS from start node to find all reachable nodes + var reachable = graph.GetReachableNodes(startNode.Value, radiusMeters); + + // Filter to only include points within the play area + foreach (var pos in reachable) + { + if (pos.DistanceTo(center) <= radiusMeters) + { + mapData.ReachablePositions.Add(pos); + } + } + + // Also mark pathways as reachable or not + foreach (var pathway in mapData.Pathways) + { + var reachablePoints = pathway.Points.Count(p => + mapData.ReachablePositions.Any(rp => rp.DistanceTo(p) < 5)); + pathway.IsFullyReachable = reachablePoints == pathway.Points.Count; + pathway.IsPartiallyReachable = reachablePoints > 0; + } + + _logger.LogDebug("Reachability analysis: {Reachable} of {Total} positions are reachable from center", + mapData.ReachablePositions.Count, + mapData.Pathways.Sum(p => p.Points.Count)); + } + + private PathType ClassifyPathType(string highway) + { + return highway switch + { + "footway" or "pedestrian" or "path" => PathType.Footway, + "steps" => PathType.Steps, + "cycleway" => PathType.Cycleway, + "residential" or "living_street" => PathType.Residential, + "service" => PathType.Service, + "tertiary" or "secondary" or "primary" => PathType.Road, + "track" or "bridleway" => PathType.Track, + _ => PathType.Other + }; + } + + private bool IsWalkableHighway(string highway) + { + // Everything except motorways is considered walkable + return highway switch + { + "motorway" or "motorway_link" or "trunk" or "trunk_link" => false, + _ => true + }; + } + + private double EstimatePathWidth(string highway) + { + return highway switch + { + "footway" or "path" => 1.5, + "pedestrian" => 5.0, + "steps" => 2.0, + "cycleway" => 2.0, + "residential" => 6.0, + "living_street" => 5.0, + "service" => 4.0, + "tertiary" => 7.0, + "secondary" => 9.0, + "primary" => 11.0, + _ => 3.0 + }; + } + + private MapPOIType ClassifyAmenity(string amenity) + { + return amenity switch + { + "cafe" or "restaurant" or "fast_food" or "bar" or "pub" => MapPOIType.FoodDrink, + "bank" or "atm" => MapPOIType.Finance, + "pharmacy" or "hospital" or "clinic" or "doctors" => MapPOIType.Health, + "school" or "university" or "library" => MapPOIType.Education, + "fuel" or "parking" => MapPOIType.Transport, + "shop" or "supermarket" or "convenience" => MapPOIType.Shop, + "toilets" or "bench" or "drinking_water" => MapPOIType.Amenity, + _ => MapPOIType.Other + }; + } + + private Position CalculateCentroid(List points) + { + if (points.Count == 0) return new Position(0, 0); + var lat = points.Average(p => p.Lat); + var lon = points.Average(p => p.Lon); + return new Position(lat, lon); + } + + /// + /// Get a random reachable position suitable for placing a task or repair station + /// + public Position? GetRandomReachablePosition(MapData mapData, Random random, double minDistFromCenter = 0) + { + var candidates = mapData.ReachablePositions + .Where(p => p.DistanceTo(mapData.Center) >= minDistFromCenter) + .ToList(); + + if (candidates.Count == 0) + { + // Fallback to any pathway point + candidates = mapData.Pathways + .Where(p => p.IsWalkable) + .SelectMany(p => p.Points) + .Where(p => p.DistanceTo(mapData.Center) <= mapData.RadiusMeters) + .ToList(); + } + + if (candidates.Count == 0) + return null; + + return candidates[random.Next(candidates.Count)]; + } + + /// + /// Get multiple well-distributed reachable positions (e.g., for placing multiple tasks) + /// + public List GetDistributedReachablePositions(MapData mapData, int count, Random random, double minSpacing = 20) + { + var result = new List(); + var available = mapData.ReachablePositions.ToList(); + + // Shuffle available positions + for (int i = available.Count - 1; i > 0; i--) + { + int j = random.Next(i + 1); + (available[i], available[j]) = (available[j], available[i]); + } + + foreach (var pos in available) + { + if (result.Count >= count) break; + + // Check minimum spacing from already selected positions + bool tooClose = result.Any(r => r.DistanceTo(pos) < minSpacing); + if (!tooClose) + { + result.Add(pos); + } + } + + // If we couldn't find enough spaced positions, fill with any available + if (result.Count < count) + { + foreach (var pos in available) + { + if (result.Count >= count) break; + if (!result.Contains(pos)) + { + result.Add(pos); + } + } + } + + return result; + } + + /// + /// Get positions near POIs (better for task placement as they have semantic meaning) + /// + public List GetPOIBasedPositions(MapData mapData, int count, Random random) + { + var result = new List(); + + // Prefer POIs that are reachable + var reachablePOIs = mapData.PointsOfInterest + .Where(poi => mapData.ReachablePositions.Any(rp => rp.DistanceTo(poi.Position) < 10)) + .ToList(); + + // Shuffle + for (int i = reachablePOIs.Count - 1; i > 0; i--) + { + int j = random.Next(i + 1); + (reachablePOIs[i], reachablePOIs[j]) = (reachablePOIs[j], reachablePOIs[i]); + } + + foreach (var poi in reachablePOIs.Take(count)) + { + result.Add(poi.Position); + } + + // Fill remaining with distributed positions + if (result.Count < count) + { + var additional = GetDistributedReachablePositions(mapData, count - result.Count, random); + result.AddRange(additional); + } + + return result; + } +} + +#region Overpass API Response Types + +internal class OverpassResult +{ + [JsonPropertyName("elements")] + public List Elements { get; set; } = new(); +} + +internal class OverpassElement +{ + [JsonPropertyName("type")] + public string Type { get; set; } = ""; + + [JsonPropertyName("id")] + public long Id { get; set; } + + [JsonPropertyName("lat")] + public double? Lat { get; set; } + + [JsonPropertyName("lon")] + public double? Lon { get; set; } + + [JsonPropertyName("nodes")] + public List? Nodes { get; set; } + + [JsonPropertyName("tags")] + public Dictionary? Tags { get; set; } +} + +internal class OverpassNode +{ + public long Id { get; set; } + public double Lat { get; set; } + public double Lon { get; set; } + public Dictionary? Tags { get; set; } +} + +#endregion + +#region Path Graph for Reachability + +internal class PathGraph +{ + private readonly Dictionary> _adjacency = new(); + private readonly List _allNodes = new(); + + public void AddEdge(Position a, Position b) + { + if (!_adjacency.ContainsKey(a)) + { + _adjacency[a] = new HashSet(); + _allNodes.Add(a); + } + if (!_adjacency.ContainsKey(b)) + { + _adjacency[b] = new HashSet(); + _allNodes.Add(b); + } + + _adjacency[a].Add(b); + _adjacency[b].Add(a); + } + + public Position? FindNearestNode(Position target) + { + if (_allNodes.Count == 0) return null; + + Position? nearest = null; + double minDist = double.MaxValue; + + foreach (var node in _allNodes) + { + var dist = node.DistanceTo(target); + if (dist < minDist) + { + minDist = dist; + nearest = node; + } + } + + return nearest; + } + + public HashSet GetReachableNodes(Position start, double maxDistance) + { + var visited = new HashSet(); + var queue = new Queue(); + + queue.Enqueue(start); + visited.Add(start); + + while (queue.Count > 0) + { + var current = queue.Dequeue(); + + if (!_adjacency.TryGetValue(current, out var neighbors)) + continue; + + foreach (var neighbor in neighbors) + { + if (!visited.Contains(neighbor) && neighbor.DistanceTo(start) <= maxDistance) + { + visited.Add(neighbor); + queue.Enqueue(neighbor); + } + } + } + + return visited; + } +} + +#endregion diff --git a/Persistence.cs b/Persistence.cs new file mode 100644 index 0000000..6b0f506 --- /dev/null +++ b/Persistence.cs @@ -0,0 +1,245 @@ +namespace GeoSus.Server; + +using System.Security.Cryptography; +using System.Text; +using System.Text.Json; +using Microsoft.Extensions.Logging; + +// Write-Ahead Log a Snapshoty pro persistenci +public class Persistence +{ + private readonly ServerConfig _config; + private readonly ILogger _logger; + private readonly object _walLock = new(); + + public Persistence(ServerConfig config, ILogger logger) + { + _config = config; + _logger = logger; + + // Vytvoříme adresář pro data + Directory.CreateDirectory(_config.DataPath); + } + + #region WAL + + public void AppendToWal(string lobbyId, GameEvent evt) + { + var lobbyDir = GetLobbyDir(lobbyId); + Directory.CreateDirectory(lobbyDir); + + var walPath = GetCurrentWalPath(lobbyDir); + var json = JsonSerializer.Serialize(evt, JsonOptions.Default); + + lock (_walLock) + { + // Kontrola velikosti WAL + if (File.Exists(walPath)) + { + var fileInfo = new FileInfo(walPath); + if (fileInfo.Length > _config.WalMaxSizeMb * 1024 * 1024) + { + // Rotace - nový soubor + var newWalPath = Path.Combine(lobbyDir, $"wal_{DateTime.UtcNow:yyyyMMddHHmmss}.ndjson"); + walPath = newWalPath; + } + } + + using var fs = new FileStream(walPath, FileMode.Append, FileAccess.Write, FileShare.Read); + using var writer = new StreamWriter(fs, Encoding.UTF8); + writer.WriteLine(json); + writer.Flush(); + fs.Flush(true); // fsync + } + } + + public List ReadWal(string lobbyId, long fromEventId = 0) + { + var lobbyDir = GetLobbyDir(lobbyId); + var events = new List(); + + if (!Directory.Exists(lobbyDir)) + return events; + + // Načteme všechny WAL soubory seřazené podle času + var walFiles = Directory.GetFiles(lobbyDir, "wal_*.ndjson") + .OrderBy(f => f) + .ToList(); + + foreach (var walPath in walFiles) + { + try + { + var lines = File.ReadAllLines(walPath, Encoding.UTF8); + foreach (var line in lines) + { + if (string.IsNullOrWhiteSpace(line)) continue; + + var evt = JsonSerializer.Deserialize(line, JsonOptions.Default); + if (evt != null && evt.EventId > fromEventId) + { + events.Add(evt); + } + } + } + catch (Exception ex) + { + _logger.LogError(ex, "Chyba při čtení WAL {Path}", walPath); + } + } + + return events.OrderBy(e => e.EventId).ToList(); + } + + private string GetCurrentWalPath(string lobbyDir) + { + // Najdeme nejnovější WAL nebo vytvoříme nový + var walFiles = Directory.GetFiles(lobbyDir, "wal_*.ndjson"); + if (walFiles.Length == 0) + { + return Path.Combine(lobbyDir, $"wal_{DateTime.UtcNow:yyyyMMddHHmmss}.ndjson"); + } + return walFiles.OrderByDescending(f => f).First(); + } + + #endregion + + #region Snapshots + + public void SaveSnapshot(string lobbyId, LobbySnapshot snapshot) + { + var lobbyDir = GetLobbyDir(lobbyId); + Directory.CreateDirectory(lobbyDir); + + // Serializujeme bez checksumu + snapshot.Timestamp = DateTime.UtcNow; + var json = JsonSerializer.Serialize(snapshot, JsonOptions.Indented); + + // Spočítáme checksum + var checksum = ComputeChecksum(json); + snapshot.Checksum = checksum; + + // Serializujeme znovu s checksumem + json = JsonSerializer.Serialize(snapshot, JsonOptions.Indented); + + var snapshotPath = Path.Combine(lobbyDir, $"snapshot_{snapshot.LastEventId}.json"); + var tempPath = snapshotPath + ".tmp"; + + // Atomic write - temp + rename + File.WriteAllText(tempPath, json, Encoding.UTF8); + File.Move(tempPath, snapshotPath, overwrite: true); + + _logger.LogInformation("Snapshot uložen: {Path}, eventId: {EventId}", snapshotPath, snapshot.LastEventId); + + // Čištění starých snapshotů + CleanupOldSnapshots(lobbyDir); + } + + public LobbySnapshot? LoadLatestSnapshot(string lobbyId) + { + var lobbyDir = GetLobbyDir(lobbyId); + + if (!Directory.Exists(lobbyDir)) + return null; + + var snapshotFiles = Directory.GetFiles(lobbyDir, "snapshot_*.json") + .OrderByDescending(f => f) + .ToList(); + + foreach (var snapshotPath in snapshotFiles) + { + try + { + var json = File.ReadAllText(snapshotPath, Encoding.UTF8); + var snapshot = JsonSerializer.Deserialize(json, JsonOptions.Default); + + if (snapshot == null) continue; + + // Validace checksumu + var storedChecksum = snapshot.Checksum; + snapshot.Checksum = ""; + var jsonWithoutChecksum = JsonSerializer.Serialize(snapshot, JsonOptions.Indented); + var computedChecksum = ComputeChecksum(jsonWithoutChecksum); + + if (storedChecksum != computedChecksum) + { + _logger.LogWarning("Checksum mismatch pro snapshot {Path}", snapshotPath); + continue; + } + + snapshot.Checksum = storedChecksum; + return snapshot; + } + catch (Exception ex) + { + _logger.LogError(ex, "Chyba při čtení snapshot {Path}", snapshotPath); + } + } + + return null; + } + + private void CleanupOldSnapshots(string lobbyDir, int keepCount = 5) + { + var snapshotFiles = Directory.GetFiles(lobbyDir, "snapshot_*.json") + .OrderByDescending(f => f) + .Skip(keepCount) + .ToList(); + + foreach (var oldSnapshot in snapshotFiles) + { + try + { + File.Delete(oldSnapshot); + _logger.LogDebug("Smazán starý snapshot: {Path}", oldSnapshot); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "Nelze smazat snapshot {Path}", oldSnapshot); + } + } + } + + private static string ComputeChecksum(string content) + { + var bytes = Encoding.UTF8.GetBytes(content); + var hash = SHA256.HashData(bytes); + return Convert.ToHexString(hash).ToLowerInvariant(); + } + + #endregion + + #region Archive + + public void ArchiveLobby(string lobbyId) + { + var lobbyDir = GetLobbyDir(lobbyId); + if (!Directory.Exists(lobbyDir)) + return; + + var archiveDir = Path.Combine(_config.DataPath, "archive"); + Directory.CreateDirectory(archiveDir); + + var archivePath = Path.Combine(archiveDir, $"{lobbyId}_{DateTime.UtcNow:yyyyMMddHHmmss}"); + Directory.Move(lobbyDir, archivePath); + + _logger.LogInformation("Lobby archivováno: {LobbyId} -> {ArchivePath}", lobbyId, archivePath); + } + + public void DeleteLobbyData(string lobbyId) + { + var lobbyDir = GetLobbyDir(lobbyId); + if (Directory.Exists(lobbyDir)) + { + Directory.Delete(lobbyDir, recursive: true); + _logger.LogInformation("Data lobby smazána: {LobbyId}", lobbyId); + } + } + + #endregion + + private string GetLobbyDir(string lobbyId) + { + return Path.Combine(_config.DataPath, "lobbies", lobbyId); + } +} diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..16ffc9a --- /dev/null +++ b/Program.cs @@ -0,0 +1,769 @@ +namespace GeoSus.Server; + +using Microsoft.Extensions.Logging; +using System.Collections.Concurrent; +using System.Net; +using System.Net.Sockets; +using System.Text; +using System.Text.Json; + +// Hlavní vstupní bod serveru +public class Program +{ + static readonly ConcurrentDictionary _clients = new(); + static readonly DateTime _startTime = DateTime.UtcNow; + static ServerConfig _config = null!; + static ServerEncryption _encryption = null!; + static LobbyManager _lobbyManager = null!; + static StatsDb _statsDb = null!; + static Persistence _persistence = null!; + static OverpassService _overpassService = null!; + static AdminPanel _adminPanel = null!; + static ILoggerFactory _loggerFactory = null!; + static ILogger _logger = null!; + static CancellationTokenSource _cts = new(); + + // Public accessor for admin panel + public static DateTime StartTime => _startTime; + + public static async Task Main(string[] args) + { + Console.OutputEncoding = Encoding.UTF8; + + // Inicializace + _loggerFactory = LoggerFactory.Create(builder => + { + builder.AddConsole(); + builder.SetMinimumLevel(LogLevel.Information); + }); + _logger = _loggerFactory.CreateLogger(); + + // Načtení konfigurace + _config = ServerConfig.Load("appsettings.json"); + + // Uložíme výchozí config pokud neexistuje + if (!File.Exists("appsettings.json")) + { + _config.Save("appsettings.json"); + _logger.LogInformation("Vytvořen výchozí appsettings.json"); + } + + // Inicializace komponent + _encryption = new ServerEncryption(_config.RsaKeySizeBits); + _statsDb = new StatsDb(Path.Combine(_config.DataPath, "stats.db"), _loggerFactory.CreateLogger()); + _persistence = new Persistence(_config, _loggerFactory.CreateLogger()); + _overpassService = new OverpassService(_config, _loggerFactory.CreateLogger()); + _lobbyManager = new LobbyManager(_config, _loggerFactory.CreateLogger(), _statsDb, _persistence, _overpassService); + _adminPanel = new AdminPanel(_loggerFactory.CreateLogger(), _config, _lobbyManager, _statsDb); + + _logger.LogInformation("GeoSus Server spouštím..."); + _logger.LogInformation("TCP port: {TcpPort}, HTTP port: {HttpPort}", _config.TcpPort, _config.HttpPort); + + // Handle shutdown signals - but only on explicit request + var shutdownRequested = false; + Console.CancelKeyPress += (s, e) => + { + if (!shutdownRequested) + { + shutdownRequested = true; + e.Cancel = true; + _logger.LogInformation("Shutdown requested (Ctrl+C)... press again to force"); + } + else + { + _logger.LogInformation("Force shutdown..."); + _cts.Cancel(); + } + }; + + // Spustíme TCP listener a HTTP API paralelně + var tcpTask = RunTcpServerAsync(); + var httpTask = RunHttpServerAsync(); + var cleanupTask = RunCleanupLoopAsync(); + var broadcastTask = RunBroadcastLoopAsync(); + + _logger.LogInformation("Server běží. Stiskni Ctrl+C dvakrát pro ukončení."); + + // Just wait forever until cancellation - don't monitor individual tasks + try + { + await Task.Delay(Timeout.Infinite, _cts.Token); + } + catch (OperationCanceledException) + { + _logger.LogInformation("Shutting down..."); + } + + _statsDb.Dispose(); + _encryption.Dispose(); + + _logger.LogInformation("Server ukončen"); + } + + #region TCP Server + + static async Task RunTcpServerAsync() + { + var listener = new TcpListener(IPAddress.Any, _config.TcpPort); + listener.Start(); + + _logger.LogInformation("TCP server naslouchá na portu {Port}", _config.TcpPort); + + try + { + while (!_cts.IsCancellationRequested) + { + try + { + var tcpClient = await listener.AcceptTcpClientAsync(_cts.Token); + _ = HandleClientAsync(tcpClient); + } + catch (SocketException ex) + { + _logger.LogWarning(ex, "Socket error while accepting client"); + } + } + } + catch (OperationCanceledException) + { + _logger.LogInformation("TCP server ukončen (cancelled)"); + } + catch (Exception ex) + { + _logger.LogError(ex, "TCP server fatal error"); + } + finally + { + listener.Stop(); + } + } + + static async Task HandleClientAsync(TcpClient tcpClient) + { + var endpoint = tcpClient.Client.RemoteEndPoint?.ToString() ?? "unknown"; + _logger.LogDebug("Nové spojení z {Endpoint}", endpoint); + + using var stream = tcpClient.GetStream(); + ConnectedClient? client = null; + + try + { + // Handshake - plain JSON + client = await PerformHandshakeAsync(stream, endpoint); + + if (client == null) + { + _logger.LogWarning("Handshake selhal pro {Endpoint}", endpoint); + return; + } + + _clients[client.ClientUuid] = client; + _logger.LogInformation("Klient {Uuid} připojen z {Endpoint}", client.ClientUuid, endpoint); + + // Hlavní smyčka zpráv - šifrované + await ProcessMessagesAsync(stream, client); + } + catch (Exception ex) when (ex is not OperationCanceledException) + { + _logger.LogError(ex, "Chyba při zpracování klienta {Endpoint}", endpoint); + } + finally + { + if (client != null) + { + _clients.TryRemove(client.ClientUuid, out _); + + // Odebrat z lobby pokud byl přihlášen + if (client.Lobby != null) + { + client.Lobby.UnregisterConnection(client.ClientUuid); + await client.Lobby.RemovePlayerAsync(client.ClientUuid, "Disconnected"); + } + + client.Session?.Dispose(); + _logger.LogInformation("Klient {Uuid} odpojen", client.ClientUuid); + } + + tcpClient.Close(); + } + } + + static async Task PerformHandshakeAsync(NetworkStream stream, string endpoint) + { + // 1. Čekáme na ClientHello (plain) + var helloData = await ReadMessageAsync(stream); + if (helloData == null) return null; + + // Debug: log co přichází + _logger.LogInformation("Handshake from {Endpoint}: {Length} bytes, first: 0x{First:X2}, content: {Content}", + endpoint, helloData.Length, helloData[0], + System.Text.Encoding.UTF8.GetString(helloData.AsSpan(0, Math.Min(200, helloData.Length)))); + + var hello = MessageSerializer.Deserialize(helloData) as ClientHello; + if (hello == null) + { + _logger.LogWarning("Neplatný ClientHello z {Endpoint}", endpoint); + return null; + } + + // 2. Posíláme ServerHello s RSA public key (plain) + var serverHello = new ServerHello + { + RsaPublicKeyPem = _encryption.PublicKeyPem, + ServerId = Environment.MachineName + }; + await SendMessagePlainAsync(stream, serverHello); + + // 3. Čekáme na KeyExchange (plain - obsahuje RSA šifrovaný session key) + var keyExData = await ReadMessageAsync(stream); + if (keyExData == null) return null; + + // Debug: hex dump prvních 20 bajtů + var hexDump = BitConverter.ToString(keyExData, 0, Math.Min(20, keyExData.Length)); + _logger.LogInformation("KeyExchange from {Endpoint}: {Length} bytes, hex: {Hex}", + endpoint, keyExData.Length, hexDump); + + var keyEx = MessageSerializer.Deserialize(keyExData) as KeyExchange; + if (keyEx == null) + { + _logger.LogWarning("Neplatný KeyExchange z {Endpoint}", endpoint); + return null; + } + + // 4. Dešifrujeme session key + byte[] sessionKey, sessionIv; + try + { + (sessionKey, sessionIv) = _encryption.DecryptSessionKey(keyEx.EncryptedSessionKey, keyEx.EncryptedIV); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "Chyba při dešifrování session key z {Endpoint}", endpoint); + return null; + } + + var session = new SessionCrypto(sessionKey, sessionIv); + + // 5. Posíláme KeyExchangeAck (šifrovaně) + var ack = new KeyExchangeAck { Status = "success" }; + await SendMessageEncryptedAsync(stream, ack, session); + + return new ConnectedClient + { + ClientUuid = hello.ClientUuid, + DisplayName = hello.DisplayName ?? $"Player_{hello.ClientUuid[..4]}", + Endpoint = endpoint, + Session = session, + Stream = stream + }; + } + + static async Task ProcessMessagesAsync(NetworkStream stream, ConnectedClient client) + { + int decryptFailures = 0; + + while (!_cts.IsCancellationRequested) + { + var encrypted = await ReadMessageAsync(stream); + if (encrypted == null) break; + + // Dešifrovat + var decrypted = client.Session!.Decrypt(encrypted); + if (decrypted == null) + { + decryptFailures++; + _logger.LogWarning("Dešifrování selhalo pro {Uuid} ({Count}x)", client.ClientUuid, decryptFailures); + + if (decryptFailures >= 3) + { + _logger.LogWarning("Příliš mnoho chyb dešifrování, odpojuji {Uuid}", client.ClientUuid); + break; + } + continue; + } + + decryptFailures = 0; + + var message = MessageSerializer.Deserialize(decrypted); + if (message == null) + { + _logger.LogWarning("Neplatná zpráva od {Uuid}", client.ClientUuid); + continue; + } + + await HandleMessageAsync(client, message); + } + } + + static async Task HandleMessageAsync(ConnectedClient client, Message message) + { + switch (message) + { + case CreateLobby m: + await HandleCreateLobbyAsync(client, m); + break; + + case JoinLobby m: + await HandleJoinLobbyAsync(client, m); + break; + + case Reconnect m: + await HandleReconnectAsync(client, m); + break; + + default: + // Předat do lobby pokud je přihlášen + if (client.Lobby != null) + { + await client.Lobby.HandleMessageAsync(client.ClientUuid, message); + } + else + { + var error = new ErrorMessage + { + ErrorCode = "NOT_IN_LOBBY", + ErrorText = "Nejsi v žádném lobby" + }; + await SendToClientAsync(client, error); + } + break; + } + } + + static async Task HandleCreateLobbyAsync(ConnectedClient client, CreateLobby message) + { + var (lobby, joinCode, error) = await _lobbyManager.CreateLobbyAsync( + client.ClientUuid, client.DisplayName, message); + + var response = new CreateLobbyResponse + { + ClientSeq = message.ClientSeq, + Success = lobby != null, + JoinCode = joinCode, + LobbyId = lobby?.Settings.LobbyId, + Error = error, + LobbyState = lobby?.GetLobbyState() + }; + + if (lobby != null) + { + client.Lobby = lobby; + lobby.RegisterConnection(client.ClientUuid, new ClientConnection + { + ClientUuid = client.ClientUuid, + SendAsync = msg => SendToClientAsync(client, msg) + }); + } + + await SendToClientAsync(client, response); + } + + static async Task HandleJoinLobbyAsync(ConnectedClient client, JoinLobby message) + { + var clientIp = client.Endpoint.Split(':')[0]; + var (lobby, error) = await _lobbyManager.JoinLobbyAsync( + clientIp, client.ClientUuid, client.DisplayName, message.JoinCode, message.Password); + + var response = new JoinLobbyResponse + { + ClientSeq = message.ClientSeq, + Success = lobby != null, + LobbyId = lobby?.Settings.LobbyId, + Error = error, + LobbyState = lobby?.GetLobbyState() + }; + + if (lobby != null) + { + client.Lobby = lobby; + lobby.RegisterConnection(client.ClientUuid, new ClientConnection + { + ClientUuid = client.ClientUuid, + SendAsync = msg => SendToClientAsync(client, msg) + }); + } + + await SendToClientAsync(client, response); + } + + static async Task HandleReconnectAsync(ConnectedClient client, Reconnect message) + { + var lobby = _lobbyManager.GetLobby(message.LobbyId); + + if (lobby == null) + { + await SendToClientAsync(client, new ReconnectResponse + { + Success = false, + Error = "Lobby neexistuje" + }); + return; + } + + // Načteme snapshot a eventy + var snapshot = _persistence.LoadLatestSnapshot(message.LobbyId); + var events = _persistence.ReadWal(message.LobbyId, message.LastEventId); + + client.Lobby = lobby; + lobby.RegisterConnection(client.ClientUuid, new ClientConnection + { + ClientUuid = client.ClientUuid, + SendAsync = msg => SendToClientAsync(client, msg) + }); + + await lobby.AddPlayerAsync(client.ClientUuid, client.DisplayName, isOwner: false); + + await SendToClientAsync(client, new ReconnectResponse + { + Success = true, + Snapshot = snapshot, + MissedEvents = events + }); + } + + #endregion + + #region HTTP Stats API + + static async Task RunHttpServerAsync() + { + HttpListener? listener = null; + bool isDocker = Environment.GetEnvironmentVariable("DOTNET_RUNNING_IN_CONTAINER") == "true" + || Environment.GetEnvironmentVariable("DOTNET_ENVIRONMENT") == "Production"; + + // V Dockeru/produkci bindujeme na 0.0.0.0 (všechny interfaces) + // Lokálně bindujeme na localhost (nevyžaduje admin práva na Windows) + var prefixes = isDocker + ? new[] { $"http://+:{_config.HttpPort}/", $"http://*:{_config.HttpPort}/" } + : new[] { $"http://localhost:{_config.HttpPort}/", $"http://127.0.0.1:{_config.HttpPort}/" }; + + foreach (var prefixSet in new[] { prefixes }) + { + try + { + listener = new HttpListener(); + foreach (var prefix in prefixSet) + listener.Prefixes.Add(prefix); + listener.Start(); + _logger.LogInformation("HTTP Stats API naslouchá na portu {Port} (Docker: {IsDocker})", _config.HttpPort, isDocker); + break; + } + catch (HttpListenerException ex) + { + _logger.LogWarning("Nelze spustit HTTP Stats API: {Error}", ex.Message); + listener?.Close(); + listener = null; + } + } + + if (listener == null) + { + _logger.LogWarning("HTTP Stats API není dostupné - nelze otevřít port {Port}. Server běží bez Stats API.", _config.HttpPort); + // Just wait for cancellation instead of crashing + try { await Task.Delay(Timeout.Infinite, _cts.Token); } catch (OperationCanceledException) { } + return; + } + + try + { + while (!_cts.IsCancellationRequested) + { + var context = await listener.GetContextAsync(); + _ = HandleHttpRequestAsync(context); + } + } + catch (HttpListenerException) when (_cts.IsCancellationRequested) + { + // Normal shutdown + } + catch (ObjectDisposedException) when (_cts.IsCancellationRequested) + { + // Normal shutdown + } + catch (Exception ex) + { + _logger.LogError(ex, "HTTP listener error"); + } + finally + { + listener?.Stop(); + } + } + + static async Task HandleHttpRequestAsync(HttpListenerContext context) + { + var request = context.Request; + var response = context.Response; + + // CORS headers + response.Headers.Add("Access-Control-Allow-Origin", "*"); + response.Headers.Add("Access-Control-Allow-Methods", "GET, POST, OPTIONS"); + response.Headers.Add("Access-Control-Allow-Headers", "Content-Type, Authorization"); + + if (request.HttpMethod == "OPTIONS") + { + response.StatusCode = 200; + response.Close(); + return; + } + + try + { + var path = request.Url?.AbsolutePath ?? "/"; + + // Admin panel routes + if (path.StartsWith("/admin")) + { + await _adminPanel.HandleRequestAsync(context); + return; + } + + if (path.StartsWith("/stats/leaderboard")) + { + await HandleLeaderboardAsync(request, response); + } + else if (path.StartsWith("/stats/")) + { + var clientUuid = path[7..]; // Remove "/stats/" + await HandlePlayerStatsAsync(clientUuid, response); + } + else if (path == "/health") + { + var uptime = DateTime.UtcNow - _startTime; + await WriteJsonResponseAsync(response, new + { + status = "ok", + version = "1.0.0", + uptimeSeconds = (long)uptime.TotalSeconds, + activeLobbies = _lobbyManager.LobbyCount, + connectedPlayers = _lobbyManager.TotalPlayerCount + }); + } + else + { + response.StatusCode = 404; + await WriteJsonResponseAsync(response, new { error = "Not found" }); + } + + response.Close(); + } + catch (Exception ex) + { + _logger.LogError(ex, "HTTP error"); + try + { + response.StatusCode = 500; + await WriteJsonResponseAsync(response, new { error = "Internal server error" }); + response.Close(); + } + catch { /* Already closed */ } + } + } + + static async Task HandlePlayerStatsAsync(string clientUuid, HttpListenerResponse response) + { + var stats = _statsDb.GetPlayerStats(clientUuid); + + if (stats == null) + { + response.StatusCode = 404; + await WriteJsonResponseAsync(response, new { error = "Player not found" }); + return; + } + + var result = new + { + clientUuid = stats.ClientUuid, + displayName = stats.DisplayName, + totalGames = stats.TotalGames, + gamesAsCrew = stats.GamesAsCrew, + gamesAsImpostor = stats.GamesAsImpostor, + crewWins = stats.CrewWins, + impostorWins = stats.ImpostorWins, + crewWinRate = Math.Round(stats.CrewWinRate, 2), + impostorWinRate = Math.Round(stats.ImpostorWinRate, 2), + totalKills = stats.TotalKills, + totalDeaths = stats.TotalDeaths, + killDeathRatio = Math.Round(stats.KillDeathRatio, 2), + tasksCompleted = stats.TasksCompleted, + averageTasksPerGame = Math.Round(stats.AverageTasksPerGame, 2), + bodiesReported = stats.BodiesReported, + emergencyMeetingsCalled = stats.EmergencyMeetingsCalled, + timesVotedOut = stats.TimesVotedOut, + successfulVotes = stats.SuccessfulVotes, + totalPlaytimeSeconds = stats.TotalPlaytimeSeconds, + cheatIncidents = stats.CheatIncidents, + lastSeen = stats.LastSeenUtc + }; + + await WriteJsonResponseAsync(response, result); + } + + static async Task HandleLeaderboardAsync(HttpListenerRequest request, HttpListenerResponse response) + { + var sortBy = request.QueryString["sortBy"] ?? "total_games"; + var limitStr = request.QueryString["limit"] ?? "100"; + var limit = int.TryParse(limitStr, out var l) ? l : 100; + limit = Math.Min(limit, 1000); + + var leaderboard = _statsDb.GetLeaderboard(sortBy, limit); + + var result = leaderboard.Select(s => new + { + clientUuid = s.ClientUuid, + displayName = s.DisplayName, + totalGames = s.TotalGames, + crewWins = s.CrewWins, + impostorWins = s.ImpostorWins, + totalKills = s.TotalKills, + tasksCompleted = s.TasksCompleted + }); + + await WriteJsonResponseAsync(response, result); + } + + static async Task WriteJsonResponseAsync(HttpListenerResponse response, object data) + { + response.ContentType = "application/json"; + var json = JsonSerializer.Serialize(data, JsonOptions.Default); + var bytes = Encoding.UTF8.GetBytes(json); + response.ContentLength64 = bytes.Length; + await response.OutputStream.WriteAsync(bytes); + } + + #endregion + + #region Background tasks + + static async Task RunCleanupLoopAsync() + { + try + { + using var timer = new PeriodicTimer(TimeSpan.FromMinutes(5)); + + while (await timer.WaitForNextTickAsync(_cts.Token)) + { + try + { + await _lobbyManager.CleanupIdleLobbiesAsync(); + } + catch (Exception ex) + { + _logger.LogError(ex, "Chyba při cleanup"); + } + } + } + catch (OperationCanceledException) + { + // Normal shutdown + } + } + + static async Task RunBroadcastLoopAsync() + { + try + { + using var timer = new PeriodicTimer(TimeSpan.FromMilliseconds(_config.PositionBroadcastRateMs)); + + while (await timer.WaitForNextTickAsync(_cts.Token)) + { + foreach (var client in _clients.Values) + { + client.Lobby?.BroadcastPositions(); + } + } + } + catch (OperationCanceledException) + { + // Normal shutdown + } + } + + #endregion + + #region Network helpers + + static async Task ReadMessageAsync(NetworkStream stream) + { + // 4 bytes length prefix (big-endian) + var lengthBuffer = new byte[4]; + var read = await stream.ReadAsync(lengthBuffer, 0, 4); + if (read < 4) return null; + + if (BitConverter.IsLittleEndian) + Array.Reverse(lengthBuffer); + var length = BitConverter.ToInt32(lengthBuffer, 0); + + if (length <= 0 || length > _config.MaxPacketSizeBytes) + return null; + + var buffer = new byte[length]; + var totalRead = 0; + while (totalRead < length) + { + read = await stream.ReadAsync(buffer, totalRead, length - totalRead); + if (read == 0) return null; + totalRead += read; + } + + return buffer; + } + + static async Task SendMessagePlainAsync(NetworkStream stream, Message message) + { + var data = MessageSerializer.Serialize(message); + await SendDataAsync(stream, data); + } + + static async Task SendMessageEncryptedAsync(NetworkStream stream, Message message, SessionCrypto session) + { + var plain = MessageSerializer.Serialize(message); + var encrypted = session.Encrypt(plain); + await SendDataAsync(stream, encrypted); + } + + static async Task SendDataAsync(NetworkStream stream, byte[] data) + { + var lengthBuffer = BitConverter.GetBytes(data.Length); + if (BitConverter.IsLittleEndian) + Array.Reverse(lengthBuffer); + + await stream.WriteAsync(lengthBuffer); + await stream.WriteAsync(data); + await stream.FlushAsync(); + } + + static async Task SendToClientAsync(ConnectedClient client, Message message) + { + if (client.Session == null || client.Stream == null) return; + + var plain = MessageSerializer.Serialize(message); + var encrypted = client.Session.Encrypt(plain); + + lock (client.SendLock) + { + try + { + SendDataAsync(client.Stream, encrypted).Wait(); + } + catch (Exception ex) + { + _logger.LogWarning(ex, "Chyba při odesílání do {Uuid}", client.ClientUuid); + } + } + } + + #endregion +} + +// Connected client state +class ConnectedClient +{ + public required string ClientUuid { get; set; } + public required string DisplayName { get; set; } + public required string Endpoint { get; set; } + public SessionCrypto? Session { get; set; } + public NetworkStream? Stream { get; set; } + public LobbyActor? Lobby { get; set; } + public object SendLock { get; } = new(); +} diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json new file mode 100644 index 0000000..9d3babd --- /dev/null +++ b/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "Server": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:9091;http://localhost:9092" + } + } +} \ No newline at end of file diff --git a/Protocol.cs b/Protocol.cs new file mode 100644 index 0000000..2793135 --- /dev/null +++ b/Protocol.cs @@ -0,0 +1,948 @@ +namespace GeoSus.Server; + +using System.Text.Json; +using System.Text.Json.Serialization; + +#region Základní typy + +public record struct Position(double Lat, double Lon) +{ + // Haversine vzdálenost v metrech + public double DistanceTo(Position other) + { + const double R = 6371000; // Poloměr Země v metrech + var lat1 = Lat * Math.PI / 180; + var lat2 = other.Lat * Math.PI / 180; + var dLat = (other.Lat - Lat) * Math.PI / 180; + var dLon = (other.Lon - Lon) * Math.PI / 180; + + var a = Math.Sin(dLat / 2) * Math.Sin(dLat / 2) + + Math.Cos(lat1) * Math.Cos(lat2) * + Math.Sin(dLon / 2) * Math.Sin(dLon / 2); + var c = 2 * Math.Atan2(Math.Sqrt(a), Math.Sqrt(1 - a)); + + return R * c; + } +} + +public enum PlayerRole { Crew, Impostor } +public enum PlayerState { Alive, Dead } +public enum CheatStatus { Ok, Warn, Restrict, Kicked } +public enum GamePhase { Lobby, Loading, Playing, Meeting, Voting, Ended } +public enum TaskType { Instant } +public enum MeetingType { BodyReport, Emergency } + +// Sabotage system +public enum SabotageType +{ + /// Comms Blackout - Cannot report bodies or call emergency meetings + CommsBlackout, + /// Critical Meltdown - Must be repaired in time or impostors win (requires 2 simultaneous repairs) + CriticalMeltdown +} + +public enum SabotageState +{ + Inactive, + Active, + Repaired +} + +// Map data types +public enum PathType +{ + Footway, + Steps, + Cycleway, + Residential, + Service, + Road, + Track, + Other +} + +public enum MapAreaType +{ + Park, + Playground, + Garden, + Water, + Other +} + +public enum MapPOIType +{ + FoodDrink, + Finance, + Health, + Education, + Transport, + Shop, + Amenity, + Other +} + +#endregion + +#region Herní entity + +public class Player +{ + public required string ClientUuid { get; set; } + public required string DisplayName { get; set; } + public Position Position { get; set; } + public PlayerRole Role { get; set; } = PlayerRole.Crew; + public PlayerState State { get; set; } = PlayerState.Alive; + public CheatStatus CheatStatus { get; set; } = CheatStatus.Ok; + public int CheatScore { get; set; } + public DateTime ConnectedAt { get; set; } = DateTime.UtcNow; + public DateTime LastPositionUpdate { get; set; } = DateTime.UtcNow; + public DateTime? LastKillTime { get; set; } + public DateTime? LastEmergencyMeetingTime { get; set; } + public int EmergencyMeetingsUsed { get; set; } + public List CompletedTaskIds { get; set; } = new(); + public List Tasks { get; set; } = new(); // Per-player tasks + public string? CurrentTaskId { get; set; } + public DateTime? TaskStartTime { get; set; } + public bool IsOwner { get; set; } + public bool IsReady { get; set; } + public long LastEventId { get; set; } + public int Ping { get; set; } + + // Historie pozic pro anti-cheat + public Queue<(Position Pos, DateTime Time)> PositionHistory { get; set; } = new(); +} + +public class Body +{ + public required string BodyId { get; set; } + public required string VictimId { get; set; } + public required string KillerId { get; set; } + public Position Location { get; set; } + public DateTime KilledAt { get; set; } = DateTime.UtcNow; + public bool Reported { get; set; } + public string? ReportedBy { get; set; } +} + +public class GameTask +{ + public required string TaskId { get; set; } + public required string Name { get; set; } + public Position Location { get; set; } + public TaskType Type { get; set; } = TaskType.Instant; +} + +public class Meeting +{ + public required string MeetingId { get; set; } + public MeetingType Type { get; set; } + public string? ReportedBodyId { get; set; } + public required string CallerId { get; set; } + public Position MeetingLocation { get; set; } + public DateTime StartTime { get; set; } = DateTime.UtcNow; + public DateTime ArrivalDeadline { get; set; } + public DateTime? DiscussionEndTime { get; set; } + public DateTime VotingEndTime { get; set; } + public HashSet ArrivedPlayers { get; set; } = new(); + public Dictionary Votes { get; set; } = new(); // Voter -> Target (null = skip) + public DateTime? LastVoteChangeTime { get; set; } +} + +/// +/// Active sabotage instance +/// +public class Sabotage +{ + public required string SabotageId { get; set; } + public SabotageType Type { get; set; } + public SabotageState State { get; set; } = SabotageState.Active; + public required string InitiatorId { get; set; } + public DateTime StartTime { get; set; } = DateTime.UtcNow; + public DateTime? Deadline { get; set; } // For critical meltdown + public DateTime? RepairedAt { get; set; } + public string? RepairedBy { get; set; } + + /// + /// Repair stations for this sabotage. + /// CommsBlackout: 1 station + /// CriticalMeltdown: 2 stations that need simultaneous activation + /// + public List RepairStations { get; set; } = new(); + + /// + /// How many stations need to be simultaneously active to repair. + /// CommsBlackout: 1, CriticalMeltdown: 2 + /// + public int RequiredSimultaneousRepairs { get; set; } = 1; +} + +/// +/// Repair station for fixing sabotages +/// +public class RepairStation +{ + public required string StationId { get; set; } + public required string Name { get; set; } + public Position Location { get; set; } + public bool IsBeingRepaired { get; set; } + public string? RepairingPlayerId { get; set; } + public DateTime? RepairStartTime { get; set; } + + /// + /// Has this station been successfully repaired + /// + public bool IsRepaired { get; set; } + + /// + /// How long player must hold to complete repair at this station + /// + public int RepairDurationMs { get; set; } = 3000; +} + +#endregion + +#region Map Data + +/// +/// Complete map data for a play area - sent to clients for rendering +/// +public class MapData +{ + public Position Center { get; set; } + public double RadiusMeters { get; set; } + public DateTime FetchedAt { get; set; } + + /// Buildings to render (polygons) + public List Buildings { get; set; } = new(); + + /// Walkable pathways (lines) + public List Pathways { get; set; } = new(); + + /// Parks, green areas (polygons) + public List Areas { get; set; } = new(); + + /// Points of interest (single points) + public List PointsOfInterest { get; set; } = new(); + + /// All positions reachable from center via walkable paths (within play area) + [JsonIgnore] // Too large for network, computed server-side only + public List ReachablePositions { get; set; } = new(); +} + +/// Building outline for rendering +public class MapBuilding +{ + public required string Id { get; set; } + public List Outline { get; set; } = new(); + public string BuildingType { get; set; } = "yes"; + public string? Name { get; set; } + public int Levels { get; set; } = 1; +} + +/// Walkable pathway for rendering and reachability +public class MapPathway +{ + public required string Id { get; set; } + public List Points { get; set; } = new(); + public PathType PathType { get; set; } + public string? Name { get; set; } + public bool IsWalkable { get; set; } = true; + public double Width { get; set; } = 2.0; + + [JsonIgnore] + public bool IsFullyReachable { get; set; } + [JsonIgnore] + public bool IsPartiallyReachable { get; set; } +} + +/// Area like park or garden +public class MapArea +{ + public required string Id { get; set; } + public List Outline { get; set; } = new(); + public MapAreaType AreaType { get; set; } + public string? Name { get; set; } +} + +/// Point of interest for task placement hints +public class MapPOI +{ + public required string Id { get; set; } + public Position Position { get; set; } + public MapPOIType PoiType { get; set; } + public string? Name { get; set; } +} + +/// Simplified map data sent to clients (smaller payload) +public class MapDataPayload +{ + public Position Center { get; set; } + public double RadiusMeters { get; set; } + + /// Buildings: [[lat,lon,lat,lon,...], ...] + public List Buildings { get; set; } = new(); + + /// Building types: ["residential", "commercial", ...] + public List BuildingTypes { get; set; } = new(); + + /// Pathways: [[lat,lon,lat,lon,...], ...] + public List Pathways { get; set; } = new(); + + /// Pathway types: [0=footway, 1=steps, ...] + public List PathwayTypes { get; set; } = new(); + + /// Areas (parks): [[lat,lon,lat,lon,...], ...] + public List Areas { get; set; } = new(); + + /// Area types + public List AreaTypes { get; set; } = new(); + + /// POIs: [lat, lon, type, lat, lon, type, ...] + public List POIs { get; set; } = new(); + + /// Convert from full MapData to compact payload + public static MapDataPayload FromMapData(MapData data) + { + var payload = new MapDataPayload + { + Center = data.Center, + RadiusMeters = data.RadiusMeters + }; + + foreach (var b in data.Buildings) + { + var coords = new double[b.Outline.Count * 2]; + for (int i = 0; i < b.Outline.Count; i++) + { + coords[i * 2] = b.Outline[i].Lat; + coords[i * 2 + 1] = b.Outline[i].Lon; + } + payload.Buildings.Add(coords); + payload.BuildingTypes.Add(b.BuildingType); + } + + foreach (var p in data.Pathways) + { + var coords = new double[p.Points.Count * 2]; + for (int i = 0; i < p.Points.Count; i++) + { + coords[i * 2] = p.Points[i].Lat; + coords[i * 2 + 1] = p.Points[i].Lon; + } + payload.Pathways.Add(coords); + payload.PathwayTypes.Add((int)p.PathType); + } + + foreach (var a in data.Areas) + { + var coords = new double[a.Outline.Count * 2]; + for (int i = 0; i < a.Outline.Count; i++) + { + coords[i * 2] = a.Outline[i].Lat; + coords[i * 2 + 1] = a.Outline[i].Lon; + } + payload.Areas.Add(coords); + payload.AreaTypes.Add((int)a.AreaType); + } + + foreach (var poi in data.PointsOfInterest) + { + payload.POIs.Add(poi.Position.Lat); + payload.POIs.Add(poi.Position.Lon); + payload.POIs.Add((int)poi.PoiType); + } + + return payload; + } +} + +#endregion + +#region Protokol - Zprávy + +public abstract class Message +{ + [JsonPropertyName("type")] + public abstract string Type { get; } + + [JsonPropertyName("clientSeq")] + public int ClientSeq { get; set; } + + [JsonPropertyName("actionId")] + public string? ActionId { get; set; } +} + +// Handshake +public class ClientHello : Message +{ + public override string Type => "ClientHello"; + public string ProtocolVersion { get; set; } = "1.0"; + public required string ClientUuid { get; set; } + public string? DisplayName { get; set; } +} + +public class ServerHello : Message +{ + public override string Type => "ServerHello"; + public required string RsaPublicKeyPem { get; set; } + public required string ServerId { get; set; } +} + +public class KeyExchange : Message +{ + public override string Type => "KeyExchange"; + public required string EncryptedSessionKey { get; set; } + public required string EncryptedIV { get; set; } +} + +public class KeyExchangeAck : Message +{ + public override string Type => "KeyExchangeAck"; + public string Status { get; set; } = "success"; +} + +// Lobby +public class CreateLobby : Message +{ + public override string Type => "CreateLobby"; + public string? Password { get; set; } + public Position? PlayAreaCenter { get; set; } + public double PlayAreaRadius { get; set; } = 500; // metry + public int ImpostorCount { get; set; } = 1; + public int TaskCount { get; set; } = 5; +} + +public class CreateLobbyResponse : Message +{ + public override string Type => "CreateLobbyResponse"; + public bool Success { get; set; } + public string? JoinCode { get; set; } + public string? LobbyId { get; set; } + public string? Error { get; set; } + public LobbyState? LobbyState { get; set; } +} + +public class JoinLobby : Message +{ + public override string Type => "JoinLobby"; + public required string JoinCode { get; set; } + public string? Password { get; set; } +} + +public class JoinLobbyResponse : Message +{ + public override string Type => "JoinLobbyResponse"; + public bool Success { get; set; } + public string? LobbyId { get; set; } + public string? Error { get; set; } + public LobbyState? LobbyState { get; set; } +} + +public class LeaveLobby : Message +{ + public override string Type => "LeaveLobby"; +} + +public class KickPlayer : Message +{ + public override string Type => "KickPlayer"; + public required string TargetClientUuid { get; set; } +} + +public class StartGame : Message +{ + public override string Type => "StartGame"; +} + +public class ReturnToLobby : Message +{ + public override string Type => "ReturnToLobby"; +} + +/// +/// Client confirms it received map data and is ready to play +/// +public class MapDataReceived : Message +{ + public override string Type => "MapDataReceived"; +} + +// Hra +public class UpdatePosition : Message +{ + public override string Type => "UpdatePosition"; + public Position Position { get; set; } +} + +public class PositionBroadcast : Message +{ + public override string Type => "PositionBroadcast"; + public List Players { get; set; } = new(); +} + +public class PlayerPositionInfo +{ + public required string ClientUuid { get; set; } + public Position Position { get; set; } + public PlayerState State { get; set; } +} + +public class KillAttempt : Message +{ + public override string Type => "KillAttempt"; + public required string TargetClientUuid { get; set; } +} + +public class ReportBody : Message +{ + public override string Type => "ReportBody"; + public required string BodyId { get; set; } +} + +public class CallEmergencyMeeting : Message +{ + public override string Type => "CallEmergencyMeeting"; +} + +public class CastVote : Message +{ + public override string Type => "CastVote"; + public string? TargetClientUuid { get; set; } // null = skip +} + +public class TaskStart : Message +{ + public override string Type => "TaskStart"; + public required string TaskId { get; set; } +} + +public class TaskProgress : Message +{ + public override string Type => "TaskProgress"; + public required string TaskId { get; set; } + public int Step { get; set; } = 1; +} + +public class TaskComplete : Message +{ + public override string Type => "TaskComplete"; + public required string TaskId { get; set; } +} + +// Ping/Heartbeat +public class Ping : Message +{ + public override string Type => "Ping"; + public long ClientTime { get; set; } +} + +public class Pong : Message +{ + public override string Type => "Pong"; + public long ClientTime { get; set; } + public long ServerTime { get; set; } +} + +// Reconnect +public class Reconnect : Message +{ + public override string Type => "Reconnect"; + public required string LobbyId { get; set; } + public long LastEventId { get; set; } +} + +public class ReconnectResponse : Message +{ + public override string Type => "ReconnectResponse"; + public bool Success { get; set; } + public string? Error { get; set; } + public LobbySnapshot? Snapshot { get; set; } + public List? MissedEvents { get; set; } +} + +// Ack +public class Ack : Message +{ + public override string Type => "Ack"; + public int AckedSeq { get; set; } + public bool Success { get; set; } + public string? Error { get; set; } +} + +// Error +public class ErrorMessage : Message +{ + public override string Type => "Error"; + public required string ErrorCode { get; set; } + public required string ErrorText { get; set; } +} + +// Sabotage messages +public class StartSabotage : Message +{ + public override string Type => "StartSabotage"; + public SabotageType SabotageType { get; set; } + public Position? TargetLocation { get; set; } // For zone lockdown +} + +public class ActivateRepairStation : Message +{ + public override string Type => "ActivateRepairStation"; + public required string StationId { get; set; } +} + +public class DeactivateRepairStation : Message +{ + public override string Type => "DeactivateRepairStation"; + public required string StationId { get; set; } +} + +#endregion + +#region Eventy + +public class GameEvent : Message +{ + public override string Type => "GameEvent"; + public long EventId { get; set; } + public long ServerSeq { get; set; } + public DateTime Timestamp { get; set; } = DateTime.UtcNow; + public string? Actor { get; set; } + public required string EventType { get; set; } + public object? Payload { get; set; } +} + +// Payload typy pro eventy +public class LobbyCreatedPayload +{ + public required string LobbyId { get; set; } + public required string JoinCode { get; set; } + public required string OwnerId { get; set; } +} + +public class PlayerJoinedPayload +{ + public required string ClientUuid { get; set; } + public required string DisplayName { get; set; } +} + +public class PlayerLeftPayload +{ + public required string ClientUuid { get; set; } + public string? Reason { get; set; } +} + +/// +/// Sent when owner clicks StartGame - clients should show loading screen +/// +public class GameStartingPayload +{ + public string? InitiatorId { get; set; } + public string Message { get; set; } = "Loading map data..."; +} + +/// +/// Sent when map data is ready and distributed to all clients +/// +public class MapDataReadyPayload +{ + public MapDataPayload? MapData { get; set; } + public Position PlayAreaCenter { get; set; } + public double PlayAreaRadius { get; set; } +} + +/// +/// Sent when a client confirms they received map data +/// +public class PlayerMapDataReceivedPayload +{ + public required string ClientUuid { get; set; } + public string DisplayName { get; set; } = ""; + public int PlayersReady { get; set; } + public int TotalPlayers { get; set; } +} + +/// +/// Sent when all clients have confirmed map data and game actually starts +/// +public class GameStartedPayload +{ + public int ImpostorCount { get; set; } + public int TaskCount { get; set; } +} + +public class RoleAssignedPayload +{ + public required string ClientUuid { get; set; } + public PlayerRole Role { get; set; } + public List? Tasks { get; set; } +} + +public class PlayerKilledPayload +{ + public required string VictimId { get; set; } + public required string KillerId { get; set; } + public required string BodyId { get; set; } + public Position Location { get; set; } +} + +public class BodyReportedPayload +{ + public required string ReporterId { get; set; } + public required string BodyId { get; set; } + public required string VictimId { get; set; } +} + +public class EmergencyMeetingCalledPayload +{ + public required string CallerId { get; set; } +} + +public class MeetingStartedPayload +{ + public required string MeetingId { get; set; } + public MeetingType Type { get; set; } + public Position MeetingLocation { get; set; } + public DateTime ArrivalDeadline { get; set; } + public DateTime? DiscussionEndTime { get; set; } + public DateTime VotingEndTime { get; set; } +} + +public class PlayerArrivedAtMeetingPayload +{ + public required string ClientUuid { get; set; } + public required string MeetingId { get; set; } +} + +public class PlayerVotedPayload +{ + public required string VoterId { get; set; } + public string? TargetId { get; set; } // null = skip +} + +public class VotingClosedPayload +{ + public Dictionary VoteCounts { get; set; } = new(); + public string? EjectedPlayerId { get; set; } + public bool WasTie { get; set; } +} + +public class PlayerEjectedPayload +{ + public required string ClientUuid { get; set; } + public PlayerRole Role { get; set; } +} + +public class TaskCompletedPayload +{ + public required string ClientUuid { get; set; } + public required string TaskId { get; set; } + public int TotalCompleted { get; set; } + public int TotalTasks { get; set; } +} + +public class GameEndedPayload +{ + public required string WinningFaction { get; set; } // "Crew" nebo "Impostor" + public required string Reason { get; set; } + public List Winners { get; set; } = new(); +} + +public class ReturnedToLobbyPayload +{ + public string Message { get; set; } = ""; +} + +public class HostChangedPayload +{ + public required string NewHostId { get; set; } + public required string PreviousHostId { get; set; } +} + +public class CheatDetectedPayload +{ + public required string ClientUuid { get; set; } + public required string Violation { get; set; } + public int NewCheatScore { get; set; } + public CheatStatus NewStatus { get; set; } +} + +// Sabotage event payloads +public class SabotageStartedPayload +{ + public required string SabotageId { get; set; } + public SabotageType Type { get; set; } + public required string InitiatorId { get; set; } + public DateTime? Deadline { get; set; } // For critical meltdown + public List RepairStations { get; set; } = new(); + public int RequiredSimultaneousRepairs { get; set; } +} + +public class RepairStationInfo +{ + public required string StationId { get; set; } + public required string Name { get; set; } + public Position Location { get; set; } + public int RepairDurationMs { get; set; } +} + +public class RepairStartedPayload +{ + public required string SabotageId { get; set; } + public required string StationId { get; set; } + public required string PlayerId { get; set; } +} + +public class RepairStoppedPayload +{ + public required string SabotageId { get; set; } + public required string StationId { get; set; } + public required string PlayerId { get; set; } +} + +public class RepairProgressPayload +{ + public required string SabotageId { get; set; } + public required string StationId { get; set; } + public required string PlayerId { get; set; } + public int ProgressMs { get; set; } + public int RequiredMs { get; set; } +} + +public class SabotageRepairedPayload +{ + public required string SabotageId { get; set; } + public SabotageType Type { get; set; } + public List RepairerIds { get; set; } = new(); // Players who helped repair +} + +public class SabotageMeltdownPayload +{ + public required string SabotageId { get; set; } + // Impostor wins - game ends +} + +#endregion + +#region State + +public class LobbyState +{ + public required string LobbyId { get; set; } + public required string JoinCode { get; set; } + public string? OwnerId { get; set; } + public GamePhase Phase { get; set; } = GamePhase.Lobby; + public List Players { get; set; } = new(); + public Position PlayAreaCenter { get; set; } + public double PlayAreaRadius { get; set; } + public int ImpostorCount { get; set; } + public bool HasPassword { get; set; } + public DateTime CreatedAt { get; set; } + + /// Map data for client rendering (null if Overpass disabled or failed) + public MapDataPayload? MapData { get; set; } + + /// True if map data has been loaded (or Overpass is disabled) + public bool MapDataReady { get; set; } = true; +} + +public class PlayerInfo +{ + public required string ClientUuid { get; set; } + public required string DisplayName { get; set; } + public bool IsOwner { get; set; } + public bool IsReady { get; set; } + public PlayerState State { get; set; } + // Role je viditelná pouze pro daného hráče, ne v broadcast +} + +public class LobbySnapshot +{ + public required string LobbyId { get; set; } + public long LastEventId { get; set; } + public DateTime Timestamp { get; set; } + public required string Checksum { get; set; } + public GamePhase Phase { get; set; } + public List Players { get; set; } = new(); + public List Bodies { get; set; } = new(); + public List Tasks { get; set; } = new(); + public Meeting? CurrentMeeting { get; set; } + public Position PlayAreaCenter { get; set; } + public double PlayAreaRadius { get; set; } + public int ImpostorCount { get; set; } + public TiePolicy TiePolicy { get; set; } +} + +#endregion + +#region Serializace + +public static class MessageSerializer +{ + private static readonly Dictionary MessageTypes = new() + { + ["ClientHello"] = typeof(ClientHello), + ["ServerHello"] = typeof(ServerHello), + ["KeyExchange"] = typeof(KeyExchange), + ["KeyExchangeAck"] = typeof(KeyExchangeAck), + ["CreateLobby"] = typeof(CreateLobby), + ["CreateLobbyResponse"] = typeof(CreateLobbyResponse), + ["JoinLobby"] = typeof(JoinLobby), + ["JoinLobbyResponse"] = typeof(JoinLobbyResponse), + ["LeaveLobby"] = typeof(LeaveLobby), + ["KickPlayer"] = typeof(KickPlayer), + ["StartGame"] = typeof(StartGame), + ["ReturnToLobby"] = typeof(ReturnToLobby), + ["MapDataReceived"] = typeof(MapDataReceived), + ["UpdatePosition"] = typeof(UpdatePosition), + ["PositionBroadcast"] = typeof(PositionBroadcast), + ["KillAttempt"] = typeof(KillAttempt), + ["ReportBody"] = typeof(ReportBody), + ["CallEmergencyMeeting"] = typeof(CallEmergencyMeeting), + ["CastVote"] = typeof(CastVote), + ["TaskStart"] = typeof(TaskStart), + ["TaskProgress"] = typeof(TaskProgress), + ["TaskComplete"] = typeof(TaskComplete), + ["Ping"] = typeof(Ping), + ["Pong"] = typeof(Pong), + ["Reconnect"] = typeof(Reconnect), + ["ReconnectResponse"] = typeof(ReconnectResponse), + ["Ack"] = typeof(Ack), + ["Error"] = typeof(ErrorMessage), + ["GameEvent"] = typeof(GameEvent), + ["StartSabotage"] = typeof(StartSabotage), + ["ActivateRepairStation"] = typeof(ActivateRepairStation), + ["DeactivateRepairStation"] = typeof(DeactivateRepairStation) + }; + + public static byte[] Serialize(Message msg) + { + return JsonSerializer.SerializeToUtf8Bytes(msg, msg.GetType(), JsonOptions.Default); + } + + public static byte[] Serialize(GameEvent evt) + { + return JsonSerializer.SerializeToUtf8Bytes(evt, JsonOptions.Default); + } + + public static Message? Deserialize(ReadOnlySpan data) + { + // Nejdřív zjistíme typ + using var doc = JsonDocument.Parse(data.ToArray()); + if (!doc.RootElement.TryGetProperty("type", out var typeProp)) + return null; + + var typeName = typeProp.GetString(); + if (typeName == null || !MessageTypes.TryGetValue(typeName, out var type)) + return null; + + return (Message?)JsonSerializer.Deserialize(data, type, JsonOptions.Default); + } + + public static GameEvent? DeserializeEvent(ReadOnlySpan data) + { + return JsonSerializer.Deserialize(data, JsonOptions.Default); + } +} + +#endregion diff --git a/Server.csproj b/Server.csproj new file mode 100644 index 0000000..e2dd90f --- /dev/null +++ b/Server.csproj @@ -0,0 +1,17 @@ + + + + Exe + net9.0 + enable + enable + GeoSus.Server + + + + + + + + + diff --git a/StatsDb.cs b/StatsDb.cs new file mode 100644 index 0000000..43cc56e --- /dev/null +++ b/StatsDb.cs @@ -0,0 +1,327 @@ +namespace GeoSus.Server; + +using Microsoft.Data.Sqlite; +using Microsoft.Extensions.Logging; + +// SQLite databáze pro statistiky hráčů +public class StatsDb : IDisposable +{ + private readonly SqliteConnection _connection; + private readonly ILogger _logger; + private readonly object _lock = new(); + + public StatsDb(string dbPath, ILogger logger) + { + _logger = logger; + + var directory = Path.GetDirectoryName(dbPath); + if (!string.IsNullOrEmpty(directory)) + Directory.CreateDirectory(directory); + + _connection = new SqliteConnection($"Data Source={dbPath}"); + _connection.Open(); + + InitializeSchema(); + } + + private void InitializeSchema() + { + var sql = @" + CREATE TABLE IF NOT EXISTS player_stats ( + client_uuid TEXT PRIMARY KEY, + display_name TEXT, + total_games INTEGER DEFAULT 0, + games_as_crew INTEGER DEFAULT 0, + games_as_impostor INTEGER DEFAULT 0, + crew_wins INTEGER DEFAULT 0, + impostor_wins INTEGER DEFAULT 0, + total_kills INTEGER DEFAULT 0, + total_deaths INTEGER DEFAULT 0, + tasks_completed INTEGER DEFAULT 0, + bodies_reported INTEGER DEFAULT 0, + emergency_meetings_called INTEGER DEFAULT 0, + times_voted_out INTEGER DEFAULT 0, + successful_votes INTEGER DEFAULT 0, + total_playtime_seconds INTEGER DEFAULT 0, + cheat_incidents INTEGER DEFAULT 0, + last_seen_utc TEXT, + created_at_utc TEXT + ); + + CREATE INDEX IF NOT EXISTS idx_crew_wins ON player_stats(crew_wins DESC); + CREATE INDEX IF NOT EXISTS idx_impostor_wins ON player_stats(impostor_wins DESC); + CREATE INDEX IF NOT EXISTS idx_total_games ON player_stats(total_games DESC); + "; + + using var cmd = _connection.CreateCommand(); + cmd.CommandText = sql; + cmd.ExecuteNonQuery(); + + _logger.LogInformation("StatsDb inicializována"); + } + + #region CRUD operace + + public void EnsurePlayerExists(string clientUuid, string displayName) + { + lock (_lock) + { + var sql = @" + INSERT INTO player_stats (client_uuid, display_name, created_at_utc, last_seen_utc) + VALUES (@uuid, @name, @now, @now) + ON CONFLICT(client_uuid) DO UPDATE SET + display_name = @name, + last_seen_utc = @now + "; + + using var cmd = _connection.CreateCommand(); + cmd.CommandText = sql; + cmd.Parameters.AddWithValue("@uuid", clientUuid); + cmd.Parameters.AddWithValue("@name", displayName); + cmd.Parameters.AddWithValue("@now", DateTime.UtcNow.ToString("o")); + cmd.ExecuteNonQuery(); + } + } + + public PlayerStats? GetPlayerStats(string clientUuid) + { + lock (_lock) + { + var sql = "SELECT * FROM player_stats WHERE client_uuid = @uuid"; + + using var cmd = _connection.CreateCommand(); + cmd.CommandText = sql; + cmd.Parameters.AddWithValue("@uuid", clientUuid); + + using var reader = cmd.ExecuteReader(); + if (reader.Read()) + { + return ReadPlayerStats(reader); + } + + return null; + } + } + + public List GetLeaderboard(string sortBy, int limit = 100) + { + lock (_lock) + { + var validColumns = new[] { + "crew_wins", "impostor_wins", "total_games", + "total_kills", "tasks_completed" + }; + + if (!validColumns.Contains(sortBy)) + sortBy = "total_games"; + + var sql = $"SELECT * FROM player_stats ORDER BY {sortBy} DESC LIMIT @limit"; + + using var cmd = _connection.CreateCommand(); + cmd.CommandText = sql; + cmd.Parameters.AddWithValue("@limit", limit); + + var results = new List(); + using var reader = cmd.ExecuteReader(); + while (reader.Read()) + { + results.Add(ReadPlayerStats(reader)); + } + + return results; + } + } + + #endregion + + #region Inkrementální aktualizace + + public void IncrementKills(string clientUuid) + { + IncrementColumn(clientUuid, "total_kills"); + } + + public void IncrementDeaths(string clientUuid) + { + IncrementColumn(clientUuid, "total_deaths"); + } + + public void IncrementTasksCompleted(string clientUuid) + { + IncrementColumn(clientUuid, "tasks_completed"); + } + + public void IncrementBodiesReported(string clientUuid) + { + IncrementColumn(clientUuid, "bodies_reported"); + } + + public void IncrementEmergencyMeetings(string clientUuid) + { + IncrementColumn(clientUuid, "emergency_meetings_called"); + } + + public void IncrementTimesVotedOut(string clientUuid) + { + IncrementColumn(clientUuid, "times_voted_out"); + } + + public void IncrementSuccessfulVotes(string clientUuid) + { + IncrementColumn(clientUuid, "successful_votes"); + } + + public void IncrementCheatIncidents(string clientUuid) + { + IncrementColumn(clientUuid, "cheat_incidents"); + } + + private void IncrementColumn(string clientUuid, string column) + { + lock (_lock) + { + var sql = $@" + UPDATE player_stats + SET {column} = {column} + 1, last_seen_utc = @now + WHERE client_uuid = @uuid + "; + + using var cmd = _connection.CreateCommand(); + cmd.CommandText = sql; + cmd.Parameters.AddWithValue("@uuid", clientUuid); + cmd.Parameters.AddWithValue("@now", DateTime.UtcNow.ToString("o")); + cmd.ExecuteNonQuery(); + } + } + + #endregion + + #region Game end aktualizace + + public void RecordGameEnd(GameEndStats stats) + { + lock (_lock) + { + using var transaction = _connection.BeginTransaction(); + + try + { + foreach (var player in stats.Players) + { + var sql = @" + UPDATE player_stats SET + total_games = total_games + 1, + games_as_crew = games_as_crew + @asCrew, + games_as_impostor = games_as_impostor + @asImpostor, + crew_wins = crew_wins + @crewWin, + impostor_wins = impostor_wins + @impostorWin, + total_playtime_seconds = total_playtime_seconds + @playtime, + last_seen_utc = @now + WHERE client_uuid = @uuid + "; + + using var cmd = _connection.CreateCommand(); + cmd.CommandText = sql; + cmd.Parameters.AddWithValue("@uuid", player.ClientUuid); + cmd.Parameters.AddWithValue("@asCrew", player.WasCrew ? 1 : 0); + cmd.Parameters.AddWithValue("@asImpostor", player.WasImpostor ? 1 : 0); + cmd.Parameters.AddWithValue("@crewWin", player.WasCrew && stats.CrewWon ? 1 : 0); + cmd.Parameters.AddWithValue("@impostorWin", player.WasImpostor && !stats.CrewWon ? 1 : 0); + cmd.Parameters.AddWithValue("@playtime", player.PlaytimeSeconds); + cmd.Parameters.AddWithValue("@now", DateTime.UtcNow.ToString("o")); + cmd.ExecuteNonQuery(); + } + + transaction.Commit(); + _logger.LogInformation("Game stats uloženy pro {Count} hráčů", stats.Players.Count); + } + catch + { + transaction.Rollback(); + throw; + } + } + } + + #endregion + + private PlayerStats ReadPlayerStats(SqliteDataReader reader) + { + return new PlayerStats + { + ClientUuid = reader.GetString(reader.GetOrdinal("client_uuid")), + DisplayName = reader.IsDBNull(reader.GetOrdinal("display_name")) + ? null : reader.GetString(reader.GetOrdinal("display_name")), + TotalGames = reader.GetInt32(reader.GetOrdinal("total_games")), + GamesAsCrew = reader.GetInt32(reader.GetOrdinal("games_as_crew")), + GamesAsImpostor = reader.GetInt32(reader.GetOrdinal("games_as_impostor")), + CrewWins = reader.GetInt32(reader.GetOrdinal("crew_wins")), + ImpostorWins = reader.GetInt32(reader.GetOrdinal("impostor_wins")), + TotalKills = reader.GetInt32(reader.GetOrdinal("total_kills")), + TotalDeaths = reader.GetInt32(reader.GetOrdinal("total_deaths")), + TasksCompleted = reader.GetInt32(reader.GetOrdinal("tasks_completed")), + BodiesReported = reader.GetInt32(reader.GetOrdinal("bodies_reported")), + EmergencyMeetingsCalled = reader.GetInt32(reader.GetOrdinal("emergency_meetings_called")), + TimesVotedOut = reader.GetInt32(reader.GetOrdinal("times_voted_out")), + SuccessfulVotes = reader.GetInt32(reader.GetOrdinal("successful_votes")), + TotalPlaytimeSeconds = reader.GetInt32(reader.GetOrdinal("total_playtime_seconds")), + CheatIncidents = reader.GetInt32(reader.GetOrdinal("cheat_incidents")), + LastSeenUtc = reader.IsDBNull(reader.GetOrdinal("last_seen_utc")) + ? null : reader.GetString(reader.GetOrdinal("last_seen_utc")), + CreatedAtUtc = reader.IsDBNull(reader.GetOrdinal("created_at_utc")) + ? null : reader.GetString(reader.GetOrdinal("created_at_utc")) + }; + } + + public void Dispose() + { + _connection.Close(); + _connection.Dispose(); + } +} + +#region DTO + +public class PlayerStats +{ + public required string ClientUuid { get; set; } + public string? DisplayName { get; set; } + public int TotalGames { get; set; } + public int GamesAsCrew { get; set; } + public int GamesAsImpostor { get; set; } + public int CrewWins { get; set; } + public int ImpostorWins { get; set; } + public int TotalKills { get; set; } + public int TotalDeaths { get; set; } + public int TasksCompleted { get; set; } + public int BodiesReported { get; set; } + public int EmergencyMeetingsCalled { get; set; } + public int TimesVotedOut { get; set; } + public int SuccessfulVotes { get; set; } + public int TotalPlaytimeSeconds { get; set; } + public int CheatIncidents { get; set; } + public string? LastSeenUtc { get; set; } + public string? CreatedAtUtc { get; set; } + + // Computed properties pro API + public double CrewWinRate => GamesAsCrew > 0 ? (double)CrewWins / GamesAsCrew : 0; + public double ImpostorWinRate => GamesAsImpostor > 0 ? (double)ImpostorWins / GamesAsImpostor : 0; + public double KillDeathRatio => TotalDeaths > 0 ? (double)TotalKills / TotalDeaths : TotalKills; + public double AverageTasksPerGame => TotalGames > 0 ? (double)TasksCompleted / TotalGames : 0; +} + +public class GameEndStats +{ + public bool CrewWon { get; set; } + public List Players { get; set; } = new(); +} + +public class PlayerGameStats +{ + public required string ClientUuid { get; set; } + public bool WasCrew { get; set; } + public bool WasImpostor { get; set; } + public int PlaytimeSeconds { get; set; } +} + +#endregion diff --git a/apache-vhost.conf b/apache-vhost.conf new file mode 100644 index 0000000..7775227 --- /dev/null +++ b/apache-vhost.conf @@ -0,0 +1,42 @@ +# GeoSus Admin Panel - Apache Virtual Host +# +# Required modules: +# sudo a2enmod proxy proxy_http proxy_wstunnel rewrite headers ssl +# +# Installation: +# 1. sudo cp apache-vhost.conf /etc/apache2/sites-available/geosus.conf +# 2. sudo a2ensite geosus && sudo systemctl reload apache2 +# 3. sudo certbot --apache -d geosus.honzuvkod.dev + + + ServerName geosus.honzuvkod.dev + + ErrorLog ${APACHE_LOG_DIR}/geosus_error.log + CustomLog ${APACHE_LOG_DIR}/geosus_access.log combined + + ProxyPreserveHost On + ProxyRequests Off + + RewriteEngine On + RewriteCond %{HTTP:Upgrade} websocket [NC] + RewriteCond %{HTTP:Connection} upgrade [NC] + RewriteRule ^/admin/ws/(.*)$ ws://127.0.0.1:8088/admin/ws/$1 [P,L] + + ProxyPass /admin http://127.0.0.1:8088/admin + ProxyPassReverse /admin http://127.0.0.1:8088/admin + + ProxyPass /api http://127.0.0.1:8088/api + ProxyPassReverse /api http://127.0.0.1:8088/api + + ProxyPass /health http://127.0.0.1:8088/health + ProxyPassReverse /health http://127.0.0.1:8088/health + + Header always set X-Content-Type-Options "nosniff" + Header always set X-Frame-Options "SAMEORIGIN" + Header always set X-XSS-Protection "1; mode=block" + Header always set Referrer-Policy "strict-origin-when-cross-origin" + + ProxyTimeout 3600 + SetEnv proxy-nokeepalive 0 + SetEnv proxy-initial-not-pooled 1 + diff --git a/appsettings.json b/appsettings.json new file mode 100644 index 0000000..f225f3e --- /dev/null +++ b/appsettings.json @@ -0,0 +1,45 @@ +{ + "tcpPort": 7777, + "httpPort": 8088, + "maxPacketSizeBytes": 1048576, + "tickMs": 200, + "positionBroadcastRateMs": 1000, + "maxSpeedMps": 12.0, + "movementValidationWindowSec": 5.0, + "teleportThresholdMeters": 50.0, + "cheatScoreWarnThreshold": 10, + "cheatScoreRestrictThreshold": 25, + "cheatScoreKickThreshold": 50, + "killDistanceM": 10.0, + "killCooldownMs": 5000, + "meetingArrivalRadiusM": 15.0, + "arrivalBaseMs": 20000, + "arrivalSafetyMarginMs": 3000, + "allowedLateMs": 5000, + "discussionPhaseMs": 15000, + "votingPhaseMs": 30000, + "emergencyMeetingCooldownMs": 30000, + "maxEmergencyMeetingsPerPlayer": 2, + "emergencyMeetingCallRadiusM": 15.0, + "reportDistanceM": 10.0, + "taskStartDistanceM": 5.0, + "taskLeaveDebounceMs": 2000, + "taskProgressKeepaliveMs": 5000, + "snapshotEvents": 200, + "snapshotIntervalMs": 300000, + "walMaxSizeMb": 10, + "dataPath": "data", + "hostTimeoutMs": 15000, + "reconnectWindowMs": 60000, + "idleLobbyTtlMs": 3600000, + "joinCodeTtlMs": 86400000, + "maxPlayersPerLobby": 15, + "joinRateLimitPerMinute": 10, + "sessionKeySizeBytes": 32, + "rsaKeySizeBits": 2048, + "statsApiRateLimit": 100, + "statsApiKey": null, + "defaultImpostorCount": 1, + "defaultTaskCount": 5, + "defaultTiePolicy": "NoEject" +} diff --git a/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll b/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..c5fef6d Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll differ diff --git a/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll b/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..f9eb46b Binary files /dev/null and b/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/bin/Debug/net8.0/SQLitePCLRaw.core.dll b/bin/Debug/net8.0/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..556d40f Binary files /dev/null and b/bin/Debug/net8.0/SQLitePCLRaw.core.dll differ diff --git a/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll b/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100644 index 0000000..fc5919d Binary files /dev/null and b/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/bin/Debug/net8.0/Server.deps.json b/bin/Debug/net8.0/Server.deps.json new file mode 100644 index 0000000..1a1d97f --- /dev/null +++ b/bin/Debug/net8.0/Server.deps.json @@ -0,0 +1,220 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Server/1.0.0": { + "dependencies": { + "Microsoft.Data.Sqlite": "8.0.0" + }, + "runtime": { + "Server.dll": {} + } + }, + "Microsoft.Data.Sqlite/8.0.0": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.0", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.Data.Sqlite.Core/8.0.0": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.core/2.1.6": { + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + } + } + }, + "libraries": { + "Server/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Data.Sqlite/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H+iC5IvkCCKSNHXzL3JARvDn7VpkvuJM91KVB89sKjeTF/KX/BocNNh93ZJtX5MCQKb/z4yVKgkU2sVIq+xKfg==", + "path": "microsoft.data.sqlite/8.0.0", + "hashPath": "microsoft.data.sqlite.8.0.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pujbzfszX7jAl7oTbHhqx7pxd9jibeyHHl8zy1gd55XMaKWjDtc5XhhNYwQnrwWYCInNdVoArbaaAvLgW7TwuA==", + "path": "microsoft.data.sqlite.core/8.0.0", + "hashPath": "microsoft.data.sqlite.core.8.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "path": "sqlitepclraw.core/2.1.6", + "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/Server.dll b/bin/Debug/net8.0/Server.dll new file mode 100644 index 0000000..b6f0e15 Binary files /dev/null and b/bin/Debug/net8.0/Server.dll differ diff --git a/bin/Debug/net8.0/Server.exe b/bin/Debug/net8.0/Server.exe new file mode 100644 index 0000000..7bcc4d7 Binary files /dev/null and b/bin/Debug/net8.0/Server.exe differ diff --git a/bin/Debug/net8.0/Server.pdb b/bin/Debug/net8.0/Server.pdb new file mode 100644 index 0000000..f066030 Binary files /dev/null and b/bin/Debug/net8.0/Server.pdb differ diff --git a/bin/Debug/net8.0/Server.runtimeconfig.json b/bin/Debug/net8.0/Server.runtimeconfig.json new file mode 100644 index 0000000..8a91515 --- /dev/null +++ b/bin/Debug/net8.0/Server.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/Server.staticwebassets.endpoints.json b/bin/Debug/net8.0/Server.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/bin/Debug/net8.0/Server.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/bin/Debug/net8.0/appsettings.json b/bin/Debug/net8.0/appsettings.json new file mode 100644 index 0000000..8f44870 --- /dev/null +++ b/bin/Debug/net8.0/appsettings.json @@ -0,0 +1,44 @@ +{ + "tcpPort": 7777, + "httpPort": 8080, + "maxPacketSizeBytes": 1048576, + "tickMs": 200, + "positionBroadcastRateMs": 1000, + "maxSpeedMps": 12.0, + "movementValidationWindowSec": 5.0, + "teleportThresholdMeters": 50.0, + "cheatScoreWarnThreshold": 10, + "cheatScoreRestrictThreshold": 25, + "cheatScoreKickThreshold": 50, + "killDistanceM": 10.0, + "killCooldownMs": 30000, + "meetingArrivalRadiusM": 15.0, + "arrivalBaseMs": 30000, + "arrivalSafetyMarginMs": 500, + "allowedLateMs": 2000, + "discussionPhaseMs": 30000, + "votingPhaseMs": 45000, + "emergencyMeetingCooldownMs": 60000, + "maxEmergencyMeetingsPerPlayer": 1, + "reportDistanceM": 5.0, + "taskStartDistanceM": 3.0, + "taskLeaveDebounceMs": 2000, + "taskProgressKeepaliveMs": 5000, + "snapshotEvents": 200, + "snapshotIntervalMs": 300000, + "walMaxSizeMb": 10, + "dataPath": "data", + "hostTimeoutMs": 15000, + "reconnectWindowMs": 60000, + "idleLobbyTtlMs": 3600000, + "joinCodeTtlMs": 86400000, + "maxPlayersPerLobby": 15, + "joinRateLimitPerMinute": 10, + "sessionKeySizeBytes": 32, + "rsaKeySizeBits": 2048, + "statsApiRateLimit": 100, + "statsApiKey": null, + "defaultImpostorCount": 1, + "defaultTaskCount": 5, + "defaultTiePolicy": "NoEject" +} diff --git a/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a b/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a new file mode 100644 index 0000000..ace30e6 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a differ diff --git a/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..8520492 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..30b84ea Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..48de629 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..4f7d693 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..2c9dcda Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..53949cf Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a043d7d Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100644 index 0000000..3593c9b Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..7e01b91 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a8f9ae0 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so b/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..f9a9b69 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..e6612c5 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3ad1142 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib b/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..21a8f42 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..ffaf82f Binary files /dev/null and b/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll b/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..454821f Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll b/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..70805d9 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll b/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..379665c Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll b/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..c0e722d Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll b/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..55567a8 Binary files /dev/null and b/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll differ diff --git a/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll b/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..53e53eb Binary files /dev/null and b/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/bin/Debug/net9.0/SQLitePCLRaw.core.dll b/bin/Debug/net9.0/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..b563677 Binary files /dev/null and b/bin/Debug/net9.0/SQLitePCLRaw.core.dll differ diff --git a/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll b/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100644 index 0000000..a06a782 Binary files /dev/null and b/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/bin/Debug/net9.0/Server.deps.json b/bin/Debug/net9.0/Server.deps.json new file mode 100644 index 0000000..8ced10f --- /dev/null +++ b/bin/Debug/net9.0/Server.deps.json @@ -0,0 +1,226 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Server/1.0.0": { + "dependencies": { + "Microsoft.Data.Sqlite": "9.0.0" + }, + "runtime": { + "Server.dll": {} + } + }, + "Microsoft.Data.Sqlite/9.0.0": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "9.0.0", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10", + "SQLitePCLRaw.core": "2.1.10" + } + }, + "Microsoft.Data.Sqlite.Core/9.0.0": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.10", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.10" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "SQLitePCLRaw.core/2.1.10": { + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-s390x/native/libe_sqlite3.so": { + "rid": "linux-musl-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + } + } + }, + "libraries": { + "Server/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Data.Sqlite/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lw6wthgXGx3r/U775k1UkUAWIn0kAT0wj4ZRq0WlhPx4WAOiBsIjgDKgWkXcNTGT0KfHiClkM+tyPVFDvxeObw==", + "path": "microsoft.data.sqlite/9.0.0", + "hashPath": "microsoft.data.sqlite.9.0.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cFfZjFL+tqzGYw9lB31EkV1IWF5xRQNk2k+MQd+Cf86Gl6zTeAoiZIFw5sRB1Z8OxpEC7nu+nTDsLSjieBAPTw==", + "path": "microsoft.data.sqlite.core/9.0.0", + "hashPath": "microsoft.data.sqlite.core.9.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==", + "path": "sqlitepclraw.core/2.1.10", + "hashPath": "sqlitepclraw.core.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net9.0/Server.dll b/bin/Debug/net9.0/Server.dll new file mode 100644 index 0000000..5f87c8a Binary files /dev/null and b/bin/Debug/net9.0/Server.dll differ diff --git a/bin/Debug/net9.0/Server.exe b/bin/Debug/net9.0/Server.exe new file mode 100644 index 0000000..9fd4211 Binary files /dev/null and b/bin/Debug/net9.0/Server.exe differ diff --git a/bin/Debug/net9.0/Server.pdb b/bin/Debug/net9.0/Server.pdb new file mode 100644 index 0000000..6410722 Binary files /dev/null and b/bin/Debug/net9.0/Server.pdb differ diff --git a/bin/Debug/net9.0/Server.runtimeconfig.json b/bin/Debug/net9.0/Server.runtimeconfig.json new file mode 100644 index 0000000..6b517aa --- /dev/null +++ b/bin/Debug/net9.0/Server.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/bin/Debug/net9.0/Server.staticwebassets.endpoints.json b/bin/Debug/net9.0/Server.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/bin/Debug/net9.0/Server.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/bin/Debug/net9.0/appsettings.json b/bin/Debug/net9.0/appsettings.json new file mode 100644 index 0000000..f225f3e --- /dev/null +++ b/bin/Debug/net9.0/appsettings.json @@ -0,0 +1,45 @@ +{ + "tcpPort": 7777, + "httpPort": 8088, + "maxPacketSizeBytes": 1048576, + "tickMs": 200, + "positionBroadcastRateMs": 1000, + "maxSpeedMps": 12.0, + "movementValidationWindowSec": 5.0, + "teleportThresholdMeters": 50.0, + "cheatScoreWarnThreshold": 10, + "cheatScoreRestrictThreshold": 25, + "cheatScoreKickThreshold": 50, + "killDistanceM": 10.0, + "killCooldownMs": 5000, + "meetingArrivalRadiusM": 15.0, + "arrivalBaseMs": 20000, + "arrivalSafetyMarginMs": 3000, + "allowedLateMs": 5000, + "discussionPhaseMs": 15000, + "votingPhaseMs": 30000, + "emergencyMeetingCooldownMs": 30000, + "maxEmergencyMeetingsPerPlayer": 2, + "emergencyMeetingCallRadiusM": 15.0, + "reportDistanceM": 10.0, + "taskStartDistanceM": 5.0, + "taskLeaveDebounceMs": 2000, + "taskProgressKeepaliveMs": 5000, + "snapshotEvents": 200, + "snapshotIntervalMs": 300000, + "walMaxSizeMb": 10, + "dataPath": "data", + "hostTimeoutMs": 15000, + "reconnectWindowMs": 60000, + "idleLobbyTtlMs": 3600000, + "joinCodeTtlMs": 86400000, + "maxPlayersPerLobby": 15, + "joinRateLimitPerMinute": 10, + "sessionKeySizeBytes": 32, + "rsaKeySizeBits": 2048, + "statsApiRateLimit": 100, + "statsApiKey": null, + "defaultImpostorCount": 1, + "defaultTaskCount": 5, + "defaultTiePolicy": "NoEject" +} diff --git a/bin/Debug/net9.0/data/archive/0ef46de0570a4be6_20260127134127/snapshot_12.json b/bin/Debug/net9.0/data/archive/0ef46de0570a4be6_20260127134127/snapshot_12.json new file mode 100644 index 0000000..4dcde19 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/0ef46de0570a4be6_20260127134127/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "0ef46de0570a4be6", + "lastEventId": 12, + "timestamp": "2026-01-27T13:41:27.5170822Z", + "checksum": "eaeb904e566968a23b9fad8defde721f0a958b5173f671f96b67463cd102e5b8", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0868023, + "lon": 14.4203088 + }, + "type": "Progress", + "durationMs": 7851, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.0855253, + "lon": 14.4216649 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.087640820000004, + "lon": 14.42321536 + }, + "type": "Progress", + "durationMs": 9934, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0862119, + "lon": 14.4239779 + }, + "type": "Progress", + "durationMs": 7287, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.08971575714286, + "lon": 14.420300657142858 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/27685b18526d4ce5_20260127133627/snapshot_7.json b/bin/Debug/net9.0/data/archive/27685b18526d4ce5_20260127133627/snapshot_7.json new file mode 100644 index 0000000..e9e7c53 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/27685b18526d4ce5_20260127133627/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "27685b18526d4ce5", + "lastEventId": 7, + "timestamp": "2026-01-27T13:36:27.5323111Z", + "checksum": "cc270b3bd115ec20db477f4b58e987b0b4a0bede6b35d5fb8786f1a3ad5a89bf", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/34d8737b80434782_20260127133627/snapshot_12.json b/bin/Debug/net9.0/data/archive/34d8737b80434782_20260127133627/snapshot_12.json new file mode 100644 index 0000000..5d99617 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/34d8737b80434782_20260127133627/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "34d8737b80434782", + "lastEventId": 12, + "timestamp": "2026-01-27T13:36:27.5253055Z", + "checksum": "ec7a8cc5ca949945cac59b72af28e810b5db1ed59683d8840aeb5293c21154e6", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0894098, + "lon": 14.4226833 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.08879728000001, + "lon": 14.41972866 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0879498, + "lon": 14.4233898 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0865062, + "lon": 14.4206464 + }, + "type": "Progress", + "durationMs": 5593, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.0883246, + "lon": 14.4238715 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/5d096533c3094eaa_20260127133127/snapshot_51.json b/bin/Debug/net9.0/data/archive/5d096533c3094eaa_20260127133127/snapshot_51.json new file mode 100644 index 0000000..42b2544 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/5d096533c3094eaa_20260127133127/snapshot_51.json @@ -0,0 +1,52 @@ +{ + "lobbyId": "5d096533c3094eaa", + "lastEventId": 51, + "timestamp": "2026-01-27T13:31:27.5287743Z", + "checksum": "c3eb831a207d599f3fbf61d89359c0c36b3d787fdb339fb36766c4cbf1f52462", + "phase": "Ended", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 49.9999798, + "lon": 14.0026563 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 49.9996681, + "lon": 14.0003986 + }, + "type": "Progress", + "durationMs": 8093, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0031177, + "lon": 13.998514216666669 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50, + "lon": 14 + }, + "playAreaRadius": 500, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/6772d80dd8a44352_20260127113711/snapshot_12.json b/bin/Debug/net9.0/data/archive/6772d80dd8a44352_20260127113711/snapshot_12.json new file mode 100644 index 0000000..a16568e --- /dev/null +++ b/bin/Debug/net9.0/data/archive/6772d80dd8a44352_20260127113711/snapshot_12.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "6772d80dd8a44352", + "lastEventId": 12, + "timestamp": "2026-01-27T11:37:11.3093918Z", + "checksum": "2c421294fe51e01d08fe09e59f84c8a0c1e73120cb2764eb503b6c24cfb94d8e", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50, + "lon": 14 + }, + "playAreaRadius": 500, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/6af233ecf68b4434_20260127134127/snapshot_4.json b/bin/Debug/net9.0/data/archive/6af233ecf68b4434_20260127134127/snapshot_4.json new file mode 100644 index 0000000..1f36e77 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/6af233ecf68b4434_20260127134127/snapshot_4.json @@ -0,0 +1,45 @@ +{ + "lobbyId": "6af233ecf68b4434", + "lastEventId": 4, + "timestamp": "2026-01-27T13:41:27.5355764Z", + "checksum": "a14cbc3f62b3a9d629f3852bc29e2d6e5460d7c7c5db39eae124537a56bc9fd5", + "phase": "Lobby", + "players": [ + { + "clientUuid": "4cda16e3", + "displayName": "SabPlayer", + "position": { + "lat": 50.0875, + "lon": 14.4213 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T12:38:01.2482361Z", + "lastPositionUpdate": "2026-01-27T12:38:01.2482361Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/6dba8c0edbe7490d_20260127134127/snapshot_12.json b/bin/Debug/net9.0/data/archive/6dba8c0edbe7490d_20260127134127/snapshot_12.json new file mode 100644 index 0000000..13022fb --- /dev/null +++ b/bin/Debug/net9.0/data/archive/6dba8c0edbe7490d_20260127134127/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "6dba8c0edbe7490d", + "lastEventId": 12, + "timestamp": "2026-01-27T13:41:27.5240463Z", + "checksum": "e006a9e9b5a9473600b72662bb8ee30ed1d8f5896538ca22976917c77ecd88e2", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0877076, + "lon": 14.4241423 + }, + "type": "Progress", + "durationMs": 6709, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.089346660000004, + "lon": 14.42227354 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.087235, + "lon": 14.4177676 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0872447, + "lon": 14.4252718 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.08679, + "lon": 14.4209933 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/74771a6153544040_20260127134127/snapshot_7.json b/bin/Debug/net9.0/data/archive/74771a6153544040_20260127134127/snapshot_7.json new file mode 100644 index 0000000..99ccdb7 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/74771a6153544040_20260127134127/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "74771a6153544040", + "lastEventId": 7, + "timestamp": "2026-01-27T13:41:27.5390519Z", + "checksum": "c4133709107e0aa5b7b36b09e2275c68306c8b0ba9f149dd2a7acc8af4841d72", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/7da1c15116fc4fbc_20260127133627/snapshot_7.json b/bin/Debug/net9.0/data/archive/7da1c15116fc4fbc_20260127133627/snapshot_7.json new file mode 100644 index 0000000..e576db3 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/7da1c15116fc4fbc_20260127133627/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "7da1c15116fc4fbc", + "lastEventId": 7, + "timestamp": "2026-01-27T13:36:27.528593Z", + "checksum": "4536b2249e71f0a79258b5a3861a0e4868ad592170b159404031f315105966a5", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/7f234630f0d3470c_20260127134127/snapshot_51.json b/bin/Debug/net9.0/data/archive/7f234630f0d3470c_20260127134127/snapshot_51.json new file mode 100644 index 0000000..4288595 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/7f234630f0d3470c_20260127134127/snapshot_51.json @@ -0,0 +1,52 @@ +{ + "lobbyId": "7f234630f0d3470c", + "lastEventId": 51, + "timestamp": "2026-01-27T13:41:27.5227014Z", + "checksum": "f52e66c8c122229b9ed6b67b4a965540971b421294a9adf54f2295ea6206da80", + "phase": "Ended", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0004706, + "lon": 14.0066172 + }, + "type": "Progress", + "durationMs": 5753, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.0030234, + "lon": 13.9993778 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0030134625, + "lon": 13.999101749999998 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50, + "lon": 14 + }, + "playAreaRadius": 500, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/8da0b3e582444daf_20260127134127/snapshot_7.json b/bin/Debug/net9.0/data/archive/8da0b3e582444daf_20260127134127/snapshot_7.json new file mode 100644 index 0000000..01ddca4 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/8da0b3e582444daf_20260127134127/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "8da0b3e582444daf", + "lastEventId": 7, + "timestamp": "2026-01-27T13:41:27.5200488Z", + "checksum": "926ef187cbeca5bbb412bbd70e86494ae9ae0bad25bb322cf2e8798fb46156ee", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/9f07a2d91db949ad_20260127133127/snapshot_7.json b/bin/Debug/net9.0/data/archive/9f07a2d91db949ad_20260127133127/snapshot_7.json new file mode 100644 index 0000000..733d9c2 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/9f07a2d91db949ad_20260127133127/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "9f07a2d91db949ad", + "lastEventId": 7, + "timestamp": "2026-01-27T13:31:27.538973Z", + "checksum": "d2834a20c3fbf35631ac19aa4cc881dc4ea22da294f378c9ea175f79def2e5b1", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/a16bac8d99e74830_20260127134127/snapshot_12.json b/bin/Debug/net9.0/data/archive/a16bac8d99e74830_20260127134127/snapshot_12.json new file mode 100644 index 0000000..a422eba --- /dev/null +++ b/bin/Debug/net9.0/data/archive/a16bac8d99e74830_20260127134127/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "a16bac8d99e74830", + "lastEventId": 12, + "timestamp": "2026-01-27T13:41:27.5257123Z", + "checksum": "ce1d6aec022b9dfcd40896dc2d137c997eb55b180fcb565d259dd9d3fba5efe2", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0858413, + "lon": 14.4205435 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.08849002857143, + "lon": 14.421553200000002 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0875007, + "lon": 14.4179042 + }, + "type": "Progress", + "durationMs": 5708, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.08828, + "lon": 14.4177757 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.0863048, + "lon": 14.4194325 + }, + "type": "Progress", + "durationMs": 9104, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/b9cffa33b9264559_20260127133627/snapshot_11.json b/bin/Debug/net9.0/data/archive/b9cffa33b9264559_20260127133627/snapshot_11.json new file mode 100644 index 0000000..cc7806f --- /dev/null +++ b/bin/Debug/net9.0/data/archive/b9cffa33b9264559_20260127133627/snapshot_11.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "b9cffa33b9264559", + "lastEventId": 11, + "timestamp": "2026-01-27T13:36:27.5272024Z", + "checksum": "eb35b9829659a173f4ff3ff4bffae656b8f7fd54d7d0b77addc9e65dc7e95d47", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0880837, + "lon": 14.4241303 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.0868455, + "lon": 14.4251958 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0881001, + "lon": 14.4251481 + }, + "type": "Progress", + "durationMs": 5959, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0868548, + "lon": 14.4252407 + }, + "type": "Progress", + "durationMs": 8586, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.0889995, + "lon": 14.4222151 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/cf3be038c5a3472e_20260127134127/snapshot_7.json b/bin/Debug/net9.0/data/archive/cf3be038c5a3472e_20260127134127/snapshot_7.json new file mode 100644 index 0000000..89f0e14 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/cf3be038c5a3472e_20260127134127/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "cf3be038c5a3472e", + "lastEventId": 7, + "timestamp": "2026-01-27T13:41:27.521301Z", + "checksum": "b8c94dca9682f3f2308d847b765fd5d473149dcb87f84a9c6dff93f403e2d622", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/d3e8a657109144ce_20260127133627/snapshot_7.json b/bin/Debug/net9.0/data/archive/d3e8a657109144ce_20260127133627/snapshot_7.json new file mode 100644 index 0000000..ff9ac8f --- /dev/null +++ b/bin/Debug/net9.0/data/archive/d3e8a657109144ce_20260127133627/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "d3e8a657109144ce", + "lastEventId": 7, + "timestamp": "2026-01-27T13:36:27.5310617Z", + "checksum": "0b23ea5bf52ae1200a729d7db310feb1c8a9307f014bbc58d2e532468d112a91", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/dc41c9d596db4946_20260127134127/snapshot_12.json b/bin/Debug/net9.0/data/archive/dc41c9d596db4946_20260127134127/snapshot_12.json new file mode 100644 index 0000000..9f99fd2 --- /dev/null +++ b/bin/Debug/net9.0/data/archive/dc41c9d596db4946_20260127134127/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "dc41c9d596db4946", + "lastEventId": 12, + "timestamp": "2026-01-27T13:41:27.518834Z", + "checksum": "6cf9b25105fdf12ec96a8dedb18dd85aa5fef345c2c08a50045e7a53df078ffc", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.085561139999996, + "lon": 14.42309244 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.085837, + "lon": 14.4188593 + }, + "type": "Progress", + "durationMs": 7152, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0859669, + "lon": 14.4188964 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0860902, + "lon": 14.4235956 + }, + "type": "Progress", + "durationMs": 5893, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.09006194, + "lon": 14.421070419999998 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/df5878e2914a4104_20260127133627/snapshot_12.json b/bin/Debug/net9.0/data/archive/df5878e2914a4104_20260127133627/snapshot_12.json new file mode 100644 index 0000000..86931ec --- /dev/null +++ b/bin/Debug/net9.0/data/archive/df5878e2914a4104_20260127133627/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "df5878e2914a4104", + "lastEventId": 12, + "timestamp": "2026-01-27T13:36:27.5297309Z", + "checksum": "33e3631ebc9785562d42cb7d2a9ac0778daa8fbccf56496c6938f1da4305fe0b", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0870176, + "lon": 14.4213745 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.08900948, + "lon": 14.418448039999998 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0856234, + "lon": 14.4229967 + }, + "type": "Progress", + "durationMs": 5157, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0876224, + "lon": 14.4200385 + }, + "type": "Progress", + "durationMs": 6963, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.0873335, + "lon": 14.4229653 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/archive/e52ea7e70f9c4475_20260127133127/snapshot_12.json b/bin/Debug/net9.0/data/archive/e52ea7e70f9c4475_20260127133127/snapshot_12.json new file mode 100644 index 0000000..f36524d --- /dev/null +++ b/bin/Debug/net9.0/data/archive/e52ea7e70f9c4475_20260127133127/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "e52ea7e70f9c4475", + "lastEventId": 12, + "timestamp": "2026-01-27T13:31:27.5486405Z", + "checksum": "b974ca483616d916c79e6661a25e155a34d9905bf1e8bf044f958e3332ddecbe", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0883326, + "lon": 14.4243654 + }, + "type": "Progress", + "durationMs": 9830, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.0888976, + "lon": 14.4235413 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.087982700000005, + "lon": 14.424510520000002 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.08682402000001, + "lon": 14.41780478 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.0879393, + "lon": 14.4195066 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/2648919f382c41c5/snapshot_59.json b/bin/Debug/net9.0/data/lobbies/2648919f382c41c5/snapshot_59.json new file mode 100644 index 0000000..f570e51 --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/2648919f382c41c5/snapshot_59.json @@ -0,0 +1,254 @@ +{ + "lobbyId": "2648919f382c41c5", + "lastEventId": 59, + "timestamp": "2026-01-27T18:59:03.2825318Z", + "checksum": "1a2ad5f4cbb6cce28242186be6f40b40eec4324c03c7f86a5240dd90a9dd2177", + "phase": "Lobby", + "players": [ + { + "clientUuid": "8994ac32", + "displayName": "Hr\u00E1\u010D415", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:53:06.3002728Z", + "lastPositionUpdate": "2026-01-27T18:57:32.9413685Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": "2026-01-27T18:55:14.0260895Z", + "emergencyMeetingsUsed": 1, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "0edf1729", + "displayName": "Hr\u00E1\u010D807", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:53:14.049105Z", + "lastPositionUpdate": "2026-01-27T18:56:19.557754Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "71890d7c", + "displayName": "Hr\u00E1\u010D727", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:53:16.7573899Z", + "lastPositionUpdate": "2026-01-27T18:57:32.6978551Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "c9700c3e", + "displayName": "Hr\u00E1\u010D811", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:53:18.3315357Z", + "lastPositionUpdate": "2026-01-27T18:57:32.6887401Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "8d4ca20b", + "displayName": "Hr\u00E1\u010D45", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:53:20.2071786Z", + "lastPositionUpdate": "2026-01-27T18:57:32.6947537Z", + "lastKillTime": "2026-01-27T18:56:19.060694Z", + "lastEmergencyMeetingTime": "2026-01-27T18:53:50.6568196Z", + "emergencyMeetingsUsed": 1, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 104, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/2c50d55476084b56/snapshot_12.json b/bin/Debug/net9.0/data/lobbies/2c50d55476084b56/snapshot_12.json new file mode 100644 index 0000000..3a65cf1 --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/2c50d55476084b56/snapshot_12.json @@ -0,0 +1,87 @@ +{ + "lobbyId": "2c50d55476084b56", + "lastEventId": 12, + "timestamp": "2026-01-27T16:28:29.5775449Z", + "checksum": "f350e9f787de7222da92560a4faf764440917922ee2f6bc477a61b0b2597c047", + "phase": "Playing", + "players": [], + "bodies": [ + { + "bodyId": "93c535cb", + "victimId": "3a7b7d51", + "killerId": "4776b4fd", + "location": { + "lat": 50.773528230993556, + "lon": 15.072186665335956 + }, + "killedAt": "2026-01-27T16:07:05.4091568Z", + "reported": false, + "reportedBy": null + } + ], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Progress", + "durationMs": 8268, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7748682, + "lon": 15.0725437 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Progress", + "durationMs": 6077, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7746238, + "lon": 15.0716847 + }, + "type": "Progress", + "durationMs": 5791, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 175, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/2e22bb042f2f4bbe/snapshot_22.json b/bin/Debug/net9.0/data/lobbies/2e22bb042f2f4bbe/snapshot_22.json new file mode 100644 index 0000000..b703965 --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/2e22bb042f2f4bbe/snapshot_22.json @@ -0,0 +1,545 @@ +{ + "lobbyId": "2e22bb042f2f4bbe", + "lastEventId": 22, + "timestamp": "2026-01-27T15:51:57.8920069Z", + "checksum": "9d1b249ae84e5d6285b305b86c43d02c035c58d7639d26b444131c7d6e548953", + "phase": "Playing", + "players": [ + { + "clientUuid": "f950d5da", + "displayName": "Hr\u00E1\u010D807", + "position": { + "lat": 50.77313331657089, + "lon": 15.072188416646162 + }, + "role": "Crew", + "state": "Dead", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:41:57.4124996Z", + "lastPositionUpdate": "2026-01-27T15:43:03.3779377Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 7149, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7727517, + "lon": 15.0713078 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7743857, + "lon": 15.0723828 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738718, + "lon": 15.0726246 + }, + "type": "Progress", + "durationMs": 6496, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "c5654f74", + "displayName": "Hr\u00E1\u010D437", + "position": { + "lat": 50.77278259768372, + "lon": 15.07222070338361 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:42:07.6931815Z", + "lastPositionUpdate": "2026-01-27T15:51:57.5706389Z", + "lastKillTime": "2026-01-27T15:45:05.8370242Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "03a78181", + "displayName": "Hr\u00E1\u010D551", + "position": { + "lat": 50.77398539640443, + "lon": 15.072124569466894 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:42:10.6142359Z", + "lastPositionUpdate": "2026-01-27T15:51:57.7340338Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": "2026-01-27T15:44:49.798083Z", + "emergencyMeetingsUsed": 1, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7731933, + "lon": 15.0726196 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Progress", + "durationMs": 9946, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7743766, + "lon": 15.0722922 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "ecd89d1a", + "displayName": "Hr\u00E1\u010D18", + "position": { + "lat": 50.77368486134701, + "lon": 15.071483856973888 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:42:12.192649Z", + "lastPositionUpdate": "2026-01-27T15:51:57.8914614Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7730142, + "lon": 15.0715442 + }, + "type": "Progress", + "durationMs": 8933, + "steps": 1 + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Progress", + "durationMs": 8475, + "steps": 1 + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7732768, + "lon": 15.0725856 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 7149, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7727517, + "lon": 15.0713078 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7743857, + "lon": 15.0723828 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738718, + "lon": 15.0726246 + }, + "type": "Progress", + "durationMs": 6496, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7731933, + "lon": 15.0726196 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Progress", + "durationMs": 9946, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7743766, + "lon": 15.0722922 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7730142, + "lon": 15.0715442 + }, + "type": "Progress", + "durationMs": 8933, + "steps": 1 + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Progress", + "durationMs": 8475, + "steps": 1 + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7732768, + "lon": 15.0725856 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 112, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/525fa8b4d76a42ed/snapshot_18.json b/bin/Debug/net9.0/data/lobbies/525fa8b4d76a42ed/snapshot_18.json new file mode 100644 index 0000000..dff7c31 --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/525fa8b4d76a42ed/snapshot_18.json @@ -0,0 +1,163 @@ +{ + "lobbyId": "525fa8b4d76a42ed", + "lastEventId": 18, + "timestamp": "2026-01-27T16:41:21.5644571Z", + "checksum": "f00d06dc1b92bc8cfdebcf3fc4ea33925e0fb24ca9ffc130f838f042c7d0fec7", + "phase": "Lobby", + "players": [ + { + "clientUuid": "a4b084ae", + "displayName": "Hr\u00E1\u010D49", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T16:35:21.4117891Z", + "lastPositionUpdate": "2026-01-27T16:40:04.8976091Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "e7432841", + "displayName": "Hr\u00E1\u010D952", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T16:35:34.1694493Z", + "lastPositionUpdate": "2026-01-27T16:40:04.8708739Z", + "lastKillTime": "2026-01-27T16:40:04.944272Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "a529c9bf", + "displayName": "Hr\u00E1\u010D887", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T16:35:34.6701344Z", + "lastPositionUpdate": "2026-01-27T16:40:04.8646587Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": "2026-01-27T16:38:42.7706296Z", + "emergencyMeetingsUsed": 1, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 100, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/578a2e6234924b7e/snapshot_8.json b/bin/Debug/net9.0/data/lobbies/578a2e6234924b7e/snapshot_8.json new file mode 100644 index 0000000..056ee36 --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/578a2e6234924b7e/snapshot_8.json @@ -0,0 +1,71 @@ +{ + "lobbyId": "578a2e6234924b7e", + "lastEventId": 8, + "timestamp": "2026-01-27T13:58:30.9653651Z", + "checksum": "903a6c6bed851b55cb00fdf3578463e6541556145374f6211fd60adbbdbfad13", + "phase": "Lobby", + "players": [ + { + "clientUuid": "39cc9c4a", + "displayName": "Hr\u00E1\u010D880", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T13:53:36.8705417Z", + "lastPositionUpdate": "2026-01-27T13:53:36.8705418Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [] + }, + { + "clientUuid": "e76cb534", + "displayName": "Hr\u00E1\u010D839", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T13:53:38.3550591Z", + "lastPositionUpdate": "2026-01-27T13:53:38.3550591Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/5e6dc2f6267b4a23/snapshot_49.json b/bin/Debug/net9.0/data/lobbies/5e6dc2f6267b4a23/snapshot_49.json new file mode 100644 index 0000000..c09e34c --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/5e6dc2f6267b4a23/snapshot_49.json @@ -0,0 +1,207 @@ +{ + "lobbyId": "5e6dc2f6267b4a23", + "lastEventId": 49, + "timestamp": "2026-01-27T17:23:51.9496141Z", + "checksum": "a076881d1a0cea6a2b39fdfeb1fb2041927e6b0a4351c1871422900729eac9f6", + "phase": "Lobby", + "players": [ + { + "clientUuid": "ac74a0a6", + "displayName": "Hr\u00E1\u010D229", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:18:51.5675805Z", + "lastPositionUpdate": "2026-01-27T17:23:44.7477804Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "beb07c52", + "displayName": "Hr\u00E1\u010D623", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:28.7165473Z", + "lastPositionUpdate": "2026-01-27T17:23:49.0892842Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "8505d1ed", + "displayName": "Hr\u00E1\u010D976", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:32.3214433Z", + "lastPositionUpdate": "2026-01-27T17:23:49.0984457Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "55d92428", + "displayName": "Hr\u00E1\u010D172", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:35.2884502Z", + "lastPositionUpdate": "2026-01-27T17:23:49.2130304Z", + "lastKillTime": "2026-01-27T17:23:49.4098068Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 116, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/5e6dc2f6267b4a23/snapshot_97.json b/bin/Debug/net9.0/data/lobbies/5e6dc2f6267b4a23/snapshot_97.json new file mode 100644 index 0000000..286e942 --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/5e6dc2f6267b4a23/snapshot_97.json @@ -0,0 +1,518 @@ +{ + "lobbyId": "5e6dc2f6267b4a23", + "lastEventId": 97, + "timestamp": "2026-01-27T17:28:52.5626512Z", + "checksum": "f67d29a0cbd24da5e340bdb8d725233366ff81b97e13488d09de13477f5291ce", + "phase": "Meeting", + "players": [ + { + "clientUuid": "ac74a0a6", + "displayName": "Hr\u00E1\u010D229", + "position": { + "lat": 50.77361640940255, + "lon": 15.072599356266377 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:18:51.5675805Z", + "lastPositionUpdate": "2026-01-27T17:28:17.854293Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "type": "Instant" + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Instant" + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "type": "Instant" + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "type": "Instant" + } + ], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "beb07c52", + "displayName": "Hr\u00E1\u010D623", + "position": { + "lat": 50.77365433872294, + "lon": 15.07261560623589 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:28.7165473Z", + "lastPositionUpdate": "2026-01-27T17:28:17.8661244Z", + "lastKillTime": "2026-01-27T17:27:45.615597Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "8505d1ed", + "displayName": "Hr\u00E1\u010D976", + "position": { + "lat": 50.77364810754672, + "lon": 15.072627464770637 + }, + "role": "Crew", + "state": "Dead", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:32.3214433Z", + "lastPositionUpdate": "2026-01-27T17:27:45.7426596Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7739109, + "lon": 15.0728539 + }, + "type": "Instant" + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7734516, + "lon": 15.0723155 + }, + "type": "Instant" + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "type": "Instant" + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "type": "Instant" + } + ], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "55d92428", + "displayName": "Hr\u00E1\u010D172", + "position": { + "lat": 50.77365944629486, + "lon": 15.07263119340305 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:35.2884502Z", + "lastPositionUpdate": "2026-01-27T17:28:17.7087384Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7732768, + "lon": 15.0725856 + }, + "type": "Instant" + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Instant" + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "type": "Instant" + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7728733, + "lon": 15.0713562 + }, + "type": "Instant" + } + ], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [ + { + "bodyId": "a0d004c6", + "victimId": "8505d1ed", + "killerId": "beb07c52", + "location": { + "lat": 50.77364810754672, + "lon": 15.072627464770637 + }, + "killedAt": "2026-01-27T17:27:45.6156674Z", + "reported": true, + "reportedBy": "beb07c52" + } + ], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "type": "Instant" + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Instant" + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "type": "Instant" + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "type": "Instant" + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7739109, + "lon": 15.0728539 + }, + "type": "Instant" + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7734516, + "lon": 15.0723155 + }, + "type": "Instant" + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "type": "Instant" + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "type": "Instant" + }, + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7732768, + "lon": 15.0725856 + }, + "type": "Instant" + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Instant" + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "type": "Instant" + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7728733, + "lon": 15.0713562 + }, + "type": "Instant" + } + ], + "currentMeeting": { + "meetingId": "0b48d4b8", + "type": "BodyReport", + "reportedBodyId": "a0d004c6", + "callerId": "beb07c52", + "meetingLocation": { + "lat": 50.77364810754672, + "lon": 15.072627464770637 + }, + "startTime": "2026-01-27T17:27:54.9995201Z", + "arrivalDeadline": "2026-01-27T17:28:17.9995201Z", + "discussionEndTime": "2026-01-27T17:28:29.9995201Z", + "votingEndTime": "2026-01-27T17:28:59.9995201Z", + "arrivedPlayers": [ + "beb07c52", + "55d92428", + "ac74a0a6" + ], + "votes": { + "55d92428": "beb07c52", + "ac74a0a6": "beb07c52", + "beb07c52": "55d92428" + }, + "lastVoteChangeTime": "2026-01-27T17:28:52.5435833Z" + }, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 116, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/6dc0701887224f6c/snapshot_29.json b/bin/Debug/net9.0/data/lobbies/6dc0701887224f6c/snapshot_29.json new file mode 100644 index 0000000..3454d4b --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/6dc0701887224f6c/snapshot_29.json @@ -0,0 +1,843 @@ +{ + "lobbyId": "6dc0701887224f6c", + "lastEventId": 29, + "timestamp": "2026-01-27T17:08:04.9544682Z", + "checksum": "35e22951c680f0a9dc2e4dcf31e203e75e9bc3601ff3d2654d925857ca3d9e11", + "phase": "Playing", + "players": [ + { + "clientUuid": "0cabd196", + "displayName": "Hr\u00E1\u010D308", + "position": { + "lat": 50.77360619739959, + "lon": 15.072054196830372 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:03:04.9405525Z", + "lastPositionUpdate": "2026-01-27T17:08:04.8139149Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "currentWaypointIndex": 1, + "taskStartTime": "2026-01-27T17:06:22.6362862Z", + "lastTaskProgressTime": "2026-01-27T17:06:22.636287Z", + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "70d9764e", + "displayName": "Hr\u00E1\u010D467", + "position": { + "lat": 50.773608029754094, + "lon": 15.072135796821454 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:03:12.3441902Z", + "lastPositionUpdate": "2026-01-27T17:08:04.9533762Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "waypoints": [ + { + "waypointId": "task_0_wp0", + "name": "Opravit kabel - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "order": 0 + }, + { + "waypointId": "task_0_wp1", + "name": "Opravit kabel - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7738727, + "lon": 15.0724211 + }, + "order": 1 + }, + { + "waypointId": "task_0_wp2", + "name": "Opravit kabel - Potvrdit", + "location": { + "lat": 50.7735894, + "lon": 15.0717216 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "waypoints": [ + { + "waypointId": "task_1_wp0", + "name": "Zkalibrovat senzor - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "order": 0 + }, + { + "waypointId": "task_1_wp1", + "name": "Zkalibrovat senzor - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "waypoints": [ + { + "waypointId": "task_2_wp0", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "order": 0 + } + ], + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7736218, + "lon": 15.0734419 + }, + "waypoints": [ + { + "waypointId": "task_3_wp0", + "name": "Nab\u00EDt baterii - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7736218, + "lon": 15.0734419 + }, + "order": 0 + }, + { + "waypointId": "task_3_wp1", + "name": "Nab\u00EDt baterii - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "waypoints": [ + { + "waypointId": "task_4_wp0", + "name": "Vy\u010Distit filtr - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "order": 0 + }, + { + "waypointId": "task_4_wp1", + "name": "Vy\u010Distit filtr - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7735484, + "lon": 15.0720508 + }, + "order": 1 + }, + { + "waypointId": "task_4_wp2", + "name": "Vy\u010Distit filtr - Potvrdit", + "location": { + "lat": 50.7741669, + "lon": 15.0718846 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + } + ], + "currentTaskId": null, + "currentWaypointIndex": 0, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "47c5062e", + "displayName": "Hr\u00E1\u010D283", + "position": { + "lat": 50.77362533873519, + "lon": 15.072083787211199 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:03:20.2284988Z", + "lastPositionUpdate": "2026-01-27T17:08:04.7240844Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "waypoints": [ + { + "waypointId": "task_5_wp0", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "order": 0 + } + ], + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "waypoints": [ + { + "waypointId": "task_6_wp0", + "name": "Opravit antenu - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "order": 0 + }, + { + "waypointId": "task_6_wp1", + "name": "Opravit antenu - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "order": 1 + }, + { + "waypointId": "task_6_wp2", + "name": "Opravit antenu - Potvrdit", + "location": { + "lat": 50.773902, + "lon": 15.0727669 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7739852, + "lon": 15.072001 + }, + "waypoints": [ + { + "waypointId": "task_7_wp0", + "name": "Zkontrolovat z\u00E1soby - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7739852, + "lon": 15.072001 + }, + "order": 0 + }, + { + "waypointId": "task_7_wp1", + "name": "Zkontrolovat z\u00E1soby - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7735939, + "lon": 15.0732437 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7735004, + "lon": 15.0728728 + }, + "waypoints": [ + { + "waypointId": "task_8_wp0", + "name": "Otestovat reaktor - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7735004, + "lon": 15.0728728 + }, + "order": 0 + }, + { + "waypointId": "task_8_wp1", + "name": "Otestovat reaktor - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "order": 1 + }, + { + "waypointId": "task_8_wp2", + "name": "Otestovat reaktor - Potvrdit", + "location": { + "lat": 50.7735894, + "lon": 15.0717216 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "waypoints": [ + { + "waypointId": "task_9_wp0", + "name": "Opravit kabel - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "order": 0 + }, + { + "waypointId": "task_9_wp1", + "name": "Opravit kabel - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "order": 1 + }, + { + "waypointId": "task_9_wp2", + "name": "Opravit kabel - Potvrdit", + "location": { + "lat": 50.7734588, + "lon": 15.0719916 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + } + ], + "currentTaskId": null, + "currentWaypointIndex": 1, + "taskStartTime": null, + "lastTaskProgressTime": "2026-01-27T17:06:50.8371719Z", + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "waypoints": [ + { + "waypointId": "task_0_wp0", + "name": "Opravit kabel - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "order": 0 + }, + { + "waypointId": "task_0_wp1", + "name": "Opravit kabel - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7738727, + "lon": 15.0724211 + }, + "order": 1 + }, + { + "waypointId": "task_0_wp2", + "name": "Opravit kabel - Potvrdit", + "location": { + "lat": 50.7735894, + "lon": 15.0717216 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "waypoints": [ + { + "waypointId": "task_1_wp0", + "name": "Zkalibrovat senzor - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "order": 0 + }, + { + "waypointId": "task_1_wp1", + "name": "Zkalibrovat senzor - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "waypoints": [ + { + "waypointId": "task_2_wp0", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "order": 0 + } + ], + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7736218, + "lon": 15.0734419 + }, + "waypoints": [ + { + "waypointId": "task_3_wp0", + "name": "Nab\u00EDt baterii - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7736218, + "lon": 15.0734419 + }, + "order": 0 + }, + { + "waypointId": "task_3_wp1", + "name": "Nab\u00EDt baterii - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "waypoints": [ + { + "waypointId": "task_4_wp0", + "name": "Vy\u010Distit filtr - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "order": 0 + }, + { + "waypointId": "task_4_wp1", + "name": "Vy\u010Distit filtr - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7735484, + "lon": 15.0720508 + }, + "order": 1 + }, + { + "waypointId": "task_4_wp2", + "name": "Vy\u010Distit filtr - Potvrdit", + "location": { + "lat": 50.7741669, + "lon": 15.0718846 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "waypoints": [ + { + "waypointId": "task_5_wp0", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "order": 0 + } + ], + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "waypoints": [ + { + "waypointId": "task_6_wp0", + "name": "Opravit antenu - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "order": 0 + }, + { + "waypointId": "task_6_wp1", + "name": "Opravit antenu - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "order": 1 + }, + { + "waypointId": "task_6_wp2", + "name": "Opravit antenu - Potvrdit", + "location": { + "lat": 50.773902, + "lon": 15.0727669 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7739852, + "lon": 15.072001 + }, + "waypoints": [ + { + "waypointId": "task_7_wp0", + "name": "Zkontrolovat z\u00E1soby - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7739852, + "lon": 15.072001 + }, + "order": 0 + }, + { + "waypointId": "task_7_wp1", + "name": "Zkontrolovat z\u00E1soby - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7735939, + "lon": 15.0732437 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7735004, + "lon": 15.0728728 + }, + "waypoints": [ + { + "waypointId": "task_8_wp0", + "name": "Otestovat reaktor - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7735004, + "lon": 15.0728728 + }, + "order": 0 + }, + { + "waypointId": "task_8_wp1", + "name": "Otestovat reaktor - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "order": 1 + }, + { + "waypointId": "task_8_wp2", + "name": "Otestovat reaktor - Potvrdit", + "location": { + "lat": 50.7735894, + "lon": 15.0717216 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "waypoints": [ + { + "waypointId": "task_9_wp0", + "name": "Opravit kabel - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "order": 0 + }, + { + "waypointId": "task_9_wp1", + "name": "Opravit kabel - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "order": 1 + }, + { + "waypointId": "task_9_wp2", + "name": "Opravit kabel - Potvrdit", + "location": { + "lat": 50.7734588, + "lon": 15.0719916 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 100, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/79b0a3695df748e9/snapshot_15.json b/bin/Debug/net9.0/data/lobbies/79b0a3695df748e9/snapshot_15.json new file mode 100644 index 0000000..803fdb7 --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/79b0a3695df748e9/snapshot_15.json @@ -0,0 +1,263 @@ +{ + "lobbyId": "79b0a3695df748e9", + "lastEventId": 15, + "timestamp": "2026-01-27T14:09:32.6436672Z", + "checksum": "c5ed7252657435f2394fb45ea57a0a9a55580f67ce1fa47c8d3d57133b8b4ec3", + "phase": "Playing", + "players": [ + { + "clientUuid": "0a2becd5", + "displayName": "Hr\u00E1\u010D663", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:04:32.409501Z", + "lastPositionUpdate": "2026-01-27T14:09:32.251747Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "7ddc8c89", + "displayName": "Hr\u00E1\u010D774", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:04:49.0930502Z", + "lastPositionUpdate": "2026-01-27T14:09:32.1675785Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "7f1e49f6", + "displayName": "Hr\u00E1\u010D409", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:04:50.9443623Z", + "lastPositionUpdate": "2026-01-27T14:09:32.6433769Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "1c0c235a", + "displayName": "Hr\u00E1\u010D643", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:04:52.5855743Z", + "lastPositionUpdate": "2026-01-27T14:09:32.3222919Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.773738, + "lon": 15.0696539 + }, + "type": "Progress", + "durationMs": 7376, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7742687, + "lon": 15.0684062 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739087, + "lon": 15.0680313 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/833e71c1c6c64572/snapshot_41.json b/bin/Debug/net9.0/data/lobbies/833e71c1c6c64572/snapshot_41.json new file mode 100644 index 0000000..1b79c5a --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/833e71c1c6c64572/snapshot_41.json @@ -0,0 +1,390 @@ +{ + "lobbyId": "833e71c1c6c64572", + "lastEventId": 41, + "timestamp": "2026-01-27T19:49:33.8228142Z", + "checksum": "947203265976dbb0c3abb28163f1ad9f4a95832ae6af7af2db9b6cb1a7d35a1f", + "phase": "Playing", + "players": [ + { + "clientUuid": "42abae11", + "displayName": "Hr\u00E1\u010D71", + "position": { + "lat": 50.77368411905394, + "lon": 15.072021509115855 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T19:44:33.6038667Z", + "lastPositionUpdate": "2026-01-27T19:49:33.5853267Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "e43245ed", + "displayName": "Hr\u00E1\u010D656", + "position": { + "lat": 50.773616604900646, + "lon": 15.07330046468691 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T19:46:15.7160727Z", + "lastPositionUpdate": "2026-01-27T19:49:33.5497451Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [ + "task_9" + ], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.7738714, + "lon": 15.0698715 + }, + "type": "Instant" + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.774702, + "lon": 15.0718182 + }, + "type": "Instant" + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant" + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Instant" + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + } + ], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "ac9c6e85", + "displayName": "Hr\u00E1\u010D454", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T19:46:21.0904587Z", + "lastPositionUpdate": "2026-01-27T19:49:33.4002447Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.774702, + "lon": 15.0718182 + }, + "type": "Instant" + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant" + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "Instant" + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739942, + "lon": 15.0706985 + }, + "type": "Instant" + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7740297, + "lon": 15.0744936 + }, + "type": "Instant" + } + ], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant" + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7739942, + "lon": 15.0706985 + }, + "type": "Instant" + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant" + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7746238, + "lon": 15.0716847 + }, + "type": "Instant" + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Instant" + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.7738714, + "lon": 15.0698715 + }, + "type": "Instant" + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.774702, + "lon": 15.0718182 + }, + "type": "Instant" + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant" + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Instant" + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.774702, + "lon": 15.0718182 + }, + "type": "Instant" + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant" + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "Instant" + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739942, + "lon": 15.0706985 + }, + "type": "Instant" + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7740297, + "lon": 15.0744936 + }, + "type": "Instant" + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 207, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/8d4e9da599f54808/snapshot_24.json b/bin/Debug/net9.0/data/lobbies/8d4e9da599f54808/snapshot_24.json new file mode 100644 index 0000000..8e52c33 --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/8d4e9da599f54808/snapshot_24.json @@ -0,0 +1,442 @@ +{ + "lobbyId": "8d4e9da599f54808", + "lastEventId": 24, + "timestamp": "2026-01-27T15:18:37.7070312Z", + "checksum": "f58ec73bd590e27a43011ac40020f25a033ec754c77741ad3520b6a846a25d0f", + "phase": "Playing", + "players": [ + { + "clientUuid": "3cf2ce1c", + "displayName": "Hr\u00E1\u010D136", + "position": { + "lat": 50.77379320364965, + "lon": 15.070223610918289 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:13:37.5682167Z", + "lastPositionUpdate": "2026-01-27T15:18:37.4568323Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Progress", + "durationMs": 9550, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 6835, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7748682, + "lon": 15.0725437 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "fc0eec4c", + "displayName": "Hr\u00E1\u010D652", + "position": { + "lat": 50.7745196638094, + "lon": 15.071680304081935 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:13:59.4594629Z", + "lastPositionUpdate": "2026-01-27T15:18:37.3824595Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Progress", + "durationMs": 9304, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7741494, + "lon": 15.0703058 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Progress", + "durationMs": 9090, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "4485888a", + "displayName": "Hr\u00E1\u010D445", + "position": { + "lat": 50.77362353479194, + "lon": 15.0721653 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:14:09.4702052Z", + "lastPositionUpdate": "2026-01-27T15:18:37.7046693Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.774702, + "lon": 15.0718182 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Progress", + "durationMs": 7553, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Progress", + "durationMs": 9550, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 6835, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7748682, + "lon": 15.0725437 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Progress", + "durationMs": 9304, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7741494, + "lon": 15.0703058 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Progress", + "durationMs": 9090, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 155, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/8d4e9da599f54808/snapshot_38.json b/bin/Debug/net9.0/data/lobbies/8d4e9da599f54808/snapshot_38.json new file mode 100644 index 0000000..250043c --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/8d4e9da599f54808/snapshot_38.json @@ -0,0 +1,442 @@ +{ + "lobbyId": "8d4e9da599f54808", + "lastEventId": 38, + "timestamp": "2026-01-27T15:33:38.0063974Z", + "checksum": "961ac66fd07f021b7e58dfbb84defa1a985c143994a1d4de652d5e2060c510e3", + "phase": "Playing", + "players": [ + { + "clientUuid": "3cf2ce1c", + "displayName": "Hr\u00E1\u010D136", + "position": { + "lat": 50.773291841983664, + "lon": 15.07256331093216 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:13:37.5682167Z", + "lastPositionUpdate": "2026-01-27T15:33:37.716566Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7741494, + "lon": 15.0703058 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "fc0eec4c", + "displayName": "Hr\u00E1\u010D652", + "position": { + "lat": 50.77317868182666, + "lon": 15.072231622732726 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:13:59.4594629Z", + "lastPositionUpdate": "2026-01-27T15:33:38.0059926Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Progress", + "durationMs": 9304, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7741494, + "lon": 15.0703058 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Progress", + "durationMs": 9090, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "4485888a", + "displayName": "Hr\u00E1\u010D445", + "position": { + "lat": 50.77364163912988, + "lon": 15.072117688520137 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:14:09.4702052Z", + "lastPositionUpdate": "2026-01-27T15:33:37.8006425Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7748514, + "lon": 15.0724958 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7746238, + "lon": 15.0716847 + }, + "type": "Progress", + "durationMs": 5107, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "Progress", + "durationMs": 9759, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7741494, + "lon": 15.0703058 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7748514, + "lon": 15.0724958 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7746238, + "lon": 15.0716847 + }, + "type": "Progress", + "durationMs": 5107, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "Progress", + "durationMs": 9759, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 155, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/92a59e40e47f46a4/snapshot_24.json b/bin/Debug/net9.0/data/lobbies/92a59e40e47f46a4/snapshot_24.json new file mode 100644 index 0000000..8db57f5 --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/92a59e40e47f46a4/snapshot_24.json @@ -0,0 +1,276 @@ +{ + "lobbyId": "92a59e40e47f46a4", + "lastEventId": 24, + "timestamp": "2026-01-27T14:19:25.6511339Z", + "checksum": "34a5e98d571d2b1417dcd8170b95ea7a4e54c25cdcbb43b0c6442527a0619d58", + "phase": "Playing", + "players": [ + { + "clientUuid": "d5b6a42a", + "displayName": "Hr\u00E1\u010D329", + "position": { + "lat": 50.77360212891568, + "lon": 15.072066545144711 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:14:25.4748393Z", + "lastPositionUpdate": "2026-01-27T14:19:25.4482291Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": "2026-01-27T14:17:23.8607905Z", + "emergencyMeetingsUsed": 2, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "cb379618", + "displayName": "Hr\u00E1\u010D723", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Dead", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:14:45.3520713Z", + "lastPositionUpdate": "2026-01-27T14:18:48.3375132Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "1545672a", + "displayName": "Hr\u00E1\u010D473", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:14:47.2696299Z", + "lastPositionUpdate": "2026-01-27T14:19:25.3302047Z", + "lastKillTime": "2026-01-27T14:18:47.9069569Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "69e62b18", + "displayName": "Hr\u00E1\u010D276", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:14:49.3924189Z", + "lastPositionUpdate": "2026-01-27T14:19:25.6462515Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [ + { + "bodyId": "096a1f19", + "victimId": "cb379618", + "killerId": "1545672a", + "location": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "killedAt": "2026-01-27T14:18:47.9069664Z", + "reported": false, + "reportedBy": null + } + ], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Progress", + "durationMs": 5468, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7743404, + "lon": 15.0686409 + }, + "type": "Progress", + "durationMs": 6822, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7740297, + "lon": 15.0744936 + }, + "type": "Progress", + "durationMs": 8038, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739087, + "lon": 15.0680313 + }, + "type": "Progress", + "durationMs": 8266, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/c20295d1ca0241b3/snapshot_39.json b/bin/Debug/net9.0/data/lobbies/c20295d1ca0241b3/snapshot_39.json new file mode 100644 index 0000000..a923493 --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/c20295d1ca0241b3/snapshot_39.json @@ -0,0 +1,212 @@ +{ + "lobbyId": "c20295d1ca0241b3", + "lastEventId": 39, + "timestamp": "2026-01-27T18:46:44.0153464Z", + "checksum": "c869a0099601f13a5f3e7ef86940bb965849277cd84a2f7f3e88ecbdcb03f320", + "phase": "Lobby", + "players": [ + { + "clientUuid": "e8888b3e", + "displayName": "Hr\u00E1\u010D229", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:41:34.084531Z", + "lastPositionUpdate": "2026-01-27T18:45:44.9225573Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "7614bb77", + "displayName": "Hr\u00E1\u010D423", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:41:47.9066426Z", + "lastPositionUpdate": "2026-01-27T18:45:44.9999768Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "a482eaf8", + "displayName": "Hr\u00E1\u010D755", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:41:49.9957639Z", + "lastPositionUpdate": "2026-01-27T18:45:45.0762014Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "b0172c9f", + "displayName": "Hr\u00E1\u010D382", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:46:12.1783916Z", + "lastPositionUpdate": "2026-01-27T18:46:12.1783917Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [] + }, + { + "clientUuid": "0d634cf6", + "displayName": "Hr\u00E1\u010D27", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:46:43.9875318Z", + "lastPositionUpdate": "2026-01-27T18:46:43.987532Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 248, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/lobbies/ce407ba2a282475a/snapshot_23.json b/bin/Debug/net9.0/data/lobbies/ce407ba2a282475a/snapshot_23.json new file mode 100644 index 0000000..a74bbec --- /dev/null +++ b/bin/Debug/net9.0/data/lobbies/ce407ba2a282475a/snapshot_23.json @@ -0,0 +1,565 @@ +{ + "lobbyId": "ce407ba2a282475a", + "lastEventId": 23, + "timestamp": "2026-01-27T16:01:32.7927329Z", + "checksum": "094b8a24f68546bf3d88658d7bb01dc7621ae1087f5aa2b0f865e08008e2fdde", + "phase": "Meeting", + "players": [ + { + "clientUuid": "481bcb45", + "displayName": "Hr\u00E1\u010D402", + "position": { + "lat": 50.77312730016415, + "lon": 15.072042156480837 + }, + "role": "Crew", + "state": "Dead", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:56:20.9156815Z", + "lastPositionUpdate": "2026-01-27T15:58:53.9908881Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 7125, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7738727, + "lon": 15.0724211 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Progress", + "durationMs": 5835, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7732806, + "lon": 15.0725075 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7731719, + "lon": 15.0719627 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "154a8e55", + "displayName": "Hr\u00E1\u010D949", + "position": { + "lat": 50.773134818907785, + "lon": 15.07198899309649 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:56:32.367088Z", + "lastPositionUpdate": "2026-01-27T16:00:53.790974Z", + "lastKillTime": "2026-01-27T16:00:02.4620235Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "b8c1c6dc", + "displayName": "Hr\u00E1\u010D590", + "position": { + "lat": 50.77358763220549, + "lon": 15.072158011186659 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:56:44.2222077Z", + "lastPositionUpdate": "2026-01-27T16:00:53.7269354Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": "2026-01-27T16:00:53.7404921Z", + "emergencyMeetingsUsed": 1, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 5791, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.773851, + "lon": 15.073075 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7731933, + "lon": 15.0726196 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.7737495, + "lon": 15.0715106 + }, + "type": "Progress", + "durationMs": 7350, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "104d74ed", + "displayName": "Hr\u00E1\u010D381", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:56:56.1455962Z", + "lastPositionUpdate": "2026-01-27T16:00:53.8024205Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 6764, + "steps": 1 + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7734516, + "lon": 15.0723155 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7741669, + "lon": 15.0718846 + }, + "type": "Progress", + "durationMs": 7958, + "steps": 1 + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.773646, + "lon": 15.0719148 + }, + "type": "Progress", + "durationMs": 8269, + "steps": 1 + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Progress", + "durationMs": 7902, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 7125, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7738727, + "lon": 15.0724211 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Progress", + "durationMs": 5835, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7732806, + "lon": 15.0725075 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7731719, + "lon": 15.0719627 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 5791, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.773851, + "lon": 15.073075 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7731933, + "lon": 15.0726196 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.7737495, + "lon": 15.0715106 + }, + "type": "Progress", + "durationMs": 7350, + "steps": 1 + }, + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 6764, + "steps": 1 + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7734516, + "lon": 15.0723155 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7741669, + "lon": 15.0718846 + }, + "type": "Progress", + "durationMs": 7958, + "steps": 1 + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.773646, + "lon": 15.0719148 + }, + "type": "Progress", + "durationMs": 8269, + "steps": 1 + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Progress", + "durationMs": 7902, + "steps": 1 + } + ], + "currentMeeting": { + "meetingId": "8897a8fb", + "type": "Emergency", + "reportedBodyId": null, + "callerId": "b8c1c6dc", + "meetingLocation": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "startTime": "2026-01-27T16:00:53.7788042Z", + "arrivalDeadline": "2026-01-27T16:01:16.7788042Z", + "discussionEndTime": "2026-01-27T16:01:28.7788042Z", + "votingEndTime": "2026-01-27T16:01:58.7788042Z", + "arrivedPlayers": [ + "104d74ed" + ], + "votes": { + "104d74ed": "154a8e55" + }, + "lastVoteChangeTime": "2026-01-27T16:01:32.7852692Z" + }, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 100, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/bin/Debug/net9.0/data/stats.db b/bin/Debug/net9.0/data/stats.db new file mode 100644 index 0000000..f6cca8f Binary files /dev/null and b/bin/Debug/net9.0/data/stats.db differ diff --git a/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a b/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a new file mode 100644 index 0000000..5a5a2a3 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a differ diff --git a/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..a6a80a4 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..a1030eb Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..56fc44d Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..15883be Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..28eaa8b Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..5a6a8f7 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..c576551 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..980a4a6 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100644 index 0000000..3f7dca6 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..a4bb64d Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..705798a Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so b/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..c32107b Binary files /dev/null and b/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..f32c878 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..33a1c68 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib b/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..05932eb Binary files /dev/null and b/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..0cd9a57 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll b/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..8294262 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll b/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..4ac1f79 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll b/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8c1c1d9 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll b/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..0e05ac0 Binary files /dev/null and b/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/bin/Release/net9.0/Microsoft.Data.Sqlite.dll b/bin/Release/net9.0/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..55567a8 Binary files /dev/null and b/bin/Release/net9.0/Microsoft.Data.Sqlite.dll differ diff --git a/bin/Release/net9.0/SQLitePCLRaw.batteries_v2.dll b/bin/Release/net9.0/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..53e53eb Binary files /dev/null and b/bin/Release/net9.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/bin/Release/net9.0/SQLitePCLRaw.core.dll b/bin/Release/net9.0/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..b563677 Binary files /dev/null and b/bin/Release/net9.0/SQLitePCLRaw.core.dll differ diff --git a/bin/Release/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll b/bin/Release/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100644 index 0000000..a06a782 Binary files /dev/null and b/bin/Release/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/bin/Release/net9.0/Server.deps.json b/bin/Release/net9.0/Server.deps.json new file mode 100644 index 0000000..8ced10f --- /dev/null +++ b/bin/Release/net9.0/Server.deps.json @@ -0,0 +1,226 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Server/1.0.0": { + "dependencies": { + "Microsoft.Data.Sqlite": "9.0.0" + }, + "runtime": { + "Server.dll": {} + } + }, + "Microsoft.Data.Sqlite/9.0.0": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "9.0.0", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10", + "SQLitePCLRaw.core": "2.1.10" + } + }, + "Microsoft.Data.Sqlite.Core/9.0.0": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.10", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.10" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "SQLitePCLRaw.core/2.1.10": { + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-s390x/native/libe_sqlite3.so": { + "rid": "linux-musl-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + } + } + }, + "libraries": { + "Server/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Data.Sqlite/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lw6wthgXGx3r/U775k1UkUAWIn0kAT0wj4ZRq0WlhPx4WAOiBsIjgDKgWkXcNTGT0KfHiClkM+tyPVFDvxeObw==", + "path": "microsoft.data.sqlite/9.0.0", + "hashPath": "microsoft.data.sqlite.9.0.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cFfZjFL+tqzGYw9lB31EkV1IWF5xRQNk2k+MQd+Cf86Gl6zTeAoiZIFw5sRB1Z8OxpEC7nu+nTDsLSjieBAPTw==", + "path": "microsoft.data.sqlite.core/9.0.0", + "hashPath": "microsoft.data.sqlite.core.9.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==", + "path": "sqlitepclraw.core/2.1.10", + "hashPath": "sqlitepclraw.core.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Release/net9.0/Server.dll b/bin/Release/net9.0/Server.dll new file mode 100644 index 0000000..d6fa3cb Binary files /dev/null and b/bin/Release/net9.0/Server.dll differ diff --git a/bin/Release/net9.0/Server.exe b/bin/Release/net9.0/Server.exe new file mode 100644 index 0000000..129cb1d Binary files /dev/null and b/bin/Release/net9.0/Server.exe differ diff --git a/bin/Release/net9.0/Server.pdb b/bin/Release/net9.0/Server.pdb new file mode 100644 index 0000000..91cb5d0 Binary files /dev/null and b/bin/Release/net9.0/Server.pdb differ diff --git a/bin/Release/net9.0/Server.runtimeconfig.json b/bin/Release/net9.0/Server.runtimeconfig.json new file mode 100644 index 0000000..529c16a --- /dev/null +++ b/bin/Release/net9.0/Server.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/bin/Release/net9.0/Server.staticwebassets.endpoints.json b/bin/Release/net9.0/Server.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/bin/Release/net9.0/Server.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/bin/Release/net9.0/appsettings.json b/bin/Release/net9.0/appsettings.json new file mode 100644 index 0000000..cdadea5 --- /dev/null +++ b/bin/Release/net9.0/appsettings.json @@ -0,0 +1,44 @@ +{ + "tcpPort": 7777, + "httpPort": 8080, + "maxPacketSizeBytes": 1048576, + "tickMs": 200, + "positionBroadcastRateMs": 1000, + "maxSpeedMps": 12.0, + "movementValidationWindowSec": 5.0, + "teleportThresholdMeters": 50.0, + "cheatScoreWarnThreshold": 10, + "cheatScoreRestrictThreshold": 25, + "cheatScoreKickThreshold": 50, + "killDistanceM": 10.0, + "killCooldownMs": 5000, + "meetingArrivalRadiusM": 20.0, + "arrivalBaseMs": 3000, + "arrivalSafetyMarginMs": 500, + "allowedLateMs": 2000, + "discussionPhaseMs": 3000, + "votingPhaseMs": 10000, + "emergencyMeetingCooldownMs": 5000, + "maxEmergencyMeetingsPerPlayer": 3, + "reportDistanceM": 10.0, + "taskStartDistanceM": 5.0, + "taskLeaveDebounceMs": 2000, + "taskProgressKeepaliveMs": 5000, + "snapshotEvents": 200, + "snapshotIntervalMs": 300000, + "walMaxSizeMb": 10, + "dataPath": "data", + "hostTimeoutMs": 15000, + "reconnectWindowMs": 60000, + "idleLobbyTtlMs": 3600000, + "joinCodeTtlMs": 86400000, + "maxPlayersPerLobby": 15, + "joinRateLimitPerMinute": 10, + "sessionKeySizeBytes": 32, + "rsaKeySizeBits": 2048, + "statsApiRateLimit": 100, + "statsApiKey": null, + "defaultImpostorCount": 1, + "defaultTaskCount": 5, + "defaultTiePolicy": "NoEject" +} diff --git a/bin/Release/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a b/bin/Release/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a new file mode 100644 index 0000000..5a5a2a3 Binary files /dev/null and b/bin/Release/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a differ diff --git a/bin/Release/net9.0/runtimes/linux-arm/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..a6a80a4 Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..a1030eb Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-armel/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..56fc44d Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..15883be Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..28eaa8b Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..5a6a8f7 Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..c576551 Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..980a4a6 Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100644 index 0000000..3f7dca6 Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..a4bb64d Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-x64/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..705798a Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/linux-x86/native/libe_sqlite3.so b/bin/Release/net9.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..c32107b Binary files /dev/null and b/bin/Release/net9.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/bin/Release/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/bin/Release/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..f32c878 Binary files /dev/null and b/bin/Release/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/bin/Release/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/bin/Release/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..33a1c68 Binary files /dev/null and b/bin/Release/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/bin/Release/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib b/bin/Release/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..05932eb Binary files /dev/null and b/bin/Release/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/bin/Release/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/bin/Release/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..0cd9a57 Binary files /dev/null and b/bin/Release/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/bin/Release/net9.0/runtimes/win-arm/native/e_sqlite3.dll b/bin/Release/net9.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..8294262 Binary files /dev/null and b/bin/Release/net9.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/bin/Release/net9.0/runtimes/win-arm64/native/e_sqlite3.dll b/bin/Release/net9.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..4ac1f79 Binary files /dev/null and b/bin/Release/net9.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/bin/Release/net9.0/runtimes/win-x64/native/e_sqlite3.dll b/bin/Release/net9.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..8c1c1d9 Binary files /dev/null and b/bin/Release/net9.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/bin/Release/net9.0/runtimes/win-x86/native/e_sqlite3.dll b/bin/Release/net9.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..0e05ac0 Binary files /dev/null and b/bin/Release/net9.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/data/archive/0ef46de0570a4be6_20260127134127/snapshot_12.json b/data/archive/0ef46de0570a4be6_20260127134127/snapshot_12.json new file mode 100644 index 0000000..4dcde19 --- /dev/null +++ b/data/archive/0ef46de0570a4be6_20260127134127/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "0ef46de0570a4be6", + "lastEventId": 12, + "timestamp": "2026-01-27T13:41:27.5170822Z", + "checksum": "eaeb904e566968a23b9fad8defde721f0a958b5173f671f96b67463cd102e5b8", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0868023, + "lon": 14.4203088 + }, + "type": "Progress", + "durationMs": 7851, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.0855253, + "lon": 14.4216649 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.087640820000004, + "lon": 14.42321536 + }, + "type": "Progress", + "durationMs": 9934, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0862119, + "lon": 14.4239779 + }, + "type": "Progress", + "durationMs": 7287, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.08971575714286, + "lon": 14.420300657142858 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/0ef46de0570a4be6_20260127134127/wal_20260127123809.ndjson b/data/archive/0ef46de0570a4be6_20260127134127/wal_20260127123809.ndjson new file mode 100644 index 0000000..c4c3465 --- /dev/null +++ b/data/archive/0ef46de0570a4be6_20260127134127/wal_20260127123809.ndjson @@ -0,0 +1,12 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:38:09.7829762Z","actor":"26da2452","eventType":"PlayerJoined","payload":{"clientUuid":"26da2452","displayName":"BoundOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:38:11.9233994Z","actor":"a15d68d5","eventType":"PlayerJoined","payload":{"clientUuid":"a15d68d5","displayName":"BoundPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:38:12.0254284Z","actor":"26da2452","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:38:18.8785952Z","actor":"26da2452","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:38:18.9219083Z","actor":"26da2452","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"26da2452","displayName":"BoundOwner","playersReady":1,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:38:18.9272893Z","actor":"a15d68d5","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a15d68d5","displayName":"BoundPlayer","playersReady":2,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:38:18.9708447Z","actor":"26da2452","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:38:18.9758369Z","actor":"26da2452","eventType":"RoleAssigned","payload":{"clientUuid":"26da2452","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0868023,"lon":14.4203088},"type":"Progress","durationMs":7851,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0855253,"lon":14.4216649},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.087640820000004,"lon":14.42321536},"type":"Progress","durationMs":9934,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0862119,"lon":14.4239779},"type":"Progress","durationMs":7287,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.08971575714286,"lon":14.420300657142858},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:38:18.9789217Z","actor":"a15d68d5","eventType":"RoleAssigned","payload":{"clientUuid":"a15d68d5","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:38:30.5152299Z","actor":"26da2452","eventType":"PlayerLeft","payload":{"clientUuid":"26da2452","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:38:30.5297907Z","actor":"a15d68d5","eventType":"HostChanged","payload":{"newHostId":"a15d68d5","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:38:30.5349644Z","actor":"a15d68d5","eventType":"PlayerLeft","payload":{"clientUuid":"a15d68d5","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/27685b18526d4ce5_20260127133627/snapshot_7.json b/data/archive/27685b18526d4ce5_20260127133627/snapshot_7.json new file mode 100644 index 0000000..e9e7c53 --- /dev/null +++ b/data/archive/27685b18526d4ce5_20260127133627/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "27685b18526d4ce5", + "lastEventId": 7, + "timestamp": "2026-01-27T13:36:27.5323111Z", + "checksum": "cc270b3bd115ec20db477f4b58e987b0b4a0bede6b35d5fb8786f1a3ad5a89bf", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/27685b18526d4ce5_20260127133627/wal_20260127123331.ndjson b/data/archive/27685b18526d4ce5_20260127133627/wal_20260127123331.ndjson new file mode 100644 index 0000000..038d86a --- /dev/null +++ b/data/archive/27685b18526d4ce5_20260127133627/wal_20260127123331.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:33:31.517233Z","actor":"665a20fc","eventType":"PlayerJoined","payload":{"clientUuid":"665a20fc","displayName":"ConsOwner2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:33:33.6977573Z","actor":"83430124","eventType":"PlayerJoined","payload":{"clientUuid":"83430124","displayName":"ConsPlayer2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:33:33.7750333Z","actor":"665a20fc","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:33:34.3284139Z","actor":"665a20fc","eventType":"MapDataError","payload":{"error":"Nepoda\u0159ilo se na\u010D\u00EDst mapov\u00E1 data"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:33:59.2109668Z","actor":"665a20fc","eventType":"PlayerLeft","payload":{"clientUuid":"665a20fc","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:33:59.2189743Z","actor":"83430124","eventType":"HostChanged","payload":{"newHostId":"83430124","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:33:59.2357961Z","actor":"83430124","eventType":"PlayerLeft","payload":{"clientUuid":"83430124","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/34d8737b80434782_20260127133627/snapshot_12.json b/data/archive/34d8737b80434782_20260127133627/snapshot_12.json new file mode 100644 index 0000000..5d99617 --- /dev/null +++ b/data/archive/34d8737b80434782_20260127133627/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "34d8737b80434782", + "lastEventId": 12, + "timestamp": "2026-01-27T13:36:27.5253055Z", + "checksum": "ec7a8cc5ca949945cac59b72af28e810b5db1ed59683d8840aeb5293c21154e6", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0894098, + "lon": 14.4226833 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.08879728000001, + "lon": 14.41972866 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0879498, + "lon": 14.4233898 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0865062, + "lon": 14.4206464 + }, + "type": "Progress", + "durationMs": 5593, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.0883246, + "lon": 14.4238715 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/34d8737b80434782_20260127133627/wal_20260127123308.ndjson b/data/archive/34d8737b80434782_20260127133627/wal_20260127123308.ndjson new file mode 100644 index 0000000..92632a0 --- /dev/null +++ b/data/archive/34d8737b80434782_20260127133627/wal_20260127123308.ndjson @@ -0,0 +1,12 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:33:08.3529498Z","actor":"ed9cb96b","eventType":"PlayerJoined","payload":{"clientUuid":"ed9cb96b","displayName":"ConsOwner1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:33:10.516588Z","actor":"96a9df99","eventType":"PlayerJoined","payload":{"clientUuid":"96a9df99","displayName":"ConsPlayer1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:33:10.5931701Z","actor":"ed9cb96b","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:33:17.4899223Z","actor":"ed9cb96b","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:33:17.5202545Z","actor":"ed9cb96b","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ed9cb96b","displayName":"ConsOwner1","playersReady":1,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:33:17.523197Z","actor":"96a9df99","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"96a9df99","displayName":"ConsPlayer1","playersReady":2,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:33:17.5630757Z","actor":"ed9cb96b","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:33:17.566118Z","actor":"ed9cb96b","eventType":"RoleAssigned","payload":{"clientUuid":"ed9cb96b","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:33:17.5707714Z","actor":"96a9df99","eventType":"RoleAssigned","payload":{"clientUuid":"96a9df99","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0894098,"lon":14.4226833},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.08879728000001,"lon":14.41972866},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0879498,"lon":14.4233898},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0865062,"lon":14.4206464},"type":"Progress","durationMs":5593,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.0883246,"lon":14.4238715},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:33:59.2109607Z","actor":"ed9cb96b","eventType":"PlayerLeft","payload":{"clientUuid":"ed9cb96b","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:33:59.2205703Z","actor":"96a9df99","eventType":"HostChanged","payload":{"newHostId":"96a9df99","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:33:59.2374461Z","actor":"96a9df99","eventType":"PlayerLeft","payload":{"clientUuid":"96a9df99","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/5d096533c3094eaa_20260127133127/snapshot_51.json b/data/archive/5d096533c3094eaa_20260127133127/snapshot_51.json new file mode 100644 index 0000000..42b2544 --- /dev/null +++ b/data/archive/5d096533c3094eaa_20260127133127/snapshot_51.json @@ -0,0 +1,52 @@ +{ + "lobbyId": "5d096533c3094eaa", + "lastEventId": 51, + "timestamp": "2026-01-27T13:31:27.5287743Z", + "checksum": "c3eb831a207d599f3fbf61d89359c0c36b3d787fdb339fb36766c4cbf1f52462", + "phase": "Ended", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 49.9999798, + "lon": 14.0026563 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 49.9996681, + "lon": 14.0003986 + }, + "type": "Progress", + "durationMs": 8093, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0031177, + "lon": 13.998514216666669 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50, + "lon": 14 + }, + "playAreaRadius": 500, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/5d096533c3094eaa_20260127133127/wal_20260127122908.ndjson b/data/archive/5d096533c3094eaa_20260127133127/wal_20260127122908.ndjson new file mode 100644 index 0000000..d2559ea --- /dev/null +++ b/data/archive/5d096533c3094eaa_20260127133127/wal_20260127122908.ndjson @@ -0,0 +1,51 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:29:08.6126583Z","actor":"84aec571","eventType":"PlayerJoined","payload":{"clientUuid":"84aec571","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:29:08.6563494Z","actor":"cd728695","eventType":"PlayerJoined","payload":{"clientUuid":"cd728695","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:29:08.9811202Z","actor":"0a20923e","eventType":"PlayerJoined","payload":{"clientUuid":"0a20923e","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:29:09.271103Z","actor":"6723abc2","eventType":"PlayerJoined","payload":{"clientUuid":"6723abc2","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:29:09.5858584Z","actor":"5b1bf704","eventType":"PlayerJoined","payload":{"clientUuid":"5b1bf704","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:29:09.8959744Z","actor":"bf292474","eventType":"PlayerJoined","payload":{"clientUuid":"bf292474","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:29:10.204848Z","actor":"84aec571","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:29:13.689906Z","actor":"84aec571","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50,"lon":14},"radiusMeters":500,"buildings":[[49.9995982,13.9988557,49.9996139,13.9989847,49.9995247,13.999015,49.999559,13.9992526,49.9994732,13.9992804,49.9994004,13.9989207,49.9995982,13.9988557],[50.0030291,14.0032499,50.0029731,14.0032212,50.0029823,14.0031782,50.0030377,14.0032066,50.0030291,14.0032499],[50.002806,14.0021477,50.002748,14.0021207,50.002764,14.0020337,50.002822,14.0020597,50.002806,14.0021477],[50.0002085,14.0062707,50.0001621,14.0062201,50.0001805,14.0061796,50.0001608,14.0061581,50.0002677,14.0059227,50.0003585,14.0060063,50.0002485,14.0062487,50.0002284,14.0062268,50.0002085,14.0062707],[49.999899,14.005295,49.999799,14.005295,49.999799,14.0052505,49.999872,14.0052485,49.999898,14.005245,49.999899,14.005281,49.999899,14.005295],[50.0002725,14.0049187,50.0003091,14.0047966,50.0004265,14.0048825,50.0003904,14.0050026,50.0002725,14.0049187],[50.0025376,14.0038882,50.0025128,14.0040283,50.0024703,14.0040102,50.0024724,14.0039982,50.0024449,14.0039864,50.0024675,14.0038583,50.0025376,14.0038882],[49.999825,14.004864,49.99981,14.004863,49.999766,14.004863,49.999784,14.004678,49.999839,14.004689,49.999825,14.004864],[50.0036755,14.0025612,50.0037485,14.0026096,50.0037346,14.0026601,50.0037497,14.0026702,50.0037394,14.0027077,50.0037243,14.0026977,50.0037166,14.0027253,50.0036438,14.0026771,50.0036755,14.0025612],[49.9988227,14.0036285,49.9988392,14.003592,49.9988846,14.0036412,49.9988967,14.0036143,49.9989384,14.0036595,49.9989263,14.0036865,49.9989579,14.0037206,49.9989262,14.003791,49.9989496,14.0038163,49.998924,14.003873,49.9988748,14.0038196,49.9988637,14.003844,49.9988322,14.0038097,49.9988491,14.0037726,49.998808,14.0037279,49.9988159,14.0037105,49.9988062,14.0036997,49.9988335,14.0036425,49.9988227,14.0036285],[49.9996402,14.0024034,49.9997675,14.002696,49.9996703,14.0027962,49.9995799,14.0025854,49.9995351,14.0026321,49.9994409,14.0024135,49.9995933,14.0022555,49.9996516,14.0023915,49.9996402,14.0024034],[49.9998422,14.0063047,49.9997811,14.0062829,49.9998174,14.0060935,49.9998223,14.0060926,49.9998763,14.0061207,49.9998422,14.0063047],[50.0016226,14.0052186,50.0016915,14.0052447,50.0016703,14.0053854,50.0016425,14.0053754,50.0016477,14.0053406,50.0016065,14.0053256,50.0016226,14.0052186],[50.0022752,14.0026312,50.002178,14.002604,50.002203,14.002429,50.0022976,14.0024533,50.0022752,14.0026312],[49.999809,14.0028468,49.9999025,14.0027879,49.9999897,14.0031336,49.9998853,14.003147,49.999813,14.002865,49.999809,14.0028468],[50.0030396,14.0023877,50.0032625,14.0023218,50.0032735,14.0024267,50.0030525,14.0024922,50.0030396,14.0023877],[49.9981375,14.0057495,49.9980966,14.0057372,49.9981073,14.0056513,49.9981486,14.0056645,49.9981375,14.0057495],[50.0028193,14.002589,50.0028035,14.0025638,50.0027936,14.0025779,50.0027726,14.0025426,50.00281,14.0024951,50.0028457,14.0025492,50.0028193,14.002589],[50.003142,14.0042086,50.0030918,14.0041832,50.0030999,14.0041447,50.0030873,14.0041203,50.0030943,14.0040875,50.0031123,14.0040864,50.0031186,14.0040563,50.0031876,14.0040913,50.0031666,14.0041909,50.0031477,14.0041814,50.003142,14.0042086],[49.999281,14.0016022,49.9991701,14.0013284,49.9992571,14.0012409,49.9993678,14.0015148,49.999281,14.0016022],[50.0017765,14.004599,50.001802,14.0044812,50.0018347,14.0044983,50.0018146,14.0045687,50.0018019,14.0046127,50.0017765,14.004599],[50.0026585,14.0033609,50.0026256,14.0035217,50.0025431,14.003481,50.0025559,14.003418,50.0025437,14.003412,50.0025638,14.0033142,50.0026585,14.0033609],[49.9998956,14.0042403,49.9998972,14.0043541,49.9999263,14.0043558,49.9999258,14.0044366,49.999827,14.0044362,49.9998352,14.004252,49.9998956,14.0042403],[50.0026136,14.0051481,50.0025786,14.0052733,50.0025303,14.0052408,50.0025355,14.005222,50.002506,14.0052019,50.0025359,14.0050961,50.0026136,14.0051481],[50.000048,14.004866,49.999966,14.004854,49.999978,14.004686,50.00006,14.004698,50.000048,14.004866],[50.0024131,14.004281,50.0024434,14.0041361,50.0025255,14.0041767,50.0024965,14.0043225,50.0024131,14.004281],[50.0029989,14.0046288,50.0030108,14.0046356,50.0030018,14.0046737,50.0029899,14.0046669,50.0029704,14.0047497,50.0028937,14.0047063,50.0029276,14.0045618,50.0030044,14.0046053,50.0029989,14.0046288],[50.0021764,14.0053793,50.0022256,14.0054025,50.0022224,14.0054187,50.002262,14.0054374,50.0022466,14.0055161,50.002207,14.0054974,50.0022039,14.0055136,50.0021547,14.0054904,50.0021764,14.0053793],[50.0021019,14.0057844,50.0021246,14.0056611,50.0021763,14.0056837,50.0021734,14.0056999,50.0022107,14.0057161,50.0021971,14.0057912,50.0021605,14.0057755,50.0021548,14.0058072,50.0021019,14.0057844],[49.9998475,14.0059393,49.99985,14.0058676,49.9999031,14.0058703,49.9999218,14.0059026,49.999921,14.0059438,49.9998475,14.0059393],[50.0004046,14.0030002,50.000309,14.003016,50.000299,14.002893,50.000348,14.002883,50.0003536,14.0029477,50.000399,14.00294,50.0004046,14.0030002],[50.0038795,14.0032397,50.0038253,14.0032326,50.0038292,14.0031617,50.0038833,14.0031688,50.0038795,14.0032397],[50.0025182,14.0047938,50.0025905,14.0048459,50.0025582,14.0049531,50.002486,14.004901,50.0025182,14.0047938],[50.0023577,14.0058221,50.002424,14.0058799,50.0023977,14.0059524,50.0023883,14.0059442,50.0023705,14.0059936,50.0023228,14.005952,50.0023407,14.0059027,50.0023314,14.0058946,50.0023577,14.0058221],[50.0038795,14.0032397,50.0038756,14.0033106,50.0038214,14.0033035,50.0038253,14.0032326,50.0038795,14.0032397],[50.0033082,14.0042516,50.0033379,14.0041191,50.003341,14.0041207,50.0033454,14.004101,50.003372,14.0041155,50.0033846,14.0040586,50.0034775,14.0041088,50.0034651,14.004164,50.0034064,14.004132,50.0034016,14.0041529,50.0034153,14.0041604,50.0033852,14.0042932,50.0033082,14.0042516],[49.9998422,14.0063047,49.9998231,14.0064172,49.9997598,14.0063935,49.9997811,14.0062829,49.9998422,14.0063047],[50.0005518,14.0027695,50.0005668,14.0029724,50.0004046,14.0030002,50.0004012,14.0029547,50.0004462,14.0029477,50.000445,14.0029318,50.0004349,14.00279,50.0005518,14.0027695],[49.99993,14.0053745,49.999899,14.005371,49.999899,14.005295,49.999899,14.005281,49.999933,14.005281,49.99993,14.0053745],[50.00017,14.004985,50.000135,14.004981,50.000135,14.004886,50.000166,14.004881,50.00017,14.004985],[50.0021187,14.0042587,50.0021147,14.0042775,50.0020878,14.0042639,50.0020917,14.0042453,50.0020662,14.0042323,50.0020968,14.0040859,50.0021199,14.0040975,50.0021261,14.0040675,50.0021612,14.0040851,50.0021549,14.0041151,50.00217,14.0041226,50.0021668,14.0041378,50.0021793,14.0041441,50.0021517,14.0042755,50.0021187,14.0042587],[50.0032342,14.0032132,50.0033435,14.0032743,50.0033011,14.0034554,50.003192,14.0033951,50.0032342,14.0032132],[50.0021489,14.0030901,50.0021626,14.0029766,50.0022268,14.0029943,50.0022408,14.0030268,50.0022151,14.0032464,50.0021334,14.0032233,50.0021444,14.0031306,50.0021369,14.0031283,50.0021416,14.0030882,50.0021489,14.0030901],[49.9998746,14.0053593,49.9998743,14.0058198,49.9997439,14.0058183,49.999744,14.0056595,49.9997688,14.0056596,49.9997689,14.0056164,49.9998103,14.0056165,49.9998104,14.0053592,49.9998746,14.0053593],[50.0022087,14.0026653,50.002346,14.0027086,50.0023343,14.0028031,50.0021943,14.002759,50.0022087,14.0026653],[50.0031321,14.0044273,50.0031208,14.0044753,50.0030609,14.0044417,50.0030479,14.0044973,50.0029634,14.0044499,50.0029876,14.0043461,50.0031321,14.0044273],[50.0023667,14.0055598,50.0024085,14.0055984,50.0023971,14.0056282,50.0024175,14.0056469,50.0023926,14.0057116,50.0023124,14.0056374,50.0023371,14.0055733,50.0023552,14.00559,50.0023667,14.0055598],[50.0029304,14.0034397,50.0029394,14.0033949,50.0029945,14.0034217,50.0029854,14.0034665,50.0029304,14.0034397],[50.0021363,14.0059144,50.0020819,14.0058922,50.0020927,14.0058297,50.002147,14.0058547,50.0021363,14.0059144],[50.0023559,14.0019577,50.002403,14.0019807,50.0023953,14.0020185,50.0023482,14.0019953,50.0023559,14.0019577],[50.0002165,14.002022,50.000237,14.0019317,50.0002783,14.0019529,50.0002673,14.0019991,50.0002565,14.0020441,50.0002165,14.002022],[50.0031422,14.0036097,50.003251,14.0036714,50.0032086,14.0038522,50.0030998,14.0037913,50.0031422,14.0036097],[50.0029523,14.0020308,50.0029805,14.0015162,50.003049,14.0015254,50.0030209,14.0020398,50.0029523,14.0020308],[50.0020056,14.0036438,50.0020158,14.0035866,50.0020871,14.0036205,50.0020795,14.0036551,50.0020716,14.0036512,50.0020627,14.0036947,50.0020544,14.0036909,50.0020485,14.0037213,50.002001,14.0036985,50.0020113,14.0036465,50.0020056,14.0036438],[50.0002759,14.0050389,50.0003652,14.0050889,50.0003508,14.0051509,50.0003214,14.0051344,50.0003173,14.0051538,50.0002577,14.0051204,50.0002759,14.0050389],[50.0033549,14.0022199,50.0031945,14.0022171,50.0031956,14.0020711,50.0032814,14.0020726,50.0032811,14.0021067,50.0033571,14.0021081,50.0033587,14.0018791,50.0035439,14.0018825,50.0035423,14.0021023,50.0034042,14.0020999,50.0034036,14.0021885,50.0033551,14.0021876,50.0033549,14.0022199],[50.0030377,14.0032066,50.0029823,14.0031782,50.0029915,14.0031351,50.0030463,14.0031633,50.0030377,14.0032066],[49.9999135,14.0048762,49.9999185,14.0048821,49.9999162,14.0049173,49.9998525,14.0049198,49.9998512,14.0048383,49.9998966,14.0048361,49.9999135,14.0048762],[50.003012,14.0033352,50.0030033,14.0033784,50.0029482,14.0033516,50.0029569,14.0033084,50.003012,14.0033352],[49.9984387,14.006532,49.9984509,14.006454,49.9984873,14.0064666,49.9984754,14.0065473,49.9984387,14.006532],[49.9999896,14.0019357,50.0000375,14.0020321,50.0000627,14.002002,50.0000952,14.0020674,50.0000676,14.002101,50.0000829,14.0021314,49.9999063,14.0023472,49.999814,14.0021634,49.9999896,14.0019357],[50.0027611,14.0053662,50.0027568,14.0053821,50.0027263,14.0053622,50.0027306,14.0053463,50.0027116,14.0053339,50.0027141,14.0053245,50.0027018,14.0053165,50.0027171,14.0052601,50.0027294,14.0052681,50.0027418,14.0052221,50.0027768,14.0052449,50.0027745,14.0052534,50.00282,14.0052832,50.0028157,14.005299,50.0027921,14.0053863,50.0027611,14.0053662],[50.0035249,14.0022892,50.0035316,14.0023745,50.003323,14.0024141,50.0033141,14.0023292,50.0035249,14.0022892],[49.9999976,14.0052821,49.9999968,14.0053054,50.0000809,14.0053129,50.0000781,14.0053872,49.9999701,14.005378,49.9999737,14.0052799,49.9999976,14.0052821],[50.0024904,14.003704,50.0024965,14.0037068,50.0025101,14.0036367,50.0025896,14.0036738,50.0025592,14.0038299,50.0025103,14.0038071,50.0025141,14.0037878,50.0024775,14.0037707,50.0024904,14.003704],[50.0030007,14.0030922,50.0030549,14.00312,50.0030463,14.0031633,50.0029915,14.0031351,50.0030007,14.0030922],[49.9997787,14.001727,49.9998311,14.0018469,49.9997727,14.0018964,49.999728,14.0017795,49.9996577,14.0018415,49.9995709,14.001611,49.999709,14.001484,49.9997595,14.0016206,49.9997238,14.0016521,49.999732,14.0016501,49.9997394,14.0016572,49.9997706,14.0017352,49.9997787,14.001727],[50.0023319,14.0046916,50.0023584,14.0045522,50.0024411,14.0045901,50.0024285,14.0046563,50.0024547,14.0046682,50.0024408,14.0047415,50.0024127,14.0047286,50.0024085,14.0047509,50.0023575,14.0047276,50.0023617,14.0047053,50.0023319,14.0046916],[50.0000742,14.0068532,50.0000849,14.006777,50.0002268,14.0068246,50.0002156,14.0069056,50.0001899,14.0069188,50.0001825,14.0068834,50.0001352,14.0068671,50.0001392,14.0068372,50.0001206,14.0068312,50.0001163,14.0068603,50.0001139,14.0068594,50.0001128,14.006867,50.0000742,14.0068532],[49.999796,14.003733,49.999744,14.003541,49.99978,14.003516,49.999791,14.003549,49.99994,14.003431,49.9999907,14.0035527,49.999999,14.003593,49.999796,14.003733],[49.9998348,14.0070019,49.9998548,14.0068631,50.0000508,14.0069388,50.0000347,14.0070653,49.9998348,14.0070019],[50.0029657,14.0032651,50.0029731,14.0032212,50.0030291,14.0032499,50.0030208,14.0032918,50.0029657,14.0032651],[50.0003434,14.0028059,50.0004349,14.00279,50.000445,14.0029318,50.000399,14.00294,50.0003536,14.0029477,50.000348,14.002883,50.0003434,14.0028059],[50.0038558,14.0025727,50.0038334,14.0026341,50.003772,14.0025936,50.0037896,14.0025291,50.0038558,14.0025727],[49.9983043,14.0046921,49.9982391,14.0046849,49.9982416,14.0046073,49.9983059,14.0046111,49.9983043,14.0046921],[50.0024204,14.0021684,50.0024103,14.0022574,50.0023962,14.0022535,50.0023878,14.0023266,50.0022932,14.0023007,50.0023016,14.0022278,50.0022831,14.0022227,50.0022933,14.0021337,50.0023142,14.0021394,50.0023179,14.0021072,50.0024025,14.0021302,50.0023988,14.0021625,50.0024204,14.0021684],[50.0018852,14.0058154,50.0019104,14.005825,50.0018963,14.005912,50.0018713,14.0059023,50.0018852,14.0058154],[49.9997165,14.0034574,49.9997228,14.0034791,49.9996893,14.0035031,49.9996829,14.0034814,49.9996324,14.0035174,49.9996035,14.0034269,49.999765,14.0032998,49.9997964,14.0034005,49.9997165,14.0034574],[50.0032948,14.0047884,50.0032745,14.0049024,50.0032666,14.0048991,50.0032596,14.0049381,50.0032097,14.0049167,50.0032167,14.0048776,50.0032067,14.0048734,50.0032271,14.0047592,50.0032948,14.0047884],[49.999872,14.0052485,49.999799,14.0052505,49.9998,14.005171,49.999873,14.00517,49.999872,14.0052485],[49.998496,14.0052224,49.9983907,14.0052185,49.9983938,14.0051093,49.9984974,14.0051148,49.998496,14.0052224],[50.002826,14.00541,50.002851,14.00532,50.0028157,14.005299,50.0027921,14.0053863,50.002826,14.00541],[50.0036617,14.002026,50.0037212,14.0020337,50.0037126,14.0021925,50.0036531,14.0021847,50.0036617,14.002026],[50.0038208,14.0034987,50.0038493,14.0033942,50.0039433,14.0034559,50.0039279,14.0035122,50.0039147,14.0035034,50.0039015,14.0035516,50.0038208,14.0034987],[50.0001254,14.004246,50.0001338,14.0043788,50.0000727,14.0043889,50.0000636,14.0042562,50.0001254,14.004246],[50.0029931,14.0027045,50.0030356,14.0029272,50.0028083,14.0030094,50.0028044,14.0029835,50.0027336,14.0030093,50.0027033,14.0031449,50.0026117,14.0031065,50.00267,14.0028559,50.0029931,14.0027045],[50.0021603,14.0059731,50.0021448,14.0060567,50.0021102,14.0060413,50.0021069,14.0060594,50.0020574,14.0060373,50.0020801,14.0059152,50.0021295,14.0059374,50.0021257,14.0059577,50.0021603,14.0059731],[49.9980185,14.0054444,49.9980145,14.00534,49.9980607,14.0053357,49.9980647,14.0054402,49.9980185,14.0054444],[49.9993364,14.0037512,49.9993797,14.0037769,49.9993734,14.0038021,49.9994105,14.0038243,49.999384,14.0039307,49.9992414,14.0038453,49.9992678,14.0037391,49.9993302,14.0037765,49.9993364,14.0037512],[49.9991521,14.0024795,49.9991829,14.0025391,49.9991343,14.0026021,49.9991031,14.0025451,49.9991521,14.0024795],[50.003733,14.00333,50.0036913,14.0033075,50.0036995,14.0032705,50.0036765,14.0032581,50.0036944,14.0031785,50.0037218,14.0031933,50.0037151,14.0032232,50.0037174,14.0032246,50.003716,14.0032305,50.0037511,14.0032492,50.003733,14.00333],[49.9994059,14.0022412,49.9993361,14.0023177,49.9993043,14.0022476,49.9993736,14.0021726,49.9993133,14.0020448,49.9992417,14.0021375,49.9991666,14.001991,49.9993373,14.0017644,49.9993929,14.0018713,49.9994456,14.0019819,49.9994876,14.0019318,49.9995666,14.002085,49.9994184,14.0022628,49.9994059,14.0022412],[50.000006,14.00499,49.999911,14.004978,49.9999162,14.0049173,49.9999185,14.0048821,50.000015,14.004891,50.000006,14.00499],[49.99988,14.003285,49.999791,14.003253,49.9998,14.003189,49.999889,14.003223,49.99988,14.003285],[49.9997173,14.0066379,49.9997418,14.0064334,49.9998164,14.0064572,49.999803,14.0066433,49.9997173,14.0066379],[50.0030033,14.0033784,50.0029945,14.0034217,50.0029394,14.0033949,50.0029482,14.0033516,50.0030033,14.0033784],[50.0001719,14.0033403,50.0001793,14.003404,50.0001659,14.0034077,50.0001806,14.0035345,50.0001239,14.0035503,50.0000982,14.0033654,50.0001719,14.0033403],[50.0028722,14.0049376,50.0029498,14.0050098,50.0028965,14.0051472,50.0028068,14.0050636,50.0028389,14.0049805,50.0028512,14.004992,50.0028722,14.0049376],[50.0035615,14.0037886,50.0035872,14.0038038,50.0035704,14.0038723,50.0035448,14.0038572,50.0035615,14.0037886],[50.0023691,14.0044474,50.0023805,14.0043819,50.002386,14.0043842,50.0023949,14.0043334,50.00245,14.0043568,50.0024207,14.0045239,50.0023655,14.0045005,50.0023745,14.0044497,50.0023691,14.0044474],[50.0000341,14.0049623,50.0001719,14.0049994,50.0001431,14.005262,50.0000058,14.0052277,50.0000341,14.0049623],[49.9988616,14.0013829,49.9989582,14.0015292,49.9989194,14.001591,49.9989374,14.0016183,49.9989661,14.0015727,49.9990807,14.0017463,49.9990025,14.0018705,49.9988897,14.001699,49.9988642,14.0017395,49.9989039,14.0017997,49.9988089,14.0019509,49.9987284,14.001829,49.9988162,14.0016896,49.9988291,14.001709,49.9988718,14.0016411,49.9987834,14.0015072,49.9988616,14.0013829],[49.9997105,14.0060476,49.9997176,14.0059104,49.9997724,14.0059144,49.9997737,14.0058603,49.99985,14.0058676,49.9998475,14.0059393,49.9998435,14.0060607,49.9998251,14.0060615,49.9997105,14.0060476],[49.9995106,14.0011178,49.9995464,14.0012241,49.999575,14.0012008,49.9995888,14.0012419,49.9996193,14.001217,49.9996378,14.0012717,49.9995702,14.0013356,49.9996273,14.0014927,49.9995536,14.0015621,49.99938,14.0010714,49.9994234,14.0010363,49.9994637,14.0011558,49.9995106,14.0011178],[50.0025741,14.0057461,50.002563,14.0057759,50.002581,14.0057919,50.0025568,14.0058572,50.0024818,14.0057901,50.002506,14.0057249,50.002527,14.0057437,50.0025382,14.0057139,50.0025741,14.0057461],[49.9990579,14.002951,49.9990108,14.0029159,49.9990348,14.0028388,49.9989193,14.0027527,49.998935,14.0027024,49.998894,14.0026718,49.9989025,14.0026471,49.9989808,14.0026507,49.9991191,14.0027539,49.9990579,14.002951],[50.0020179,14.0062313,50.0020418,14.0061123,50.0020939,14.0061375,50.0020915,14.0061492,50.0021249,14.0061654,50.0021133,14.0062234,50.0021118,14.0062227,50.0021084,14.0062476,50.0020751,14.0062315,50.00207,14.0062565,50.0020179,14.0062313],[49.9989047,14.0025267,49.9988968,14.0025405,49.9988837,14.0025257,49.9988923,14.0025094,49.9988583,14.002463,49.998937,14.0023056,49.999017,14.002418,49.9989327,14.0025648,49.9989047,14.0025267],[50.0000796,14.003715,50.0001045,14.0039789,49.9999785,14.0040069,49.9999556,14.0037535,50.0000796,14.003715],[49.9995622,14.0039036,49.9995981,14.00382,49.9997173,14.0039351,49.9996834,14.0040165,49.9995622,14.0039036],[50.0030208,14.0032918,50.003012,14.0033352,50.0029569,14.0033084,50.0029657,14.0032651,50.0030208,14.0032918],[50.0001661,14.0047996,50.0001082,14.0048097,50.0001042,14.0047576,50.0000997,14.0047576,50.0000861,14.0045795,50.0001492,14.0045693,50.0001643,14.0047458,50.0001661,14.0047996],[50.0000082,14.0025378,50.0000118,14.002625,49.9999768,14.0026307,49.9999711,14.0025428,50.0000082,14.0025378],[50.002095,14.0035466,50.0021133,14.0034877,50.0021377,14.0035059,50.0021194,14.0035649,50.002095,14.0035466],[50.0020444,14.004814,50.0020388,14.0048892,50.0019577,14.0048745,50.0019637,14.0047996,50.0020444,14.004814],[50.0022752,14.0026312,50.0022976,14.0024533,50.0024379,14.0024913,50.0024255,14.0026732,50.0022752,14.0026312],[50.0040237,14.0030839,50.0040413,14.0030187,50.0040931,14.0030521,50.0040755,14.0031175,50.0040237,14.0030839],[50.0000326,14.003336,50.0000645,14.0035314,49.9999907,14.0035527,49.9999646,14.0033575,50.0000326,14.003336],[50.0004206,14.0051081,50.0005078,14.0051664,50.0004939,14.0052163,50.0004049,14.0051652,50.0004206,14.0051081],[49.9980347,14.005094,49.9980308,14.0051558,49.9979973,14.005149,49.998002,14.005089,49.9980347,14.005094],[49.9984221,14.000129,49.9984505,14.0002445,49.9984419,14.0002497,49.9984577,14.0003135,49.9983708,14.000365,49.998355,14.0003002,49.9983838,14.0002828,49.9983556,14.0001685,49.9984221,14.000129],[49.9987509,13.9981882,49.9987038,13.9981859,49.9987064,13.9980509,49.9987536,13.9980531,49.9987509,13.9981882],[49.9987704,13.995411,49.9986234,13.9954568,49.9986074,13.9953329,49.9987929,13.9952753,49.9987988,13.9953214,49.9987603,13.9953332,49.9987704,13.995411],[50.0040856,13.9999091,50.0040585,14.0001404,50.0040172,14.0001286,50.0040174,14.0001273,50.0040019,14.0001225,50.0040188,13.9999953,50.0040013,13.9999897,50.0040149,13.9998866,50.0040856,13.9999091],[50.0041044,14.0011678,50.0041065,14.0012235,50.0040399,14.0012296,50.0040378,14.0011738,50.0041044,14.0011678],[50.0035051,13.9964781,50.0034033,13.9970095,50.0033043,13.9969637,50.0034055,13.9964322,50.0035051,13.9964781],[50.0041024,14.0011121,50.0041044,14.0011678,50.0040378,14.0011738,50.0040358,14.0011182,50.0041024,14.0011121],[49.9971776,13.9962706,49.9971297,13.9963449,49.9970421,13.9962121,49.9970868,13.9961384,49.9971776,13.9962706],[49.9980364,13.9966922,49.9980769,13.9966498,49.9981478,13.9968252,49.9981116,13.9968647,49.9980868,13.9968078,49.9980697,13.9968256,49.9980635,13.996811,49.9980485,13.9968266,49.9980163,13.9967525,49.9980312,13.996737,49.9980246,13.9967219,49.9980417,13.9967041,49.9980364,13.9966922],[49.9969325,13.9959332,49.996948,13.9959155,49.9970246,13.9960467,49.9969846,13.9961064,49.9968856,13.9959231,49.9969065,13.9958884,49.9969325,13.9959332],[49.9979819,14.000558,49.9979733,14.0005615,49.9979808,14.0006126,49.9979418,14.0006271,49.9979287,14.0005794,49.9979119,14.0003792,49.9979694,14.0003651,49.9979819,14.000558],[49.9980491,13.9979692,49.9980793,13.9979576,49.9980952,13.9980522,49.998086,13.9980558,49.9980932,13.9980985,49.9979989,13.9981359,49.9979699,13.9979439,49.9980124,13.9979274,49.9980369,13.9979321,49.9980394,13.9979478,49.9980455,13.9979456,49.9980491,13.9979692],[50.0023249,14.001661,50.0023235,14.0016222,50.0023686,14.001618,50.0023699,14.0016564,50.002386,14.0016558,50.0023919,14.0018097,50.0023874,14.0018102,50.0023884,14.0018404,50.0023381,14.0018462,50.0023367,14.0018148,50.0023151,14.0018168,50.0023147,14.0018056,50.0023048,14.0018068,50.0023004,14.001678,50.0023098,14.0016776,50.0023092,14.0016624,50.0023249,14.001661],[49.9979029,14.0013244,49.997896,14.0015071,49.9978311,14.0015011,49.9978354,14.001384,49.9978167,14.0013823,49.9978191,14.0013166,49.9979029,14.0013244],[49.9988207,13.9999422,49.9989001,13.9998837,49.9989492,14.0000561,49.998875,14.0001126,49.9988207,13.9999422],[49.9998238,13.9977942,49.9999325,13.9978198,49.9999168,13.9979798,49.9998272,13.9979587,49.9998335,13.9978942,49.9998145,13.9978897,49.9998238,13.9977942],[49.9992389,13.9981081,49.9993022,13.9984984,49.9991842,13.9985521,49.9991134,13.9981681,49.9992389,13.9981081],[49.9968993,13.9967579,49.9969557,13.99684,49.9969182,13.9969021,49.9968619,13.99682,49.9968993,13.9967579],[50.0031638,13.9971067,50.0031495,13.997158,50.0031,13.9971246,50.0031143,13.9970733,50.0031638,13.9971067],[49.9990744,14.0004157,49.999116,14.0005593,49.9990576,14.0006003,49.9990152,14.0004619,49.9990744,14.0004157],[50.0029197,13.9978451,50.0029397,13.9977673,50.0029815,13.9977933,50.0029612,13.9978718,50.0029197,13.9978451],[49.9982475,13.999441,49.9982856,13.9995627,49.9982125,13.9996191,49.9981734,13.9994969,49.9982475,13.999441],[49.9985706,13.9967499,49.9985426,13.9966622,49.9985827,13.9966313,49.9986159,13.9967355,49.9985897,13.9967557,49.9985845,13.9967392,49.9985706,13.9967499],[49.9976033,13.9982162,49.9975541,13.9982607,49.9975398,13.9982234,49.9975895,13.9981785,49.9976033,13.9982162],[49.9978875,13.9986978,49.9979339,13.998671,49.9979287,13.9986493,49.9979531,13.9986353,49.9979583,13.9986568,49.9980121,13.9986256,49.9980285,13.9986941,49.9980419,13.9986862,49.9980593,13.9987584,49.998047,13.9987655,49.9980613,13.9988245,49.997994,13.9988636,49.9979612,13.9987272,49.9979028,13.9987612,49.9978875,13.9986978],[49.9981748,14.0016393,49.9981386,14.0015463,49.998236,14.001456,49.9983106,14.0016459,49.9982412,14.0017161,49.9981986,14.0016165,49.9981748,14.0016393],[49.9982996,13.9978022,49.9982377,13.9975762,49.9982839,13.9975449,49.998349,13.997758,49.9982996,13.9978022],[50.004017,14.0008261,50.0040005,14.000777,50.0040521,14.0007357,50.0040685,14.0007851,50.004017,14.0008261],[50.0040982,14.0010007,50.0041002,14.0010565,50.0040337,14.0010626,50.0040315,14.0010067,50.0040982,14.0010007],[50.0043852,13.999732,50.0043802,13.9997837,50.004322,13.99977,50.004327,13.9997183,50.0043852,13.999732],[50.0001166,13.9971706,50.0001139,13.9971938,50.0000841,13.9971854,50.0000884,13.9971483,50.0000367,13.9971337,50.0000555,13.9969862,50.0000856,13.9969935,50.0000885,13.9969675,50.0001712,13.9969906,50.0001685,13.9970135,50.000199,13.9970209,50.0001809,13.9971872,50.0001166,13.9971706],[50.0030289,13.9973812,50.0030426,13.9973297,50.0030921,13.9973631,50.0030778,13.9974142,50.0030289,13.9973812],[50.0044147,13.9986719,50.0044121,13.9986962,50.0043762,13.9986868,50.0043788,13.9986626,50.0043586,13.9986574,50.0043731,13.9985224,50.0044595,13.9985447,50.004445,13.9986797,50.0044147,13.9986719],[50.0028846,13.9980739,50.0028899,13.9980531,50.0028832,13.9980489,50.0029136,13.9979283,50.0029908,13.9979748,50.0029598,13.9980959,50.0029462,13.9980875,50.0029408,13.9981086,50.0028846,13.9980739],[49.9989935,14.0004563,49.9989419,14.0003142,49.9989973,14.0002603,49.9990134,14.0002446,49.9990635,14.0003975,49.9989935,14.0004563],[49.997309,13.998451,49.997319,13.998475,49.997291,13.998503,49.997299,13.998521,49.99728,13.99854,49.997226,13.998413,49.9972835,13.9983525,49.9973062,13.9983304,49.997319,13.998364,49.997328,13.998355,49.997339,13.998379,49.997329,13.998389,49.997341,13.998419,49.997309,13.998451],[49.9985329,13.994575,49.998473,13.994575,49.998473,13.994521,49.9985328,13.994522,49.9985329,13.994575],[49.9991798,14.0001766,49.9991049,14.0002388,49.999038,14.0000492,49.9991133,13.9999874,49.9991798,14.0001766],[49.9980478,13.9970577,49.9980703,13.9970348,49.9980836,13.9970651,49.9980809,13.9970678,49.9981203,13.9971581,49.9980924,13.9971873,49.9980804,13.9971595,49.9980214,13.9972214,49.9979925,13.9971552,49.9980271,13.9971188,49.9980117,13.9970834,49.998044,13.9970497,49.9980478,13.9970577],[50.0034016,13.9961165,50.0034691,13.9961625,50.0034181,13.9963431,50.0033792,13.9963164,50.0033861,13.9962916,50.0033575,13.9962719,50.0034016,13.9961165],[50.0041002,14.0010565,50.0041024,14.0011121,50.0040358,14.0011182,50.0040337,14.0010626,50.0041002,14.0010565],[49.998535,13.9997582,49.9986312,13.9999284,49.9985741,14.0000021,49.9984795,13.9998321,49.998535,13.9997582],[50.004213,13.997789,50.00413,13.997779,50.004145,13.997506,50.004191,13.997511,50.004228,13.997515,50.004213,13.997789],[49.9974004,13.9969382,49.9973246,13.9968034,49.9974566,13.996553,49.9975096,13.9966195,49.9975465,13.9966749,49.9975104,13.9967399,49.9974004,13.9969382],[49.9980128,13.9982213,49.9981155,13.9981804,49.9981028,13.998095,49.9980932,13.9980985,49.9979989,13.9981359,49.9980128,13.9982213],[50.0025801,14.0011936,50.0025678,14.0013315,50.0025302,14.0013235,50.0025299,14.0013263,50.0025054,14.001321,50.0025066,14.0013073,50.0024749,14.0013006,50.0024871,14.001173,50.0025801,14.0011936],[49.9996548,13.998191,49.9997084,13.9981819,49.9997123,13.9982374,49.9996586,13.9982464,49.9996548,13.998191],[50.0030856,13.9971758,50.0031,13.9971246,50.0031495,13.997158,50.0031351,13.9972092,50.0030856,13.9971758],[50.0025441,14.0004177,50.0025358,14.0004164,50.0025382,14.0003757,50.0025464,14.000377,50.002551,14.0002989,50.0026168,14.0003082,50.0026134,14.0003656,50.0026218,14.0003668,50.0026199,14.0004004,50.0026113,14.0003992,50.0026064,14.0004823,50.0025408,14.0004731,50.0025441,14.0004177],[49.9982708,14.0010027,49.998295,14.0010678,49.9982756,14.0010848,49.9982836,14.001107,49.9982272,14.0011556,49.9981824,14.0010304,49.998238,14.0009821,49.9982517,14.0010197,49.9982708,14.0010027],[49.9986224,13.9979389,49.9986208,13.9980238,49.9985606,13.99802,49.9985621,13.9979351,49.9986224,13.9979389],[50.0039917,13.9989065,50.004014,13.9989117,50.0040027,13.9990304,50.003946,13.9990173,50.0039403,13.9990762,50.0038647,13.9990587,50.003871,13.9989924,50.0038485,13.9989873,50.0038573,13.9988964,50.0038123,13.998886,50.0038181,13.9988251,50.0038391,13.99883,50.003847,13.9987468,50.0038306,13.998743,50.0038378,13.9986676,50.0039058,13.9986834,50.0039021,13.998722,50.0039774,13.9987393,50.0039792,13.9987196,50.0040036,13.9987252,50.0040017,13.9987449,50.0040071,13.9987463,50.0039917,13.9989065],[49.9985492,14.0009187,49.998606,14.0008352,49.9986509,14.0009054,49.9985932,14.0009906,49.9985492,14.0009187],[50.0039837,14.0007274,50.0040358,14.0006865,50.0040521,14.0007357,50.0040005,14.000777,50.0039837,14.0007274],[50.0032642,13.9981801,50.0032195,13.9984248,50.0031495,13.9983947,50.0031944,13.9981511,50.0032642,13.9981801],[49.9966015,13.9957863,49.9965214,13.9959239,49.9964906,13.9958808,49.9965685,13.99574,49.9966015,13.9957863],[49.9977263,13.999427,49.9976454,13.9994724,49.997632,13.9994206,49.9976426,13.9994141,49.9976243,13.9993427,49.997639,13.9993336,49.9976272,13.9992878,49.9976873,13.9992554,49.9977263,13.999427],[50.0036002,14.0000161,50.0034691,14.0006512,50.0034027,14.0006183,50.0034956,14.0001676,50.0035396,14.0001893,50.0035614,14.0000839,50.0035256,14.0000661,50.0035419,13.999987,50.0036002,14.0000161],[49.9985585,13.9992899,49.9985654,13.9993073,49.9985755,13.9992977,49.9985866,13.9993223,49.9985887,13.99932,49.9986464,13.9994614,49.9986487,13.9994593,49.9986582,13.9994826,49.998617,13.9995221,49.9985945,13.9994669,49.9985831,13.9994782,49.9985615,13.9994248,49.9985724,13.9994136,49.9985324,13.9993204,49.9985585,13.9992899],[49.9975443,13.9970046,49.9975781,13.9969638,49.9975671,13.9969419,49.9975837,13.9969219,49.9975946,13.9969437,49.9976218,13.9969101,49.9976724,13.9970112,49.9975945,13.9971049,49.9975443,13.9970046],[49.9977852,14.0009241,49.9978246,14.0009026,49.9978451,14.0009923,49.9977451,14.0010478,49.9977397,14.0010239,49.9977364,14.0010256,49.9977349,14.001019,49.9977381,14.0010172,49.9977245,14.0009574,49.9977395,14.0009492,49.9977311,14.0009078,49.9977435,14.0009019,49.997744,14.0009048,49.9977781,14.0008882,49.9977852,14.0009241],[49.9996756,13.9977514,49.9996617,13.9979021,49.999548,13.997877,49.9995619,13.9977262,49.9996756,13.9977514],[49.9976153,13.9988597,49.9976343,13.9989077,49.9975757,13.9989613,49.9975572,13.9989133,49.9975498,13.9989202,49.997512,13.9988223,49.9975855,13.9987537,49.997624,13.9988514,49.9976153,13.9988597],[50.0027432,13.9985754,50.0027494,13.9985384,50.0027605,13.9985428,50.0027692,13.9984917,50.0028474,13.9985235,50.0028295,13.9986297,50.0027513,13.9985979,50.0027542,13.99858,50.0027432,13.9985754],[50.0030899,13.9992694,50.0030559,13.9994586,50.0029858,13.9994281,50.0030199,13.9992389,50.0030899,13.9992694],[49.9980685,13.9974567,49.9980182,13.9974882,49.9979739,13.9973182,49.9980241,13.9972866,49.9980685,13.9974567],[49.9983358,13.9997267,49.9982644,13.9997803,49.998225,13.9996524,49.9982961,13.9995997,49.9983358,13.9997267],[49.9982799,13.9992439,49.9983342,13.9992076,49.9983464,13.9992525,49.9982921,13.9992889,49.9982799,13.9992439],[49.9968943,13.9958455,49.9968453,13.9959161,49.9967882,13.9958322,49.9967657,13.9958069,49.996815,13.9957249,49.9968943,13.9958455],[49.9978926,14.000156,49.9978762,14.0001042,49.9978599,14.0001166,49.9978481,14.0000793,49.9978249,14.0000972,49.9978091,14.0000473,49.9978323,14.0000296,49.997801,13.9999311,49.9978563,13.9998888,49.9979265,14.0001099,49.9978926,14.000156],[50.0042346,14.0012246,50.0043753,14.0011791,50.0043971,14.0013409,50.0042563,14.0013864,50.0042346,14.0012246],[49.9979107,13.9978556,49.9978497,13.9976361,49.9979298,13.9975834,49.9979888,13.9978057,49.9979107,13.9978556],[50.0030634,13.9974654,50.0030151,13.9974329,50.0030289,13.9973812,50.0030778,13.9974142,50.0030634,13.9974654],[50.0032083,14.0017397,50.003204,14.0017627,50.0032545,14.0017856,50.0032364,14.0018818,50.0031859,14.0018591,50.0031816,14.0018826,50.0031323,14.0018606,50.0031591,14.0017175,50.0032083,14.0017397],[49.9982418,13.9991043,49.998296,13.9990679,49.9983093,13.9991166,49.9982549,13.9991521,49.9982418,13.9991043],[49.9994951,13.9969897,49.9995177,13.996817,49.9999785,13.9969678,49.9999626,13.9971223,49.9994951,13.9969897],[49.9979584,13.9983162,49.9980023,13.9985218,49.9979344,13.9985613,49.9978896,13.9983517,49.9979584,13.9983162],[49.9980712,13.9978316,49.9981839,13.9977617,49.9982103,13.9978645,49.9980976,13.9979343,49.9980746,13.9978447,49.9980712,13.9978316],[50.0025798,13.9998618,50.0026661,13.9998788,50.0026491,14.0000565,50.0026276,14.0000517,50.0026271,14.000057,50.0025658,14.0000433,50.0025798,13.9998618],[49.9970738,13.9968818,49.9971227,13.9968204,49.9971723,13.9969149,49.9971243,13.9969784,49.9970738,13.9968818],[50.0028039,13.9988167,50.0027874,13.9989394,50.002729,13.9989205,50.0027453,13.9987978,50.0028039,13.9988167],[49.998861,13.997864,49.998835,13.99786,49.998839,13.997776,49.998868,13.99778,49.998861,13.997864],[49.9988537,13.9962534,49.9988884,13.996248,49.9988936,13.9963293,49.9988588,13.9963346,49.9988537,13.9962534],[50.0024945,13.9988677,50.0025543,13.9988978,50.0025292,13.9990164,50.0024697,13.9989863,50.0024945,13.9988677],[49.9972714,13.9965118,49.9973494,13.9966404,49.9972855,13.9967296,49.9972056,13.9965969,49.9972714,13.9965118],[49.9976532,13.9989558,49.9976619,13.9989475,49.997698,13.9990447,49.9976245,13.9991132,49.9975869,13.9990161,49.9975942,13.9990092,49.9975757,13.9989613,49.9976343,13.9989077,49.9976532,13.9989558],[49.9998382,13.9930774,49.9998224,13.9930698,49.9998166,13.9931004,49.9997257,13.993052,49.9997624,13.9928811,49.9998693,13.992938,49.9998382,13.9930774],[49.9996508,13.9981355,49.9997045,13.9981264,49.9997084,13.9981819,49.9996548,13.998191,49.9996508,13.9981355],[50.0030856,13.9971758,50.0031351,13.9972092,50.0031208,13.9972605,50.0030713,13.9972271,50.0030856,13.9971758],[50.0044205,13.9990085,50.004409,13.9991665,50.0043451,13.9991553,50.0043566,13.9989973,50.0044205,13.9990085],[49.9973046,13.9985675,49.99737,13.9985036,49.9974383,13.9986737,49.9973734,13.9987371,49.9973046,13.9985675],[49.9987791,13.998549,49.9988011,13.9986908,49.9987516,13.9987092,49.9987296,13.9985675,49.9987791,13.998549],[49.9991857,14.0008127,49.9991233,14.0008557,49.9990717,14.0006788,49.999134,14.0006352,49.9991857,14.0008127],[50.0032473,13.9972481,50.0032203,13.9972359,50.0032301,13.9971817,50.003245,13.9971883,50.0032491,13.9971657,50.0032613,13.9971711,50.0032791,13.9970739,50.0033816,13.9971186,50.0032999,13.9975704,50.003197,13.9975244,50.003214,13.9974267,50.0032016,13.9974216,50.0032061,13.9973996,50.0031917,13.9973927,50.0032015,13.9973385,50.0032286,13.9973503,50.0032473,13.9972481],[50.004394,14.0000699,50.0044,14.0000119,50.0044896,14.000034,50.004479,14.000137,50.0044852,14.0001384,50.0044818,14.0001715,50.0044744,14.0001697,50.0044724,14.0001892,50.0043915,14.0001691,50.0044015,14.0000718,50.004394,14.0000699],[50.00405,14.001343,50.0040485,14.001285,50.0041085,14.0012792,50.00405,14.001343],[49.9984213,13.9994912,49.9984747,13.9996669,49.9984086,13.9997192,49.9983586,13.9995342,49.9984213,13.9994912],[49.998374,13.995921,49.9984048,13.9960019,49.9983723,13.9960316,49.9983415,13.9959506,49.998374,13.995921],[50.004191,13.997511,50.004145,13.997506,50.004109,13.997501,50.004121,13.997228,50.004205,13.997238,50.004191,13.997511],[49.9969457,13.9962831,49.9968993,13.9963422,49.9968334,13.9962176,49.9968799,13.9961585,49.9969457,13.9962831],[49.9978211,14.0002379,49.997834,14.0002357,49.9979412,14.0001922,49.9979577,14.0002828,49.9978452,14.0003302,49.9978211,14.0002379],[50.0042109,13.9984861,50.0041298,13.9984639,50.0041601,13.9981965,50.0042059,13.998209,50.0042412,13.9982187,50.0042109,13.9984861],[49.9987591,13.9994904,49.9988099,13.9996555,49.9987504,13.9996961,49.9987005,13.9995311,49.9987591,13.9994904],[49.9980245,13.9982939,49.9980128,13.9982213,49.9981155,13.9981804,49.9981265,13.9982542,49.9980245,13.9982939],[50.0038604,14.0014229,50.0039772,14.0014089,50.003985,14.0015665,50.0039997,14.0015648,50.0040027,14.0016239,50.0039879,14.0016256,50.0039939,14.0017441,50.0038771,14.0017581,50.0038604,14.0014229],[49.9977241,13.9955965,49.9977969,13.9956672,49.997769,13.9957361,49.9976962,13.9956654,49.9977241,13.9955965],[50.0025188,14.000832,50.0025293,14.0008351,50.0025298,14.0008312,50.0026031,14.0008528,50.0026063,14.000827,50.0026315,14.0008345,50.0026227,14.0009064,50.0026201,14.0009055,50.0026213,14.000896,50.0026039,14.0008908,50.0025893,14.0010101,50.0025107,14.000987,50.0025112,14.0009829,50.0025007,14.0009797,50.0025188,14.000832],[49.9984982,13.9976838,49.9984862,13.9978806,49.9984296,13.9978731,49.9984396,13.9976735,49.9984982,13.9976838],[49.9984577,13.9962924,49.9984919,13.9962637,49.9985264,13.9963627,49.9984922,13.9963914,49.9984577,13.9962924],[50.003434,13.9998855,50.0034094,14.0000157,50.0034649,14.0000409,50.0033008,14.0008417,50.0033147,14.0008486,50.0032938,14.0009508,50.0031049,14.0008575,50.003391,13.9994183,50.0033673,13.9994062,50.0034122,13.999195,50.0036994,13.9992926,50.003684,13.9993786,50.0035254,13.9993092,50.0035052,13.9994349,50.0036008,13.99947,50.0035899,13.999535,50.0035715,13.9995265,50.0035217,13.9997886,50.0035189,13.9998346,50.0035033,13.9999171,50.003434,13.9998855],[49.9978121,13.9974468,49.997725,13.9975268,49.9976692,13.9973808,49.9977047,13.9973482,49.9977255,13.9974027,49.9977771,13.9973552,49.9978121,13.9974468],[50.0030492,13.9975165,50.0030013,13.9974845,50.0030151,13.9974329,50.0030634,13.9974654,50.0030492,13.9975165],[49.9982549,13.9991521,49.9983093,13.9991166,49.9983217,13.9991622,49.9982673,13.9991977,49.9982549,13.9991521],[50.0032336,14.0012967,50.0031961,14.0014803,50.0030003,14.001384,50.0031049,14.0008575,50.0032938,14.0009508,50.0033357,14.0009712,50.0032845,14.0012213,50.0032435,14.0012012,50.0032249,14.0012925,50.0032336,14.0012967],[50.0033921,14.0008441,50.0035011,14.000876,50.0034481,14.0013115,50.003339,14.0012794,50.0033921,14.0008441],[50.0036813,14.0015337,50.0037313,14.0014719,50.0037996,14.0016049,50.0037508,14.0016654,50.0037222,14.0016096,50.0036292,14.0017246,50.0036135,14.0016938,50.0035595,14.0017605,50.0035037,14.0016517,50.0036494,14.0014715,50.0036813,14.0015337],[49.9988199,13.9978462,49.9988195,13.9978622,49.9987976,13.9978604,49.9987951,13.9979369,49.9987058,13.9979302,49.9987096,13.9977849,49.9987455,13.9977875,49.9987457,13.9977805,49.9987504,13.9977809,49.9987502,13.9977878,49.9988337,13.9977939,49.9988321,13.9978464,49.9988199,13.9978462],[49.9989271,13.9994554,49.9988834,13.9994934,49.9988415,13.9993773,49.9988853,13.9993393,49.9989271,13.9994554],[49.998567,13.999254,49.99852,13.999311,49.998503,13.999331,49.998465,13.999254,49.998533,13.999181,49.998567,13.999254],[50.0043852,13.999732,50.004327,13.9997183,50.004332,13.9996665,50.0043903,13.9996802,50.0043852,13.999732],[50.0026626,13.9990432,50.0027303,13.9990587,50.0027246,13.9991175,50.0027049,13.999113,50.0026949,13.9992168,50.002647,13.9992058,50.0026626,13.9990432],[49.9966165,13.9956203,49.9966631,13.9955389,49.996754,13.9956693,49.9967056,13.9957501,49.9966165,13.9956203],[50.0035525,13.9957891,50.003548,13.9958043,50.0034857,13.9957604,50.0035177,13.9956491,50.0035806,13.9956935,50.0035774,13.9957043,50.0035958,13.9957174,50.003571,13.9958022,50.0035525,13.9957891],[50.0042561,14.0007276,50.0043359,14.0007041,50.0043522,14.000837,50.004272,14.0008606,50.0042561,14.0007276],[49.9971523,13.9965084,49.9971708,13.9964795,49.9971561,13.9964561,49.9971979,13.9963908,49.9972714,13.9965118,49.9972056,13.9965969,49.9971523,13.9965084],[49.9977218,13.9965528,49.9976942,13.9966294,49.9976485,13.9965898,49.9976401,13.9966132,49.9975972,13.996576,49.9976057,13.9965527,49.9975453,13.9965002,49.9975723,13.9964246,49.9977218,13.9965528],[50.0031208,13.9972605,50.0031065,13.9973118,50.003057,13.9972785,50.0030713,13.9972271,50.0031208,13.9972605],[49.9989973,14.0002603,49.9989419,14.0003142,49.9989271,14.0003286,49.9988743,14.0001865,49.9989449,14.0001202,49.9989973,14.0002603],[49.9988158,13.9991484,49.9988631,13.9992795,49.9988371,13.9993021,49.9988303,13.9992836,49.998813,13.9992987,49.9987719,13.9991848,49.9988158,13.9991484],[49.9987531,13.9947513,49.9985332,13.9947523,49.9985329,13.994575,49.9985328,13.994522,49.9987527,13.994521,49.9987531,13.9947513],[50.0029197,13.9978451,50.0029612,13.9978718,50.0029655,13.9978745,50.002954,13.9979185,50.0029083,13.9978892,50.0029197,13.9978451],[49.9982273,13.9971024,49.9982479,13.997171,49.998264,13.9971597,49.9983028,13.9973076,49.9982264,13.9973558,49.9981675,13.9971457,49.9982273,13.9971024],[49.9991486,13.9951684,49.9991606,13.9952979,49.9990283,13.9953273,49.9990163,13.9951978,49.9991486,13.9951684],[50.0041085,14.0012792,50.0040485,14.001285,50.004042,14.0012852,50.0040399,14.0012296,50.0041065,14.0012235,50.0041085,14.0012792],[49.9981586,13.9991637,49.9980958,13.9992065,49.9980365,13.9989974,49.9980989,13.9989531,49.9981586,13.9991637],[49.9996793,13.993636,49.9996149,13.9936044,49.999642,13.9934713,49.999707,13.993503,49.9996793,13.993636],[49.9980309,13.9983295,49.9980915,13.9982902,49.9980962,13.99831,49.9981542,13.9982758,49.9981783,13.9983898,49.9980482,13.9984397,49.9980309,13.9983295],[49.9977636,13.9965925,49.9978599,13.9967644,49.9978218,13.9968189,49.9978382,13.9968466,49.9978275,13.9968621,49.9977086,13.9966628,49.9977636,13.9965925],[49.9980495,14.0010836,49.9980994,14.0010442,49.9981708,14.0012706,49.9981217,14.0013095,49.9980495,14.0010836],[49.999647,13.99808,49.9997006,13.998071,49.9997045,13.9981264,49.9996508,13.9981355,49.999647,13.99808],[50.0039832,14.0007023,50.0039564,14.0009784,50.0038943,14.0009646,50.0039201,14.0006883,50.0039832,14.0007023],[50.003196,13.997031,50.003135,13.996993,50.003158,13.996904,50.003215,13.996929,50.003196,13.997031],[50.0026194,13.9993387,50.0027168,13.9993736,50.0026913,13.9995471,50.0026293,13.9995258,50.0026402,13.9994498,50.0026054,13.999438,50.0026194,13.9993387],[50.0043334,13.9999464,50.0043146,14.0002019,50.004216,14.0001845,50.0042348,13.999929,50.0043334,13.9999464],[49.9966055,13.996087,49.9966231,13.9960173,49.9966881,13.9960543,49.9966736,13.9961223,49.9966055,13.996087],[49.9977805,13.9972585,49.9977527,13.9971647,49.9978737,13.9970767,49.9978659,13.9970522,49.9979063,13.9970231,49.9979404,13.9971352,49.9977805,13.9972585],[49.9982673,13.9991977,49.9983217,13.9991622,49.9983342,13.9992076,49.9982799,13.9992439,49.9982673,13.9991977],[49.9984428,13.9961228,49.9984751,13.9962154,49.9984409,13.9962442,49.9984086,13.9961514,49.9984428,13.9961228],[49.9968143,13.9959776,49.9967681,13.9960539,49.9966722,13.9959143,49.9967195,13.9958397,49.9968143,13.9959776],[50.0042059,13.998209,50.0041601,13.9981965,50.0041242,13.9981866,50.0041546,13.9979179,50.0042363,13.9979403,50.0042059,13.998209],[49.9975636,13.9975208,49.9976406,13.9976855,49.9975968,13.9977345,49.9975196,13.9975699,49.9975636,13.9975208],[49.9980547,14.0008614,49.9979941,14.0008897,49.9979648,14.0007368,49.9980271,14.000712,49.9980547,14.0008614],[49.9978354,14.0017517,49.9978716,14.0016744,49.9979646,14.0017792,49.9979386,14.0018347,49.9979331,14.0018285,49.9979208,14.001853,49.9978354,14.0017517],[49.999256,13.9971367,49.9991709,13.9971044,49.9991878,13.9969972,49.9992729,13.9970294,49.999256,13.9971367],[50.0040898,13.9995911,50.0040946,13.9995618,50.004078,13.9995552,50.0040842,13.9995013,50.004131,13.999521,50.0040856,13.9999091,50.0040149,13.9998866,50.0040555,13.9995801,50.0040898,13.9995911],[50.0040685,14.0007851,50.0040849,14.0008343,50.0040333,14.0008754,50.004017,14.0008261,50.0040685,14.0007851],[49.9988776,13.9971176,49.9988207,13.9971294,49.998804,13.9970049,49.9988775,13.9969897,49.9988807,13.9970259,49.9988699,13.9970282,49.9988776,13.9971176],[49.9988653,13.9967075,49.9988696,13.9968472,49.998813,13.9968513,49.9988087,13.9967101,49.9988653,13.9967075],[49.9965691,13.9956886,49.9965847,13.9957107,49.9966024,13.9956788,49.9966809,13.9957864,49.9966451,13.9958477,49.9966015,13.9957863,49.9965685,13.99574,49.9965524,13.9957172,49.9965691,13.9956886],[50.0030492,13.9975165,50.0030348,13.9975678,50.0029876,13.997536,50.0030013,13.9974845,50.0030492,13.9975165],[50.0045275,13.9994514,50.0045523,13.9994537,50.0045511,13.9994849,50.0045638,13.9994859,50.0045595,13.9996064,50.0044831,13.9995998,50.0044873,13.9994794,50.0045264,13.9994828,50.0045275,13.9994514],[50.003057,13.9972785,50.0031065,13.9973118,50.0030921,13.9973631,50.0030426,13.9973297,50.003057,13.9972785],[50.0043826,13.9994853,50.0042942,13.9994561,50.0043117,13.9993285,50.0042986,13.9993241,50.0043078,13.9992573,50.0044093,13.9992908,50.0043826,13.9994853],[50.0003269,14.0042746,50.0003281,14.0042678,50.00035,14.0042782,50.0003315,14.0043716,50.0003492,14.00438,50.00038,14.0043946,50.0003711,14.0044388,50.0003382,14.0044232,50.0002562,14.0043843,50.000282,14.0042533,50.0003269,14.0042746],[49.9980615,14.0003713,49.9980947,14.0003627,49.9981025,14.0004332,49.9980354,14.000451,49.9980207,14.0003184,49.99803,14.0003159,49.9980141,14.0001718,49.9980697,14.0001567,49.9980747,14.0002049,49.9980877,14.0002015,49.9980933,14.0002563,49.9980806,14.0002594,49.9980858,14.0003075,49.9980555,14.0003153,49.9980615,14.0003713],[49.9998196,14.0019033,49.9998451,14.0019735,49.9997882,14.0020232,49.9997615,14.0019499,49.9998196,14.0019033],[49.9998853,14.003147,49.999863,14.00315,49.999781,14.003101,49.999731,14.00291,49.999813,14.002865,49.9998853,14.003147],[49.9998696,14.0006321,49.9998102,14.000645,49.9998051,14.0005857,49.9997847,14.0005898,49.9997758,14.0004834,49.9997576,14.0004872,49.9997464,14.0003541,49.9997335,14.0003567,49.9997263,14.0002712,49.9997145,14.0002736,49.9997053,14.0001636,49.9998064,14.0001432,49.9998004,14.0000726,49.9998785,14.0000566,49.9998822,14.0000968,49.9999016,14.0000925,49.999906,14.0001398,49.9998825,14.000145,49.9998872,14.0001963,49.9999055,14.0001926,49.9999088,14.0002315,49.9998951,14.0002343,49.9998967,14.000254,49.9998777,14.000258,49.9998943,14.0004563,49.9998756,14.00046,49.9998848,14.0005696,49.9998646,14.0005736,49.9998696,14.0006321],[49.9985884,13.9972239,49.9986359,13.9972216,49.9986387,13.9973552,49.9985912,13.9973576,49.9985884,13.9972239],[50.0040174,14.0001273,50.0040172,14.0001286,50.0039517,14.0006222,50.0038435,14.0005877,50.0039091,14.0000928,50.0040019,14.0001225,50.0040174,14.0001273],[50.0039604,13.9976365,50.003941,13.9976317,50.0039238,13.9978003,50.0038617,13.9977853,50.0038665,13.9977369,50.0038488,13.9977325,50.0038587,13.9976362,50.0038765,13.9976407,50.0038815,13.9975921,50.0039185,13.9976005,50.0039284,13.9975047,50.0039728,13.9975158,50.0039604,13.9976365],[50.0037669,14.0008389,50.00373,14.0008249,50.0037597,14.0006375,50.0037967,14.0006515,50.0037669,14.0008389],[50.0025569,13.9999922,50.0025536,14.0000637,50.0025073,14.0000583,50.0025128,13.9999839,50.0025569,13.9999922],[50.0038627,14.0000581,50.0037859,14.0005472,50.0036929,14.0005119,50.0037697,14.000023,50.0038627,14.0000581],[50.0035597,14.0005027,50.0035924,14.0003505,50.0036373,14.0003737,50.0036047,14.0005258,50.0035597,14.0005027],[50.0044093,13.9983481,50.004344,13.9983298,50.0043496,13.9982756,50.0044156,13.998294,50.0044093,13.9983481],[50.0035354,14.0010858,50.0035766,14.0010977,50.0035442,14.0013685,50.003503,14.0013566,50.0035354,14.0010858],[50.0034489,14.0030051,50.0034348,14.0030639,50.0034152,14.0030519,50.0034065,14.0030888,50.0033271,14.0030444,50.0033296,14.0030331,50.0033236,14.0030152,50.0033291,14.0029931,50.0033411,14.0029842,50.0033443,14.0029728,50.0033495,14.0029755,50.0033625,14.0029153,50.003438,14.0029572,50.0034292,14.0029938,50.0034489,14.0030051],[50.0035225,14.0027623,50.0034882,14.002911,50.0034493,14.0028858,50.0034529,14.0028723,50.0034141,14.0028472,50.0034208,14.0028218,50.0033973,14.0028066,50.0034115,14.0027535,50.0034033,14.0027324,50.0034108,14.0027049,50.003433,14.0027055,50.003444,14.0027193,50.0035225,14.0027623],[50.0027173,14.0022526,50.0027331,14.0021645,50.0027899,14.0021891,50.002774,14.0022771,50.0027173,14.0022526],[49.998895,13.9998151,49.9988044,13.9998912,49.9987702,13.9997835,49.9988584,13.9997109,49.998895,13.9998151],[49.9981807,14.0007423,49.9982153,14.0008909,49.9981578,14.0009231,49.9981234,14.0007745,49.9981807,14.0007423],[49.9987185,14.0006568,49.9986244,14.0005142,49.9986933,14.000398,49.9987903,14.0005334,49.9987185,14.0006568],[49.99938,14.0015043,49.999346,14.0014024,49.9993856,14.0013719,49.9994184,14.0014741,49.99938,14.0015043],[50.0022088,14.0061569,50.0022011,14.006205,50.0021534,14.0061867,50.002161,14.0061386,50.0022088,14.0061569],[50.0022804,14.0049357,50.0023459,14.0049785,50.0023281,14.0050442,50.0023467,14.0050564,50.0023278,14.0051263,50.0022436,14.0050714,50.0022804,14.0049357],[50.0040295,14.0009515,50.0040961,14.0009451,50.0040982,14.0010007,50.0040315,14.0010067,50.0040295,14.0009515],[49.9992801,13.9992774,49.9993059,13.9993313,49.9992797,13.9993623,49.9992592,13.9993205,49.999276,13.9993008,49.9992702,13.9992885,49.9992801,13.9992774],[50.0003015,14.0065949,50.0003458,14.0066108,50.000338,14.0066636,50.0002937,14.0066478,50.0003015,14.0065949],[50.0002025,14.0029243,50.0002687,14.0029133,50.0002531,14.0026863,50.0001869,14.0026974,50.0001882,14.0027162,50.000202,14.0029171,50.0002025,14.0029243],[49.9990692,13.9962558,49.9990931,13.9962574,49.9990945,13.9962083,49.9990705,13.9962068,49.9990692,13.9962558],[49.9975773,13.9967212,49.9975304,13.9967976,49.9975104,13.9967399,49.9975465,13.9966749,49.9975773,13.9967212],[49.9980504,13.9978915,49.9980454,13.9978916,49.9980265,13.9978562,49.9980294,13.9978528,49.9980305,13.9978542,49.9980547,13.9978147,49.9980602,13.997821,49.9980629,13.9978153,49.9980722,13.9978279,49.9980712,13.9978316,49.9980746,13.9978447,49.9980596,13.9978579,49.9980659,13.9978758,49.9980504,13.9978915],[49.9999061,13.9998657,49.9998826,13.9998709,49.9998917,13.9999698,49.9999042,13.999967,49.9999086,14.0000143,49.9998753,14.0000217,49.9998785,14.0000566,49.9998004,14.0000726,49.9997565,13.9995506,49.9997533,13.9995122,49.999864,13.9994811,49.9998817,13.9997395,49.9998928,13.999737,49.999896,13.9997714,49.9998836,13.9997742,49.9998887,13.9998301,49.9999025,13.9998271,49.9999061,13.9998657],[49.9972835,13.9983525,49.9972759,13.9983355,49.9972922,13.9982969,49.9973062,13.9983304,49.9972835,13.9983525],[49.9993534,13.9975598,49.9993096,13.9975457,49.9993141,13.9975108,49.9992731,13.9974976,49.9992928,13.9973501,49.9993778,13.9973774,49.9993534,13.9975598],[49.9998612,13.9993316,49.9998762,13.9993273,49.9998796,13.9993554,49.9998556,13.9993623,49.9997621,13.9993813,49.9997568,13.9990581,49.9998597,13.9990531,49.9998612,13.9993316],[49.997206,13.9984375,49.9971896,13.998402,49.9972888,13.998289,49.9972922,13.9982969,49.9972759,13.9983355,49.9972835,13.9983525,49.997226,13.998413,49.997206,13.9984375],[49.9998556,13.9993623,49.9998646,13.9994382,49.9998772,13.9994347,49.9998821,13.9994759,49.999864,13.9994811,49.9997533,13.9995122,49.9997427,13.9993852,49.9997621,13.9993813,49.9998556,13.9993623],[49.9996644,13.9988355,49.9999118,13.9987584,49.9999337,13.9988902,49.9998589,13.9989051,49.9998597,13.9990531,49.9997568,13.9990581,49.9997549,13.9989367,49.9996814,13.9989556,49.9996644,13.9988355],[49.9997068,13.9995252,49.99971,13.9995637,49.9997035,13.9995655,49.9995401,13.9996116,49.9994732,13.9992804,49.999559,13.9992526,49.9995812,13.9992454,49.999632,13.9995462,49.9996992,13.9995273,49.9997068,13.9995252],[50.0032086,13.9980076,50.0031535,13.9979815,50.0031422,13.9980405,50.0031974,13.9980707,50.0032086,13.9980076],[50.0031944,13.99808,50.0031797,13.9981511,50.0031392,13.998131,50.003156,13.9980559,50.0031944,13.99808],[50.0032147,13.9976053,50.0031776,13.9977816,50.0031293,13.9977575,50.0031655,13.9975791,50.0032147,13.9976053],[50.0031428,13.9990193,50.0031047,13.9992385,50.0030499,13.9992155,50.003088,13.9989962,50.0031428,13.9990193],[50.0030609,13.9994808,50.0030121,13.9997651,50.0029908,13.9997562,50.0030396,13.9994719,50.0030609,13.9994808],[50.0018146,14.0045687,50.001834,14.0045789,50.0018241,14.0046248,50.0018019,14.0046127,50.0018146,14.0045687],[50.001834,14.0045789,50.0018146,14.0045687,50.0018347,14.0044983,50.0018498,14.0045061,50.001834,14.0045789],[50.0030064,13.9979842,50.0030129,13.997956,50.0030231,13.9979113,50.0030289,13.9979149,50.003031,13.9979174,50.0030458,13.997975,50.0030282,13.9979975,50.0030064,13.9979842],[50.0030022,13.997898,50.0030231,13.9979113,50.0030129,13.997956,50.0029907,13.9979418,50.0030022,13.997898],[50.0029655,13.9978745,50.0030022,13.997898,50.0029907,13.9979418,50.002954,13.9979185,50.0029655,13.9978745],[49.9982932,13.9941214,49.9982158,13.9941599,49.9981966,13.9940662,49.9982742,13.994028,49.9982932,13.9941214],[50.0018952,14.005416,50.0019735,14.0054481,50.0019436,14.0056235,50.0018652,14.0055914,50.0018952,14.005416],[50.0030133,14.0030339,50.0030674,14.0030606,50.0030549,14.00312,50.0030007,14.0030922,50.0030133,14.0030339],[49.9988788,13.9941785,49.9989177,13.9941608,49.9989454,13.9943086,49.9988331,13.9943595,49.9988255,13.9943193,49.9988189,13.9943222,49.9988062,13.9942556,49.9988131,13.9942522,49.9988054,13.9942119,49.9988441,13.9941941,49.9988422,13.9941838,49.998877,13.9941685,49.9988788,13.9941785],[49.9987778,13.9974943,49.9987601,13.9976862,49.9986784,13.9976684,49.9986956,13.9974764,49.9987778,13.9974943],[49.9977305,13.9979198,49.997782,13.9980653,49.9976946,13.9981394,49.9975776,13.9978079,49.9976631,13.9977296,49.9977151,13.9978765,49.9977459,13.9978509,49.9977609,13.9978927,49.9977305,13.9979198],[50.0006183,14.0058164,50.0005932,14.0060042,50.0005135,14.0059783,50.0005387,14.0057905,50.0006183,14.0058164],[50.0034403,14.0035649,50.0034149,14.0036671,50.0033618,14.0036361,50.0033843,14.0035337,50.0034403,14.0035649],[50.0035081,14.003292,50.0035679,14.0033256,50.0035143,14.0035548,50.0034545,14.003521,50.0035081,14.003292],[49.9975338,13.9980303,49.9974842,13.9980754,49.9974704,13.9980388,49.9975199,13.9979935,49.9975338,13.9980303],[49.9975476,13.9980668,49.9974979,13.9981121,49.9974842,13.9980754,49.9975338,13.9980303,49.9975476,13.9980668],[49.9975616,13.9981039,49.9975118,13.998149,49.9974979,13.9981121,49.9975476,13.9980668,49.9975616,13.9981039],[49.9975757,13.9981409,49.9975256,13.9981863,49.9975118,13.998149,49.9975616,13.9981039,49.9975757,13.9981409],[49.9975895,13.9981785,49.9975398,13.9982234,49.9975256,13.9981863,49.9975757,13.9981409,49.9975895,13.9981785],[49.9988476,13.9937961,49.9988744,13.9939308,49.9988347,13.9939499,49.998839,13.9939713,49.9988005,13.9939896,49.9987963,13.9939685,49.9987533,13.9939889,49.998748,13.9939619,49.9987366,13.9939481,49.9987305,13.993935,49.9987273,13.9939187,49.9987276,13.9939027,49.9987322,13.9938818,49.9987266,13.9938541,49.9987696,13.9938335,49.9987688,13.9938293,49.998807,13.9938111,49.9988078,13.9938151,49.9988476,13.9937961],[50.002842,14.0043704,50.0028192,14.004476,50.0027928,14.0044625,50.0028152,14.0043568,50.002842,14.0043704],[50.0026018,14.0043518,50.002594,14.004402,50.0025194,14.0043708,50.0025285,14.0043223,50.0026018,14.0043518],[49.99971,13.9995637,49.9997068,13.9995252,49.9997533,13.9995122,49.9997565,13.9995506,49.99971,13.9995637],[49.9995933,14.0022555,49.9996152,14.0022371,49.9996934,14.0024177,49.9996816,14.0024306,49.9997872,14.0026738,49.9997675,14.002696,49.9996402,14.0024034,49.9996516,14.0023915,49.9995933,14.0022555]],"buildingTypes":["residential","garage","yes","residential","yes","residential","residential","yes","residential","residential","civic","yes","residential","yes","residential","civic","yes","yes","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","yes","garage","residential","residential","garage","residential","garage","yes","yes","yes","residential","residential","residential","residential","yes","garage","residential","garage","garage","garage","transformer_tower","residential","yes","yes","residential","yes","garage","yes","garage","yes","residential","residential","residential","civic","residential","garage","residential","residential","civic","yes","residential","garage","yes","garage","yes","residential","garage","residential","residential","yes","yes","yes","yes","residential","residential","hotel","residential","yes","residential","yes","garage","residential","yes","yes","residential","garage","residential","residential","yes","residential","house","civic","residential","residential","residential","residential","residential","residential","residential","residential","garage","house","yes","yes","yes","residential","yes","residential","barn","yes","house","residential","civic","barn","garage","residential","garage","yes","residential","residential","house","residential","residential","residential","residential","residential","residential","barn","garage","residential","garage","residential","yes","garage","residential","residential","residential","garage","garage","garage","residential","garage","residential","residential","residential","yes","yes","residential","residential","residential","garage","house","residential","barn","barn","residential","garage","garage","residential","garage","garage","residential","yes","garage","residential","residential","residential","yes","residential","residential","residential","residential","house","residential","retail","yes","residential","garage","residential","yes","residential","residential","garage","yes","garage","residential","residential","residential","residential","barn","garage","yes","yes","residential","residential","house","residential","garage","garage","residential","residential","residential","residential","residential","residential","yes","yes","yes","residential","yes","yes","residential","residential","barn","hotel","residential","residential","residential","yes","residential","residential","garage","garage","yes","barn","yes","residential","residential","yes","garage","residential","residential","residential","yes","residential","residential","garage","yes","residential","yes","garage","residential","yes","garage","residential","residential","residential","residential","residential","garage","residential","yes","residential","residential","yes","residential","garage","yes","residential","residential","yes","residential","house","industrial","residential","garage","residential","residential","residential","garage","residential","garage","house","residential","house","civic","yes","church","house","yes","house","yes","garage","barn","yes","garage","yes","residential","residential","residential","yes","house","residential","house","garage","residential","garage","industrial","yes","roof","yes","garage","garage","residential","barn","residential","residential","barn","residential","residential","residential","yes","yes","yes","transportation","transportation","garage","yes","yes","yes","yes","yes","house","garage","house","house","residential","yes","garage","house","garage","garage","garage","garage","garage","house","yes","garage","yes","roof"],"pathways":[[50.002391,14.0028971,50.0023646,14.0030044,50.0022123,14.0034298,50.002129,14.003694,50.00201,14.004216,50.001811,14.005434,50.0016382,14.0066793],[50.002391,14.0028971,50.0020864,14.0027947],[50.0020864,14.0027947,50.0010496,14.0024731],[50.0010496,14.0024731,50.0009016,14.0024388,50.0008368,14.0024237,50.0008014,14.0024163,50.0007143,14.0024026,50.0005265,14.0023732,50.0004158,14.002368,50.0002942,14.0023624],[49.9992247,13.9958212,49.9992349,13.9959518,49.9992149,13.99608,49.9990872,13.9966278],[49.9998659,14.0024862,49.999896,14.002582,49.9999063,14.0026257,49.9999559,14.0028368,50.0000125,14.00309,50.0000249,14.0031445],[50.0002942,14.0023624,50.0002998,14.0022706,50.0003117,14.0021219,50.0003319,14.0018696,50.0006638,13.998975,50.0006658,13.9989573],[49.9998659,14.0024862,49.9997407,14.0021885,49.999646,14.0019445],[49.9993559,14.0011673,49.999234,14.0010458,49.999108,14.000885,49.9990402,14.0007643,49.9988021,14.0004645,49.9986673,14.0002601,49.9983905,13.9997697,49.9981109,13.9988758,49.9979187,13.9980422,49.9978071,13.9977227,49.9976538,13.9975456,49.9975256,13.9972796,49.9971027,13.9965092,49.9968203,13.995935,49.9965951,13.9956374,49.9963019,13.9953677,49.9958551,13.9949061,49.9952752,13.9942007,49.9951003,13.9939521,49.9949636,13.9937572,49.9948809,13.9935339,49.9946738,13.9930385,49.9945879,13.9927509,49.9944441,13.9923913,49.9942588,13.9920435,49.9939539,13.9916857],[49.9985244,13.998317,49.9987351,13.9989316,49.9988838,13.9991521,49.9991637,13.9994102],[50.0004701,14.0048319,50.0004782,14.0049,50.0005079,14.0049504,50.0006516,14.0049606,50.0006961,14.0050431],[49.9993875,13.9946375,49.9993428,13.994843,49.9993364,13.9949255,49.9993269,13.99503,49.9993037,13.9951021,49.999265,13.995159],[49.9994918,13.9996146,49.9994356,13.9995332,49.9993813,13.9994534,49.9993672,13.9994728,49.9993718,13.9995222,49.9994134,13.9996395,49.9995392,13.9999415,49.9996675,14.0004258,49.9997239,14.0006545,49.9998112,14.0009153,49.9999152,14.0011609,49.9999003,14.00117,49.9998501,14.0011423,49.9998115,14.0010996,49.9998024,14.0011143,49.9999997,14.0016426,50.000024,14.0017034,50.00003,14.0017185,50.000028,14.0017343,50.0000213,14.0017398,49.9999697,14.00171,49.9997321,14.0014663,49.9997231,14.0014632,49.9997194,14.0014862,49.9998445,14.0018413],[49.9992247,13.9958212,49.9992648,13.9956893,49.999281,13.9955574,49.999265,13.995159],[50.0002011,14.0046407,50.0004701,14.0048319],[49.999265,13.995159,49.9992611,13.9950935,49.9992207,13.9948961,49.9986401,13.9919642,49.9983126,13.9906812,49.9981638,13.9902459,49.9978929,13.9896067,49.9978214,13.9894122,49.9977648,13.9891111,49.9971723,13.9846862,49.9970823,13.9841993,49.9967822,13.9831188,49.9967028,13.9828606,49.9963577,13.9817382,49.9948357,13.9766027,49.9947569,13.9760349],[50.0021026,14.0055517,50.0024822,14.0058871,50.0027369,14.0061007],[50.00264,14.0027956,50.00263,14.0028287,50.0024724,14.0035561,50.0023015,14.0044372,50.0022383,14.004844],[50.0022383,14.004844,50.0029572,14.0053144,50.003214,14.0055103,50.0034594,14.0056899,50.0038358,14.0059972,50.0041941,14.006184,50.0044195,14.006321,50.0045719,14.0064753,50.0047715,14.0067642],[50.0029572,14.0053144,50.0032464,14.0040124,50.0035686,14.0026461,50.0036116,14.0023844],[50.0030123,14.0034616,50.0030905,14.0030921,50.0031724,14.0025792],[50.0007166,14.0057544,50.0006725,14.0057361],[49.9975537,13.9950138,49.9973988,13.9948446,49.997065,13.9945003,49.9968362,13.9943195,49.9966837,13.9942028,49.9966177,13.9941428,49.9965037,13.9939811,49.9964674,13.9938877,49.9964299,13.9936738,49.9963887,13.9933199,49.9963862,13.9931546,49.9963999,13.9927734,49.9964004,13.9927037,49.9964021,13.9924295,49.9964024,13.9923903,49.9964037,13.9920577],[49.999917,14.0009335,49.999911,14.0009517,49.9998983,14.0009561,49.9998112,14.0009153],[49.9994918,13.9996146,49.9995201,13.9996816,49.9995401,13.9996892,49.9995598,13.9996957],[49.9995401,13.9996892,49.9996685,14.0002104,49.9997387,14.0004671,49.9998017,14.000709,49.9998747,14.000811,49.999888,14.0008284,49.999917,14.0009335,49.9999646,14.0010813,49.9999983,14.0011406,50.0000108,14.0011801,50.0000132,14.0012191,50.0000047,14.0012355,49.9999835,14.0012396,49.9999489,14.0012129,49.9999152,14.0011609],[49.9996276,13.9987988,49.9996331,13.998845,49.9996466,13.9989476,49.9996784,13.9992626,49.9996838,13.9993708,49.9996992,13.9995273],[49.9993615,13.9988452,49.9994285,13.9988536,49.9995948,13.9988095,49.9996276,13.9987988,49.9999136,13.9987058],[49.9990872,13.9966278,49.9990748,13.9964006,49.9990571,13.9963377,49.9989864,13.9961508],[50.0008715,14.0042468,50.0007925,14.0044065],[50.0000125,14.00309,50.0000752,14.003077,50.0001456,14.0031015,50.0002079,14.0031427,50.0002661,14.0032025,50.0004203,14.003452,50.0005505,14.0036569,50.0006707,14.0037727,50.000894,14.0038131],[50.0007925,14.0044065,50.0007569,14.0046027,50.000714,14.0049183,50.0006961,14.0050431,50.0006005,14.0053425,50.0005112,14.0055765,50.0004675,14.0058024,50.0004326,14.0062064,50.0004756,14.006405,50.0005114,14.0065799,50.0005262,14.0068682,50.0005091,14.0071815,50.0004194,14.0077089,50.0003053,14.0082272,50.0001883,14.0086791,50.0000675,14.0090612,49.9999494,14.0094046,49.9997921,14.009754,49.9996564,14.0099649],[49.9990784,14.0046633,49.9991816,14.0049551,49.9992402,14.0052381,49.9992418,14.0056762,49.9992275,14.0061931,49.9991975,14.0064073,49.9991168,14.0067248,49.9989522,14.0074115,49.9985826,14.0085229,49.9985154,14.0087198,49.9984106,14.0089136,49.9982207,14.0091905,49.9980308,14.0094736,49.9978647,14.0097259],[49.9983037,14.0062248,49.9983164,14.0052082,49.9983148,14.0050605,49.9982927,14.004967,49.9982436,14.0049079,49.9981487,14.0048857,49.9981202,14.0048562,49.9980664,14.0046962,49.9979904,14.0044919,49.9978971,14.004199,49.9978259,14.0039332,49.9977832,14.0036698,49.9977658,14.0035615,49.9977515,14.0032784,49.9977499,14.0031603,49.9977633,14.0031151,49.9977828,14.0030869,49.9978126,14.0030939,49.9978327,14.0031171,49.997867,14.0031967,49.997915,14.0033469,49.9980096,14.0035385,49.9982609,14.0040241,49.9983795,14.0042318,49.9987133,14.0045164,49.9990088,14.0046791,49.9990784,14.0046633,49.998939,14.0044209,49.9987859,14.0039866],[49.9963068,14.0000985,49.996465,14.0011485,49.9965185,14.0016124,49.9965441,14.0018715,49.9966134,14.0023292,49.9966925,14.0025254,49.9968878,14.0028292,49.9970782,14.0028869,49.9974144,14.0029138,49.9976789,14.0029561,49.9977828,14.0030869],[50.002491,14.0022031,50.0024509,14.0018249,50.0024308,14.0012957,50.0024456,14.0006703,50.0024805,14.0001077,50.0025141,13.9995974,50.0025545,13.9991351,50.0027111,13.998434,50.0028865,13.9978216,50.0029268,13.9977003],[50.002391,14.0028971,50.0024492,14.0027171,50.002482,14.0023143,50.002491,14.0022031,50.0026388,14.0013932,50.0027921,14.0005527],[50.0029268,13.9977003,50.0030653,13.9976041,50.0031594,13.9973197,50.003349,13.9965542],[50.0029268,13.9977003,50.0030115,13.9973092,50.003228,13.9965793,50.0035049,13.9956109,50.0035936,13.9953055,50.003681,13.9951047],[49.9910708,13.9927923,49.9912149,13.9928338,49.9930403,13.9927217,49.9934786,13.9928992,49.993953,13.9933475,49.9943968,13.9944703,49.9944572,13.9946104,49.9945264,13.9947703,49.9947702,13.9951539,49.9953293,13.9957944,49.9958903,13.9964971,49.9961754,13.996855,49.996504,13.9971968,49.9969289,13.9976639,49.9972573,13.9981973,49.9974451,13.9984012],[50.002947,13.9994309,50.003018,13.9990343,50.0030793,13.9988017,50.0031556,13.9986629,50.0031836,13.998539,50.0031363,13.9984386,50.0030696,13.9984453],[49.999646,14.0019445,49.9995894,14.001971,49.9995774,14.0019766,49.9995671,14.0019776,49.9995424,14.0019428,49.9994093,14.0017146,49.9993869,14.0016901,49.999327,14.0016743,49.999289,14.0016819,49.9992613,14.0017013,49.9991016,14.0019429,49.9990553,14.002024,49.9990419,14.002077,49.9990426,14.0021208],[49.9993559,14.0011673,49.9993064,14.0010247,49.9990387,14.0001773,49.9988951,13.9997739,49.998707,13.9993063,49.9986279,13.9990318,49.9985244,13.998317,49.9985192,13.99819,49.9985283,13.9980179,49.998564,13.9972377,49.9985244,13.996788,49.9983784,13.9963099,49.9980619,13.9955667,49.9979158,13.9953727,49.9976024,13.9951502],[50.0022383,14.004844,50.0021026,14.0055517,50.0019401,14.0064766,50.0019382,14.0064878,50.0017833,14.0074012,50.0017352,14.0076849,50.0015986,14.0083197],[50.00264,14.0027956,50.0025195,14.0028385,50.002447,14.0028697,50.002391,14.0028971],[50.0003117,14.0021219,50.0005463,14.0021633,50.0008306,14.0022134],[49.9999559,14.0028368,50.0000769,14.002799,50.0001823,14.0027854,50.0003224,14.0027456,50.0003716,14.0027325,50.0004575,14.0027103,50.0004788,14.0026671,50.0005112,14.002492,50.0005265,14.0023732],[50.0000479,14.0032535,50.0001041,14.0036236,50.0002011,14.0046407,50.0002061,14.0048702,50.0002036,14.0051027,50.0001633,14.00535,49.9999361,14.0060865,49.9996855,14.0077271,49.999247,14.009725,49.999059,14.0102772,49.9987577,14.0108939,49.9980567,14.0123076,49.9975956,14.0133414],[50.0000249,14.0031445,50.0000479,14.0032535],[50.000894,14.0038131,50.0009063,14.0036006,50.0009832,14.0033227,50.0010293,14.0030706,50.0010801,14.0026346,50.0010955,14.0023604,50.0010612,14.0021782,50.0010447,14.0020273,50.0010506,14.0010153,50.0010754,14.0000493,50.0011038,13.9989361,50.0011002,13.9987723,50.001034,13.9986288,50.0009394,13.9985203,50.0009146,13.9985],[49.9997649,14.0019072,49.9996899,14.0019693],[49.9998445,14.0018413,49.9997649,14.0019072],[49.9991865,13.99756,49.9991351,13.9977552,49.9990698,13.9980207,49.9990456,13.9981573,49.9990623,13.9983069],[49.9992106,13.9977535,49.9993492,13.9979855,49.999383,13.998005,49.9994081,13.9979823,49.9994587,13.9976056,49.9999078,13.9977279],[50.009866,14.0010918,50.008617,14.0013447,50.0083035,14.0014163,50.007374,14.0016282,50.0072313,14.001666,50.0070443,14.0015906,50.0068778,14.0014108,50.006741,14.001202,50.0065516,14.0006416,50.0064096,14.0004538,50.0062847,14.0003666,50.0062106,14.0003474,50.006133,14.000355,50.005978,14.0004113,50.0053,14.001183,50.005074,14.001358,50.0049479,14.0013933,50.00482,14.0014004,50.0045605,14.0014933,50.0043223,14.001683,50.0042123,14.0018443,50.003844,14.002239,50.0036116,14.0023844,50.003574,14.002408,50.0031724,14.0025792,50.002726,14.0027611,50.00264,14.0027956],[49.9996092,14.0018512,49.9993559,14.0011673],[50.0002942,14.0023624,50.0000817,14.0023877,49.9999659,14.0024291,49.9998659,14.0024862],[50.0042123,14.0018443,50.0042099,14.001621,50.0041519,14.0010128,50.0041255,14.0008016,50.0041141,14.0007518,50.0040645,14.0005558,50.0040857,14.0002523,50.004265,13.9987502,50.0043234,13.9982958,50.0044037,13.9974907],[50.004554,13.998224,50.0043469,14.0003398,50.004321,14.000464,50.0041255,14.0008016],[50.0026388,14.0013932,50.0026734,14.0013732,50.0027115,14.0013088,50.0027508,14.0011885,50.0027578,14.0011464,50.0028771,14.0004275,50.0028891,14.0003139,50.0028877,14.0002375,50.002853,14.0001635],[49.9976724,13.9949087,49.997858,13.9951407,49.9982506,13.99542,49.9986577,13.9960184,49.9987049,13.9960703,49.9987637,13.996118,49.9988257,13.9961508,49.9988926,13.9961655,49.9989492,13.996158,49.9989864,13.9961508,49.9990647,13.9961,49.9991128,13.996042,49.9991645,13.9959645,49.9992247,13.9958212],[49.9975537,13.9949608,49.9975994,13.9949087,49.9976724,13.9949087],[49.9976024,13.9951502,49.9975537,13.9950508,49.9975537,13.9950138,49.9975537,13.9949608],[50.0033703,13.9977981,50.0032832,13.9982763,50.0032514,13.9984511,50.0032403,13.9985241,50.0031836,13.998539],[49.9990872,13.9966278,49.999084,13.9967815,49.9991865,13.99756,49.9992106,13.9977535],[49.9987859,14.0039866,49.998648,14.003249,49.9985393,14.0028249,49.9983338,14.0023415,49.9981841,14.0019426,49.9981072,14.0018312,49.9980247,14.0017257,49.9979759,14.0016639,49.9979454,14.0016138,49.9979283,14.0015711,49.9979168,14.0015308,49.9979119,14.0014574,49.9979153,14.0013525,49.9979172,14.0012913,49.9979133,14.0012312,49.9979021,14.0011333,49.9978674,14.0009511,49.9977765,14.0003947,49.9977238,13.9995153,49.9977392,13.9993769,49.9977654,13.999199,49.9978134,13.9991166],[49.9975256,13.9972796,49.9976966,13.9970936,49.9976693,13.9967563,49.9977076,13.9966866],[49.9996992,13.9995273,49.9997035,13.9995655],[49.9997035,13.9995655,49.9997141,13.9996285,49.9997355,13.9997992,49.9997742,14.0001325],[50.0044037,13.9974907,50.0043926,13.9971289,50.0044159,13.9967776,50.004205,13.9967425,50.0041499,13.9967936,50.004095,13.9970339,50.0040718,13.9973451,50.0040692,13.9984173,50.0041107,13.9984907,50.0042408,13.9985281,50.004265,13.9987502],[49.9994451,14.0037573,49.9996802,14.0037726,49.9997819,14.0037601,49.9998972,14.0037129,50.0000084,14.0036507,50.0001041,14.0036236],[50.0062847,14.0003666,50.0062695,14.0002469,50.0062404,14.0002068,50.0061087,14.0001322,50.0059855,14.0001237,50.0057286,14.0001199,50.0055824,14.0001884,50.0053457,14.0003521,50.0050588,14.0005987,50.0049501,14.000673,50.0045864,14.0008406,50.0045199,14.000869,50.0043872,14.0009368,50.0042394,14.0009779,50.0041519,14.0010128],[49.9990872,13.9966278,49.9990422,13.9967131,49.9990212,13.9968673,49.9989938,13.9972128,49.9989641,13.9974839,49.9989164,13.9978799,49.9988768,13.9981951,49.998862,13.9983551,49.9987079,13.9984843,49.9986762,13.9984928,49.9986562,13.9984669,49.9985917,13.9983118,49.9985562,13.9981193,49.9985283,13.9980179],[50.0051576,14.0068141,50.0050328,14.0065924,50.0048426,14.0063395,50.0046662,14.0061314,50.0044074,14.0058807,50.0042824,14.0058045,50.004044,14.0057249,50.0039169,14.005624,50.0038185,14.005503,50.0037755,14.0053939,50.0037366,14.0052484,50.0036536,14.004575,50.0036486,14.0040206,50.0036505,14.0038158,50.0037659,14.0033832,50.0037716,14.0031258,50.0037701,14.003033,50.0037842,14.0028112,50.0038462,14.0026325,50.0039917,14.0022873,50.0041259,14.0021137,50.0041671,14.0020369,50.0042123,14.0018443],[49.9974451,13.9984012,49.9976071,13.9986702,49.9977822,13.9990045,49.9978134,13.9991166],[49.9993615,13.9988452,49.9993663,13.998934,49.9994096,13.9992555,49.9994918,13.9996146],[49.9992106,13.9977535,49.9992191,13.9978219,49.9993574,13.9984878,49.9993615,13.9988452],[49.9982775,13.9978306,49.9982457,13.9977178,49.9982188,13.9976073,49.9981964,13.997444,49.9981767,13.997342,49.9981269,13.9971042,49.9981096,13.9970615],[49.9978071,13.9977227,49.9978269,13.9975857,49.9978261,13.9974028,49.997843,13.9973345,49.997875,13.9972808,49.9979668,13.997219,49.998001,13.9972272,49.9980701,13.9972923,49.9981964,13.997444],[49.9990426,14.0021208,49.9990531,14.0021998,49.9990765,14.0023349,49.9991365,14.0024603],[50.002726,14.0027611,50.0027401,14.0025346,50.0034875,14.0017017],[50.0009146,13.9985,50.0008569,13.9985868,50.0006638,13.998975],[50.000894,14.0038131,50.0009214,14.0039886,50.0009075,14.0041105,50.0008967,14.0041851,50.0008715,14.0042468],[49.9999867,13.9916003,49.9993875,13.9946375],[50.0006658,13.9989573,50.0013695,13.9952674,50.0013791,13.9951593,50.0013837,13.9950721,50.0013672,13.9949736,50.0013056,13.9947685,50.0012678,13.994484,50.0012679,13.9941772,50.0012924,13.9939516,50.001352,13.9937235,50.0017432,13.9924571,50.0021895,13.9911365,50.0030288,13.9888375,50.0031984,13.9883708,50.0034218,13.9876812,50.0034622,13.9874579,50.003486,13.9873291,50.0035899,13.9867659,50.0037589,13.9860095,50.0044476,13.9828923,50.0047809,13.9816735,50.0052041,13.9800512,50.0052641,13.979607,50.0052839,13.9791489,50.0052403,13.9784945,50.0050929,13.9779031,50.0050019,13.977625,50.0047364,13.9765056,50.0046386,13.9761691,50.0045638,13.9758353,50.0045017,13.9754256,50.0044607,13.9744777,50.0044188,13.9733141,50.004551,13.9722429,50.0047466,13.9712024,50.0051509,13.9696545,50.0058086,13.9682362,50.0065075,13.9669726,50.0069544,13.9658468,50.0072143,13.9650782,50.0075082,13.9643603,50.0078188,13.9636425,50.0081287,13.9629664,50.0086349,13.9619557,50.0090231,13.9612284,50.009154,13.9609417,50.0096778,13.959897,50.010031,13.9593331,50.010271,13.9589765,50.0108859,13.9584009],[50.0000769,14.002799,50.0001118,14.0026538,50.0003369,14.0026339,50.0003716,14.0027325],[49.9999536,14.0025929,49.999896,14.002582,49.9998312,14.002562],[49.9994287,14.0012585,49.9996366,14.0018256],[49.9996192,14.0020725,49.9996076,14.0020941,49.9996018,14.0021779,49.9996099,14.002238],[49.9998312,14.002562,49.9997373,14.002322,49.9996873,14.0021832],[49.9996873,14.0021832,49.9996709,14.0021449,49.9996377,14.0020839,49.9996192,14.0020725],[49.9996092,14.0018512,49.9995653,14.0018888,49.9995894,14.001971,49.9996192,14.0020725],[49.9996366,14.0018256,49.9996899,14.0019693],[49.9993559,14.0011673,49.9994287,14.0012585],[49.9999696,14.0027115,49.9999536,14.0025929,49.9999494,14.0025452,49.9999665,14.0024905,49.9999878,14.0024683,50.000061,14.0024476,50.0004161,14.0024344,50.0004356,14.0024351,50.0004507,14.0024449,50.0004619,14.0024627,50.0004669,14.0024843],[50.000628,14.0024928,50.0006039,14.0024708,50.000588,14.002466,50.0005718,14.0024703,50.0005563,14.0024783,50.0005449,14.0024959,50.0005112,14.002492,50.0004669,14.0024843],[50.0004155,14.002286,50.0004158,14.002368,50.0004161,14.0024344],[50.0030696,13.9984453,50.0030293,13.9985426,50.0029975,13.9986193,50.0029094,13.9990477,50.0028104,13.999625,50.0027566,14.0000198,50.0027695,14.0002675,50.0027921,14.0005527],[50.0027921,14.0005527,50.002853,14.0001635,50.0028878,13.9999412,50.002947,13.9994309],[50.0003581,14.0022652,50.0003669,14.0022828,50.0003828,14.0022879,50.0004155,14.002286,50.0004727,14.0022883,50.000531,14.0022955,50.0007089,14.0023374,50.0009269,14.0023923,50.0010204,14.0024152,50.0010496,14.0024731],[49.9936861,13.9995022,49.9937896,13.9995653,49.9940422,13.999905,49.9942094,14.000153,49.9944791,14.0002118,49.9946315,14.0007048,49.9948454,14.0007968,49.9952276,14.0007296,49.9954892,14.0006517,49.9957031,14.0008074,49.9960421,14.0012109,49.9964675,14.0015542,49.9965185,14.0016124],[50.004321,14.000464,50.0043407,14.0004914,50.0044408,14.0005885,50.0049895,13.9998742],[49.9998747,14.000811,49.9999947,14.0003935,49.9999779,14.0002018],[50.0008709,14.0019979,50.0005325,14.0019492,50.0005463,14.0021633],[50.0007143,14.0024026,50.0007236,14.0025319,50.0007435,14.0026007,50.0007581,14.0026303,50.0007768,14.0026518,50.0008145,14.0026558,50.0008443,14.0026404,50.000866,14.0026077,50.0008804,14.0025538,50.0009016,14.0024388],[49.999646,14.0019445,49.9996092,14.0018512],[49.9996366,14.0018256,49.9996092,14.0018512],[50.0033708,13.9983121,50.003351,13.998304,50.0033321,13.9982963,50.0033004,13.9982833,50.0032832,13.9982763],[50.0000047,14.0012355,50.0000111,14.0012605,50.0000087,14.0012879,49.9999938,14.0013147,49.9999804,14.0013372,49.9999776,14.0013544,49.9999804,14.0013775,49.9999918,14.0013952,49.9999956,14.0014268,49.9999956,14.0015078,50.0000169,14.0015803,50.0000349,14.0016296,50.0000421,14.001672,50.000024,14.0017034],[49.9996899,14.0019693,49.9998183,14.002267,49.9998581,14.0023327,49.9998926,14.0023561,49.9999103,14.00235,49.9999396,14.0023342,50.000009,14.0023062,50.000075,14.0022899,50.0001557,14.0022827,50.000211,14.002278],[50.0002663,14.0022734,50.0002998,14.0022706,50.0003581,14.0022652],[50.000211,14.002278,50.0002663,14.0022734],[49.9999063,14.0026257,49.9997024,14.0028324,49.999682,14.0028408,49.9996568,14.0028446,49.999637,14.0028343,49.9995547,14.0026662]],"pathwayTypes":[5,5,5,5,3,5,5,5,3,6,6,4,0,5,4,5,3,3,3,3,4,0,3,0,6,0,6,6,3,2,6,2,6,6,6,3,3,4,4,0,3,3,5,3,5,4,4,5,5,2,0,1,6,3,5,5,5,3,3,4,5,5,5,0,3,6,3,6,6,3,3,3,0,3,0,6,6,3,3,3,4,4,2,4,5,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,4,5,0,0,0,0,0,0,4],"areas":[[50.0010112,13.999894,50.000744,13.9998439,50.0007226,13.9999721,50.000727,14.000076,50.0007538,14.000195,50.0007937,14.0002595,50.0008435,14.0002936,50.0009122,14.000277,50.0009644,14.0002193,50.0009941,14.0001238,50.0010068,14.0000555,50.0010112,13.999894]],"areaTypes":[0],"poIs":[50.00071416666666,14.002033849999998,4,50.00285014,13.99991212,4,50.002869687499995,14.00042415,4,50.0030134625,13.999101749999998,4,49.99883071111112,14.001819111111109,7,49.999322333333325,14.002257572222225,3,50.000235599999996,14.002608216666667,4,50.00073472857143,14.002719957142858,4,50.00099971428572,13.998831671428572,4,50.0031177,13.998514216666669,4,50.0002324,14.0028236,4,50.0026695,14.0029779,0,50.0030234,13.9993778,0,50.0008623,14.0019217,6,50.0003647,14.0028616,7,49.9998941,14.0020782,7,49.9998905,14.0027825,7,50.0024305,14.0030475,7,49.9999946,14.0022033,0,49.9999798,14.0026563,7,49.9998093,14.0010834,6,49.9996681,14.0003986,6,50.00001,14.00266,7,49.99977,14.00246,7,50.0004711,14.0066497,6,50.0004706,14.0066172,6,50.0009308,14.0025683,6,49.9997602,14.0027387,7,50.0030444,13.9982462,7]},"playAreaCenter":{"lat":50,"lon":14},"playAreaRadius":500},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:29:13.7363888Z","actor":"0a20923e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"0a20923e","displayName":"Player3","playersReady":1,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:29:13.742216Z","actor":"cd728695","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"cd728695","displayName":"Player2","playersReady":2,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:29:13.7465254Z","actor":"84aec571","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"84aec571","displayName":"Player1","playersReady":3,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:29:13.7493328Z","actor":"6723abc2","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"6723abc2","displayName":"Player4","playersReady":4,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T12:29:13.7520946Z","actor":"5b1bf704","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"5b1bf704","displayName":"Player5","playersReady":5,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T12:29:13.7566519Z","actor":"bf292474","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"bf292474","displayName":"Player6","playersReady":6,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T12:29:13.7625036Z","actor":"84aec571","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T12:29:13.7659996Z","actor":"84aec571","eventType":"RoleAssigned","payload":{"clientUuid":"84aec571","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T12:29:13.7739688Z","actor":"cd728695","eventType":"RoleAssigned","payload":{"clientUuid":"cd728695","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9999798,"lon":14.0026563},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.9996681,"lon":14.0003986},"type":"Progress","durationMs":8093,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0031177,"lon":13.998514216666669},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T12:29:13.7774799Z","actor":"0a20923e","eventType":"RoleAssigned","payload":{"clientUuid":"0a20923e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9999798,"lon":14.0026563},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.9996681,"lon":14.0003986},"type":"Progress","durationMs":8093,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0031177,"lon":13.998514216666669},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T12:29:13.7801955Z","actor":"6723abc2","eventType":"RoleAssigned","payload":{"clientUuid":"6723abc2","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9999798,"lon":14.0026563},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.9996681,"lon":14.0003986},"type":"Progress","durationMs":8093,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0031177,"lon":13.998514216666669},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T12:29:13.7829579Z","actor":"5b1bf704","eventType":"RoleAssigned","payload":{"clientUuid":"5b1bf704","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9999798,"lon":14.0026563},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.9996681,"lon":14.0003986},"type":"Progress","durationMs":8093,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0031177,"lon":13.998514216666669},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T12:29:13.7856145Z","actor":"bf292474","eventType":"RoleAssigned","payload":{"clientUuid":"bf292474","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9999798,"lon":14.0026563},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.9996681,"lon":14.0003986},"type":"Progress","durationMs":8093,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0031177,"lon":13.998514216666669},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T12:29:15.5210933Z","actor":"cd728695","eventType":"TaskCompleted","payload":{"clientUuid":"cd728695","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T12:29:16.0603622Z","actor":"84aec571","eventType":"SabotageStarted","payload":{"sabotageId":"55425d0c","type":"CommsBlackout","initiatorId":"84aec571","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.0000421,"lon":14.001672},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T12:29:19.2287498Z","actor":"cd728695","eventType":"RepairStarted","payload":{"sabotageId":"55425d0c","stationId":"comms_station","playerId":"cd728695"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T12:29:22.2474918Z","actor":"cd728695","eventType":"SabotageRepaired","payload":{"sabotageId":"55425d0c","type":"CommsBlackout","repairerIds":["cd728695"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T12:29:56.3502328Z","actor":"84aec571","eventType":"SabotageStarted","payload":{"sabotageId":"6322d8b0","type":"CriticalMeltdown","initiatorId":"84aec571","deadline":"2026-01-27T12:30:41.3501044Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":49.9981767,"lon":13.997342},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.0040718,"lon":13.9973451},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T12:29:57.9626516Z","actor":"84aec571","eventType":"RepairStarted","payload":{"sabotageId":"6322d8b0","stationId":"reactor_alpha","playerId":"84aec571"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T12:29:57.9660723Z","actor":"cd728695","eventType":"RepairStarted","payload":{"sabotageId":"6322d8b0","stationId":"reactor_beta","playerId":"cd728695"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T12:30:00.9849227Z","actor":"84aec571","eventType":"SabotageRepaired","payload":{"sabotageId":"6322d8b0","type":"CriticalMeltdown","repairerIds":["84aec571","cd728695"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T12:30:07.1410984Z","actor":"84aec571","eventType":"PlayerKilled","payload":{"victimId":"cd728695","killerId":"84aec571","bodyId":"e1159adc","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T12:30:07.7703736Z","actor":"0a20923e","eventType":"BodyReported","payload":{"reporterId":"0a20923e","bodyId":"e1159adc","victimId":"cd728695"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T12:30:07.776235Z","actor":"0a20923e","eventType":"MeetingStarted","payload":{"meetingId":"a0165aeb","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T12:30:11.2759243Z","discussionEndTime":"2026-01-27T12:30:13.7759243Z","votingEndTime":"2026-01-27T12:30:23.7759243Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T12:30:13.8372304Z","actor":"84aec571","eventType":"PlayerVoted","payload":{"voterId":"84aec571","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T12:30:13.9589664Z","actor":"0a20923e","eventType":"PlayerVoted","payload":{"voterId":"0a20923e","targetId":"84aec571"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T12:30:14.0838372Z","actor":"6723abc2","eventType":"PlayerVoted","payload":{"voterId":"6723abc2","targetId":"84aec571"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T12:30:14.2081998Z","actor":"5b1bf704","eventType":"PlayerVoted","payload":{"voterId":"5b1bf704","targetId":"84aec571"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T12:30:14.332122Z","actor":"bf292474","eventType":"PlayerVoted","payload":{"voterId":"bf292474","targetId":"84aec571"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T12:30:23.7891349Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"84aec571":4,"__SKIP__":1},"ejectedPlayerId":"84aec571","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T12:30:23.838261Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"84aec571","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T12:30:23.8430971Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["cd728695","0a20923e","6723abc2","5b1bf704","bf292474"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T12:33:59.2129176Z","actor":"84aec571","eventType":"PlayerLeft","payload":{"clientUuid":"84aec571","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T12:33:59.2346307Z","actor":"cd728695","eventType":"HostChanged","payload":{"newHostId":"cd728695","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":43,"serverSeq":43,"timestamp":"2026-01-27T12:33:59.2406004Z","actor":"cd728695","eventType":"PlayerLeft","payload":{"clientUuid":"cd728695","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":44,"serverSeq":44,"timestamp":"2026-01-27T12:33:59.2453728Z","actor":"0a20923e","eventType":"HostChanged","payload":{"newHostId":"0a20923e","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":45,"serverSeq":45,"timestamp":"2026-01-27T12:33:59.2470771Z","actor":"0a20923e","eventType":"PlayerLeft","payload":{"clientUuid":"0a20923e","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":46,"serverSeq":46,"timestamp":"2026-01-27T12:33:59.2487907Z","actor":"6723abc2","eventType":"HostChanged","payload":{"newHostId":"6723abc2","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":47,"serverSeq":47,"timestamp":"2026-01-27T12:33:59.2504619Z","actor":"6723abc2","eventType":"PlayerLeft","payload":{"clientUuid":"6723abc2","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":48,"serverSeq":48,"timestamp":"2026-01-27T12:33:59.2521479Z","actor":"5b1bf704","eventType":"HostChanged","payload":{"newHostId":"5b1bf704","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":49,"serverSeq":49,"timestamp":"2026-01-27T12:33:59.2538324Z","actor":"5b1bf704","eventType":"PlayerLeft","payload":{"clientUuid":"5b1bf704","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":50,"serverSeq":50,"timestamp":"2026-01-27T12:33:59.2554922Z","actor":"bf292474","eventType":"HostChanged","payload":{"newHostId":"bf292474","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":51,"serverSeq":51,"timestamp":"2026-01-27T12:33:59.2570954Z","actor":"bf292474","eventType":"PlayerLeft","payload":{"clientUuid":"bf292474","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/6772d80dd8a44352_20260127113711/snapshot_12.json b/data/archive/6772d80dd8a44352_20260127113711/snapshot_12.json new file mode 100644 index 0000000..a16568e --- /dev/null +++ b/data/archive/6772d80dd8a44352_20260127113711/snapshot_12.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "6772d80dd8a44352", + "lastEventId": 12, + "timestamp": "2026-01-27T11:37:11.3093918Z", + "checksum": "2c421294fe51e01d08fe09e59f84c8a0c1e73120cb2764eb503b6c24cfb94d8e", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50, + "lon": 14 + }, + "playAreaRadius": 500, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/6772d80dd8a44352_20260127113711/wal_20260127103235.ndjson b/data/archive/6772d80dd8a44352_20260127113711/wal_20260127103235.ndjson new file mode 100644 index 0000000..e8b9c06 --- /dev/null +++ b/data/archive/6772d80dd8a44352_20260127113711/wal_20260127103235.ndjson @@ -0,0 +1,12 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:32:35.377711Z","actor":"902327b6","eventType":"PlayerJoined","payload":{"clientUuid":"902327b6","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:32:35.4002136Z","actor":"39d070de","eventType":"PlayerJoined","payload":{"clientUuid":"39d070de","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T10:32:35.4333104Z","actor":"39d070de","eventType":"PlayerLeft","payload":{"clientUuid":"39d070de","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T10:32:35.7182892Z","actor":"1ed291ad","eventType":"PlayerJoined","payload":{"clientUuid":"1ed291ad","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T10:32:35.7211568Z","actor":"1ed291ad","eventType":"PlayerLeft","payload":{"clientUuid":"1ed291ad","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T10:32:36.0240097Z","actor":"cc3b8f6f","eventType":"PlayerJoined","payload":{"clientUuid":"cc3b8f6f","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T10:32:36.026935Z","actor":"cc3b8f6f","eventType":"PlayerLeft","payload":{"clientUuid":"cc3b8f6f","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T10:32:36.320014Z","actor":"82afaf7e","eventType":"PlayerJoined","payload":{"clientUuid":"82afaf7e","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T10:32:36.32203Z","actor":"82afaf7e","eventType":"PlayerLeft","payload":{"clientUuid":"82afaf7e","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T10:32:36.6243959Z","actor":"f688ed5b","eventType":"PlayerJoined","payload":{"clientUuid":"f688ed5b","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T10:32:36.6265878Z","actor":"f688ed5b","eventType":"PlayerLeft","payload":{"clientUuid":"f688ed5b","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T10:32:43.0420044Z","actor":"902327b6","eventType":"PlayerLeft","payload":{"clientUuid":"902327b6","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/6af233ecf68b4434_20260127134127/snapshot_4.json b/data/archive/6af233ecf68b4434_20260127134127/snapshot_4.json new file mode 100644 index 0000000..1f36e77 --- /dev/null +++ b/data/archive/6af233ecf68b4434_20260127134127/snapshot_4.json @@ -0,0 +1,45 @@ +{ + "lobbyId": "6af233ecf68b4434", + "lastEventId": 4, + "timestamp": "2026-01-27T13:41:27.5355764Z", + "checksum": "a14cbc3f62b3a9d629f3852bc29e2d6e5460d7c7c5db39eae124537a56bc9fd5", + "phase": "Lobby", + "players": [ + { + "clientUuid": "4cda16e3", + "displayName": "SabPlayer", + "position": { + "lat": 50.0875, + "lon": 14.4213 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T12:38:01.2482361Z", + "lastPositionUpdate": "2026-01-27T12:38:01.2482361Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/6af233ecf68b4434_20260127134127/wal_20260127123759.ndjson b/data/archive/6af233ecf68b4434_20260127134127/wal_20260127123759.ndjson new file mode 100644 index 0000000..e3f9b6f --- /dev/null +++ b/data/archive/6af233ecf68b4434_20260127134127/wal_20260127123759.ndjson @@ -0,0 +1,4 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:37:59.1182464Z","actor":"ab1e39b0","eventType":"PlayerJoined","payload":{"clientUuid":"ab1e39b0","displayName":"SabOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:38:01.2933854Z","actor":"4cda16e3","eventType":"PlayerJoined","payload":{"clientUuid":"4cda16e3","displayName":"SabPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:38:06.6874347Z","actor":"ab1e39b0","eventType":"PlayerLeft","payload":{"clientUuid":"ab1e39b0","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:38:06.6897061Z","actor":"4cda16e3","eventType":"HostChanged","payload":{"newHostId":"4cda16e3","previousHostId":"none"},"clientSeq":0,"actionId":null} diff --git a/data/archive/6dba8c0edbe7490d_20260127134127/snapshot_12.json b/data/archive/6dba8c0edbe7490d_20260127134127/snapshot_12.json new file mode 100644 index 0000000..13022fb --- /dev/null +++ b/data/archive/6dba8c0edbe7490d_20260127134127/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "6dba8c0edbe7490d", + "lastEventId": 12, + "timestamp": "2026-01-27T13:41:27.5240463Z", + "checksum": "e006a9e9b5a9473600b72662bb8ee30ed1d8f5896538ca22976917c77ecd88e2", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0877076, + "lon": 14.4241423 + }, + "type": "Progress", + "durationMs": 6709, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.089346660000004, + "lon": 14.42227354 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.087235, + "lon": 14.4177676 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0872447, + "lon": 14.4252718 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.08679, + "lon": 14.4209933 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/6dba8c0edbe7490d_20260127134127/wal_20260127123903.ndjson b/data/archive/6dba8c0edbe7490d_20260127134127/wal_20260127123903.ndjson new file mode 100644 index 0000000..ef550a6 --- /dev/null +++ b/data/archive/6dba8c0edbe7490d_20260127134127/wal_20260127123903.ndjson @@ -0,0 +1,12 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:39:03.362312Z","actor":"bb696ddc","eventType":"PlayerJoined","payload":{"clientUuid":"bb696ddc","displayName":"ConsOwner1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:39:05.526506Z","actor":"d16d09e9","eventType":"PlayerJoined","payload":{"clientUuid":"d16d09e9","displayName":"ConsPlayer1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:39:05.6054619Z","actor":"bb696ddc","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:39:12.5203844Z","actor":"bb696ddc","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:39:12.5501436Z","actor":"bb696ddc","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"bb696ddc","displayName":"ConsOwner1","playersReady":1,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:39:12.5600384Z","actor":"d16d09e9","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"d16d09e9","displayName":"ConsPlayer1","playersReady":2,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:39:12.6011842Z","actor":"bb696ddc","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:39:12.6040713Z","actor":"bb696ddc","eventType":"RoleAssigned","payload":{"clientUuid":"bb696ddc","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:39:12.6067553Z","actor":"d16d09e9","eventType":"RoleAssigned","payload":{"clientUuid":"d16d09e9","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0877076,"lon":14.4241423},"type":"Progress","durationMs":6709,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.089346660000004,"lon":14.42227354},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.087235,"lon":14.4177676},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0872447,"lon":14.4252718},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.08679,"lon":14.4209933},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:39:54.1821713Z","actor":"bb696ddc","eventType":"PlayerLeft","payload":{"clientUuid":"bb696ddc","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:39:54.1924361Z","actor":"d16d09e9","eventType":"HostChanged","payload":{"newHostId":"d16d09e9","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:39:54.2103144Z","actor":"d16d09e9","eventType":"PlayerLeft","payload":{"clientUuid":"d16d09e9","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/74771a6153544040_20260127134127/snapshot_7.json b/data/archive/74771a6153544040_20260127134127/snapshot_7.json new file mode 100644 index 0000000..99ccdb7 --- /dev/null +++ b/data/archive/74771a6153544040_20260127134127/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "74771a6153544040", + "lastEventId": 7, + "timestamp": "2026-01-27T13:41:27.5390519Z", + "checksum": "c4133709107e0aa5b7b36b09e2275c68306c8b0ba9f149dd2a7acc8af4841d72", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/74771a6153544040_20260127134127/wal_20260127123833.ndjson b/data/archive/74771a6153544040_20260127134127/wal_20260127123833.ndjson new file mode 100644 index 0000000..a5e82d2 --- /dev/null +++ b/data/archive/74771a6153544040_20260127134127/wal_20260127123833.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:38:33.6060161Z","actor":"00103643","eventType":"PlayerJoined","payload":{"clientUuid":"00103643","displayName":"ConsOwner0"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:38:35.7661307Z","actor":"5c097c1a","eventType":"PlayerJoined","payload":{"clientUuid":"5c097c1a","displayName":"ConsPlayer0"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:38:35.8459759Z","actor":"00103643","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:38:36.3972301Z","actor":"00103643","eventType":"MapDataError","payload":{"error":"Nepoda\u0159ilo se na\u010D\u00EDst mapov\u00E1 data"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:39:54.1819651Z","actor":"00103643","eventType":"PlayerLeft","payload":{"clientUuid":"00103643","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:39:54.1875009Z","actor":"5c097c1a","eventType":"HostChanged","payload":{"newHostId":"5c097c1a","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:39:54.2075921Z","actor":"5c097c1a","eventType":"PlayerLeft","payload":{"clientUuid":"5c097c1a","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/7da1c15116fc4fbc_20260127133627/snapshot_7.json b/data/archive/7da1c15116fc4fbc_20260127133627/snapshot_7.json new file mode 100644 index 0000000..e576db3 --- /dev/null +++ b/data/archive/7da1c15116fc4fbc_20260127133627/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "7da1c15116fc4fbc", + "lastEventId": 7, + "timestamp": "2026-01-27T13:36:27.528593Z", + "checksum": "4536b2249e71f0a79258b5a3861a0e4868ad592170b159404031f315105966a5", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/7da1c15116fc4fbc_20260127133627/wal_20260127123238.ndjson b/data/archive/7da1c15116fc4fbc_20260127133627/wal_20260127123238.ndjson new file mode 100644 index 0000000..03b493f --- /dev/null +++ b/data/archive/7da1c15116fc4fbc_20260127133627/wal_20260127123238.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:32:38.5842536Z","actor":"fd850a09","eventType":"PlayerJoined","payload":{"clientUuid":"fd850a09","displayName":"ConsOwner0"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:32:40.7322541Z","actor":"7ed01f0f","eventType":"PlayerJoined","payload":{"clientUuid":"7ed01f0f","displayName":"ConsPlayer0"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:32:40.8210035Z","actor":"fd850a09","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:32:41.2976226Z","actor":"fd850a09","eventType":"MapDataError","payload":{"error":"Nepoda\u0159ilo se na\u010D\u00EDst mapov\u00E1 data"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:33:59.2106056Z","actor":"fd850a09","eventType":"PlayerLeft","payload":{"clientUuid":"fd850a09","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:33:59.2125398Z","actor":"7ed01f0f","eventType":"HostChanged","payload":{"newHostId":"7ed01f0f","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:33:59.2326165Z","actor":"7ed01f0f","eventType":"PlayerLeft","payload":{"clientUuid":"7ed01f0f","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/7f234630f0d3470c_20260127134127/snapshot_51.json b/data/archive/7f234630f0d3470c_20260127134127/snapshot_51.json new file mode 100644 index 0000000..4288595 --- /dev/null +++ b/data/archive/7f234630f0d3470c_20260127134127/snapshot_51.json @@ -0,0 +1,52 @@ +{ + "lobbyId": "7f234630f0d3470c", + "lastEventId": 51, + "timestamp": "2026-01-27T13:41:27.5227014Z", + "checksum": "f52e66c8c122229b9ed6b67b4a965540971b421294a9adf54f2295ea6206da80", + "phase": "Ended", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0004706, + "lon": 14.0066172 + }, + "type": "Progress", + "durationMs": 5753, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.0030234, + "lon": 13.9993778 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0030134625, + "lon": 13.999101749999998 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50, + "lon": 14 + }, + "playAreaRadius": 500, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/7f234630f0d3470c_20260127134127/wal_20260127123517.ndjson b/data/archive/7f234630f0d3470c_20260127134127/wal_20260127123517.ndjson new file mode 100644 index 0000000..6837c4c --- /dev/null +++ b/data/archive/7f234630f0d3470c_20260127134127/wal_20260127123517.ndjson @@ -0,0 +1,51 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:35:17.6541428Z","actor":"241c9583","eventType":"PlayerJoined","payload":{"clientUuid":"241c9583","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:35:17.7089577Z","actor":"3c4a4e0c","eventType":"PlayerJoined","payload":{"clientUuid":"3c4a4e0c","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:35:18.0504345Z","actor":"9869e54d","eventType":"PlayerJoined","payload":{"clientUuid":"9869e54d","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:35:18.3269089Z","actor":"102d639a","eventType":"PlayerJoined","payload":{"clientUuid":"102d639a","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:35:18.6601925Z","actor":"9241284e","eventType":"PlayerJoined","payload":{"clientUuid":"9241284e","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:35:18.9698419Z","actor":"b9b2dc29","eventType":"PlayerJoined","payload":{"clientUuid":"b9b2dc29","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:35:19.2505564Z","actor":"241c9583","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:35:22.5212597Z","actor":"241c9583","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50,"lon":14},"radiusMeters":500,"buildings":[[49.9995982,13.9988557,49.9996139,13.9989847,49.9995247,13.999015,49.999559,13.9992526,49.9994732,13.9992804,49.9994004,13.9989207,49.9995982,13.9988557],[50.0030291,14.0032499,50.0029731,14.0032212,50.0029823,14.0031782,50.0030377,14.0032066,50.0030291,14.0032499],[50.002806,14.0021477,50.002748,14.0021207,50.002764,14.0020337,50.002822,14.0020597,50.002806,14.0021477],[50.0002085,14.0062707,50.0001621,14.0062201,50.0001805,14.0061796,50.0001608,14.0061581,50.0002677,14.0059227,50.0003585,14.0060063,50.0002485,14.0062487,50.0002284,14.0062268,50.0002085,14.0062707],[49.999899,14.005295,49.999799,14.005295,49.999799,14.0052505,49.999872,14.0052485,49.999898,14.005245,49.999899,14.005281,49.999899,14.005295],[50.0002725,14.0049187,50.0003091,14.0047966,50.0004265,14.0048825,50.0003904,14.0050026,50.0002725,14.0049187],[50.0025376,14.0038882,50.0025128,14.0040283,50.0024703,14.0040102,50.0024724,14.0039982,50.0024449,14.0039864,50.0024675,14.0038583,50.0025376,14.0038882],[49.999825,14.004864,49.99981,14.004863,49.999766,14.004863,49.999784,14.004678,49.999839,14.004689,49.999825,14.004864],[50.0036755,14.0025612,50.0037485,14.0026096,50.0037346,14.0026601,50.0037497,14.0026702,50.0037394,14.0027077,50.0037243,14.0026977,50.0037166,14.0027253,50.0036438,14.0026771,50.0036755,14.0025612],[49.9988227,14.0036285,49.9988392,14.003592,49.9988846,14.0036412,49.9988967,14.0036143,49.9989384,14.0036595,49.9989263,14.0036865,49.9989579,14.0037206,49.9989262,14.003791,49.9989496,14.0038163,49.998924,14.003873,49.9988748,14.0038196,49.9988637,14.003844,49.9988322,14.0038097,49.9988491,14.0037726,49.998808,14.0037279,49.9988159,14.0037105,49.9988062,14.0036997,49.9988335,14.0036425,49.9988227,14.0036285],[49.9996402,14.0024034,49.9997675,14.002696,49.9996703,14.0027962,49.9995799,14.0025854,49.9995351,14.0026321,49.9994409,14.0024135,49.9995933,14.0022555,49.9996516,14.0023915,49.9996402,14.0024034],[49.9998422,14.0063047,49.9997811,14.0062829,49.9998174,14.0060935,49.9998223,14.0060926,49.9998763,14.0061207,49.9998422,14.0063047],[50.0016226,14.0052186,50.0016915,14.0052447,50.0016703,14.0053854,50.0016425,14.0053754,50.0016477,14.0053406,50.0016065,14.0053256,50.0016226,14.0052186],[50.0022752,14.0026312,50.002178,14.002604,50.002203,14.002429,50.0022976,14.0024533,50.0022752,14.0026312],[49.999809,14.0028468,49.9999025,14.0027879,49.9999897,14.0031336,49.9998853,14.003147,49.999813,14.002865,49.999809,14.0028468],[50.0030396,14.0023877,50.0032625,14.0023218,50.0032735,14.0024267,50.0030525,14.0024922,50.0030396,14.0023877],[49.9981375,14.0057495,49.9980966,14.0057372,49.9981073,14.0056513,49.9981486,14.0056645,49.9981375,14.0057495],[50.0028193,14.002589,50.0028035,14.0025638,50.0027936,14.0025779,50.0027726,14.0025426,50.00281,14.0024951,50.0028457,14.0025492,50.0028193,14.002589],[50.003142,14.0042086,50.0030918,14.0041832,50.0030999,14.0041447,50.0030873,14.0041203,50.0030943,14.0040875,50.0031123,14.0040864,50.0031186,14.0040563,50.0031876,14.0040913,50.0031666,14.0041909,50.0031477,14.0041814,50.003142,14.0042086],[49.999281,14.0016022,49.9991701,14.0013284,49.9992571,14.0012409,49.9993678,14.0015148,49.999281,14.0016022],[50.0017765,14.004599,50.001802,14.0044812,50.0018347,14.0044983,50.0018146,14.0045687,50.0018019,14.0046127,50.0017765,14.004599],[50.0026585,14.0033609,50.0026256,14.0035217,50.0025431,14.003481,50.0025559,14.003418,50.0025437,14.003412,50.0025638,14.0033142,50.0026585,14.0033609],[49.9998956,14.0042403,49.9998972,14.0043541,49.9999263,14.0043558,49.9999258,14.0044366,49.999827,14.0044362,49.9998352,14.004252,49.9998956,14.0042403],[50.0026136,14.0051481,50.0025786,14.0052733,50.0025303,14.0052408,50.0025355,14.005222,50.002506,14.0052019,50.0025359,14.0050961,50.0026136,14.0051481],[50.000048,14.004866,49.999966,14.004854,49.999978,14.004686,50.00006,14.004698,50.000048,14.004866],[50.0024131,14.004281,50.0024434,14.0041361,50.0025255,14.0041767,50.0024965,14.0043225,50.0024131,14.004281],[50.0029989,14.0046288,50.0030108,14.0046356,50.0030018,14.0046737,50.0029899,14.0046669,50.0029704,14.0047497,50.0028937,14.0047063,50.0029276,14.0045618,50.0030044,14.0046053,50.0029989,14.0046288],[50.0021764,14.0053793,50.0022256,14.0054025,50.0022224,14.0054187,50.002262,14.0054374,50.0022466,14.0055161,50.002207,14.0054974,50.0022039,14.0055136,50.0021547,14.0054904,50.0021764,14.0053793],[50.0021019,14.0057844,50.0021246,14.0056611,50.0021763,14.0056837,50.0021734,14.0056999,50.0022107,14.0057161,50.0021971,14.0057912,50.0021605,14.0057755,50.0021548,14.0058072,50.0021019,14.0057844],[49.9998475,14.0059393,49.99985,14.0058676,49.9999031,14.0058703,49.9999218,14.0059026,49.999921,14.0059438,49.9998475,14.0059393],[50.0004046,14.0030002,50.000309,14.003016,50.000299,14.002893,50.000348,14.002883,50.0003536,14.0029477,50.000399,14.00294,50.0004046,14.0030002],[50.0038795,14.0032397,50.0038253,14.0032326,50.0038292,14.0031617,50.0038833,14.0031688,50.0038795,14.0032397],[50.0025182,14.0047938,50.0025905,14.0048459,50.0025582,14.0049531,50.002486,14.004901,50.0025182,14.0047938],[50.0023577,14.0058221,50.002424,14.0058799,50.0023977,14.0059524,50.0023883,14.0059442,50.0023705,14.0059936,50.0023228,14.005952,50.0023407,14.0059027,50.0023314,14.0058946,50.0023577,14.0058221],[50.0038795,14.0032397,50.0038756,14.0033106,50.0038214,14.0033035,50.0038253,14.0032326,50.0038795,14.0032397],[50.0033082,14.0042516,50.0033379,14.0041191,50.003341,14.0041207,50.0033454,14.004101,50.003372,14.0041155,50.0033846,14.0040586,50.0034775,14.0041088,50.0034651,14.004164,50.0034064,14.004132,50.0034016,14.0041529,50.0034153,14.0041604,50.0033852,14.0042932,50.0033082,14.0042516],[49.9998422,14.0063047,49.9998231,14.0064172,49.9997598,14.0063935,49.9997811,14.0062829,49.9998422,14.0063047],[50.0005518,14.0027695,50.0005668,14.0029724,50.0004046,14.0030002,50.0004012,14.0029547,50.0004462,14.0029477,50.000445,14.0029318,50.0004349,14.00279,50.0005518,14.0027695],[49.99993,14.0053745,49.999899,14.005371,49.999899,14.005295,49.999899,14.005281,49.999933,14.005281,49.99993,14.0053745],[50.00017,14.004985,50.000135,14.004981,50.000135,14.004886,50.000166,14.004881,50.00017,14.004985],[50.0021187,14.0042587,50.0021147,14.0042775,50.0020878,14.0042639,50.0020917,14.0042453,50.0020662,14.0042323,50.0020968,14.0040859,50.0021199,14.0040975,50.0021261,14.0040675,50.0021612,14.0040851,50.0021549,14.0041151,50.00217,14.0041226,50.0021668,14.0041378,50.0021793,14.0041441,50.0021517,14.0042755,50.0021187,14.0042587],[50.0032342,14.0032132,50.0033435,14.0032743,50.0033011,14.0034554,50.003192,14.0033951,50.0032342,14.0032132],[50.0021489,14.0030901,50.0021626,14.0029766,50.0022268,14.0029943,50.0022408,14.0030268,50.0022151,14.0032464,50.0021334,14.0032233,50.0021444,14.0031306,50.0021369,14.0031283,50.0021416,14.0030882,50.0021489,14.0030901],[49.9998746,14.0053593,49.9998743,14.0058198,49.9997439,14.0058183,49.999744,14.0056595,49.9997688,14.0056596,49.9997689,14.0056164,49.9998103,14.0056165,49.9998104,14.0053592,49.9998746,14.0053593],[50.0022087,14.0026653,50.002346,14.0027086,50.0023343,14.0028031,50.0021943,14.002759,50.0022087,14.0026653],[50.0031321,14.0044273,50.0031208,14.0044753,50.0030609,14.0044417,50.0030479,14.0044973,50.0029634,14.0044499,50.0029876,14.0043461,50.0031321,14.0044273],[50.0023667,14.0055598,50.0024085,14.0055984,50.0023971,14.0056282,50.0024175,14.0056469,50.0023926,14.0057116,50.0023124,14.0056374,50.0023371,14.0055733,50.0023552,14.00559,50.0023667,14.0055598],[50.0029304,14.0034397,50.0029394,14.0033949,50.0029945,14.0034217,50.0029854,14.0034665,50.0029304,14.0034397],[50.0021363,14.0059144,50.0020819,14.0058922,50.0020927,14.0058297,50.002147,14.0058547,50.0021363,14.0059144],[50.0023559,14.0019577,50.002403,14.0019807,50.0023953,14.0020185,50.0023482,14.0019953,50.0023559,14.0019577],[50.0002165,14.002022,50.000237,14.0019317,50.0002783,14.0019529,50.0002673,14.0019991,50.0002565,14.0020441,50.0002165,14.002022],[50.0031422,14.0036097,50.003251,14.0036714,50.0032086,14.0038522,50.0030998,14.0037913,50.0031422,14.0036097],[50.0029523,14.0020308,50.0029805,14.0015162,50.003049,14.0015254,50.0030209,14.0020398,50.0029523,14.0020308],[50.0020056,14.0036438,50.0020158,14.0035866,50.0020871,14.0036205,50.0020795,14.0036551,50.0020716,14.0036512,50.0020627,14.0036947,50.0020544,14.0036909,50.0020485,14.0037213,50.002001,14.0036985,50.0020113,14.0036465,50.0020056,14.0036438],[50.0002759,14.0050389,50.0003652,14.0050889,50.0003508,14.0051509,50.0003214,14.0051344,50.0003173,14.0051538,50.0002577,14.0051204,50.0002759,14.0050389],[50.0033549,14.0022199,50.0031945,14.0022171,50.0031956,14.0020711,50.0032814,14.0020726,50.0032811,14.0021067,50.0033571,14.0021081,50.0033587,14.0018791,50.0035439,14.0018825,50.0035423,14.0021023,50.0034042,14.0020999,50.0034036,14.0021885,50.0033551,14.0021876,50.0033549,14.0022199],[50.0030377,14.0032066,50.0029823,14.0031782,50.0029915,14.0031351,50.0030463,14.0031633,50.0030377,14.0032066],[49.9999135,14.0048762,49.9999185,14.0048821,49.9999162,14.0049173,49.9998525,14.0049198,49.9998512,14.0048383,49.9998966,14.0048361,49.9999135,14.0048762],[50.003012,14.0033352,50.0030033,14.0033784,50.0029482,14.0033516,50.0029569,14.0033084,50.003012,14.0033352],[49.9984387,14.006532,49.9984509,14.006454,49.9984873,14.0064666,49.9984754,14.0065473,49.9984387,14.006532],[49.9999896,14.0019357,50.0000375,14.0020321,50.0000627,14.002002,50.0000952,14.0020674,50.0000676,14.002101,50.0000829,14.0021314,49.9999063,14.0023472,49.999814,14.0021634,49.9999896,14.0019357],[50.0027611,14.0053662,50.0027568,14.0053821,50.0027263,14.0053622,50.0027306,14.0053463,50.0027116,14.0053339,50.0027141,14.0053245,50.0027018,14.0053165,50.0027171,14.0052601,50.0027294,14.0052681,50.0027418,14.0052221,50.0027768,14.0052449,50.0027745,14.0052534,50.00282,14.0052832,50.0028157,14.005299,50.0027921,14.0053863,50.0027611,14.0053662],[50.0035249,14.0022892,50.0035316,14.0023745,50.003323,14.0024141,50.0033141,14.0023292,50.0035249,14.0022892],[49.9999976,14.0052821,49.9999968,14.0053054,50.0000809,14.0053129,50.0000781,14.0053872,49.9999701,14.005378,49.9999737,14.0052799,49.9999976,14.0052821],[50.0024904,14.003704,50.0024965,14.0037068,50.0025101,14.0036367,50.0025896,14.0036738,50.0025592,14.0038299,50.0025103,14.0038071,50.0025141,14.0037878,50.0024775,14.0037707,50.0024904,14.003704],[50.0030007,14.0030922,50.0030549,14.00312,50.0030463,14.0031633,50.0029915,14.0031351,50.0030007,14.0030922],[49.9997787,14.001727,49.9998311,14.0018469,49.9997727,14.0018964,49.999728,14.0017795,49.9996577,14.0018415,49.9995709,14.001611,49.999709,14.001484,49.9997595,14.0016206,49.9997238,14.0016521,49.999732,14.0016501,49.9997394,14.0016572,49.9997706,14.0017352,49.9997787,14.001727],[50.0023319,14.0046916,50.0023584,14.0045522,50.0024411,14.0045901,50.0024285,14.0046563,50.0024547,14.0046682,50.0024408,14.0047415,50.0024127,14.0047286,50.0024085,14.0047509,50.0023575,14.0047276,50.0023617,14.0047053,50.0023319,14.0046916],[50.0000742,14.0068532,50.0000849,14.006777,50.0002268,14.0068246,50.0002156,14.0069056,50.0001899,14.0069188,50.0001825,14.0068834,50.0001352,14.0068671,50.0001392,14.0068372,50.0001206,14.0068312,50.0001163,14.0068603,50.0001139,14.0068594,50.0001128,14.006867,50.0000742,14.0068532],[49.999796,14.003733,49.999744,14.003541,49.99978,14.003516,49.999791,14.003549,49.99994,14.003431,49.9999907,14.0035527,49.999999,14.003593,49.999796,14.003733],[49.9998348,14.0070019,49.9998548,14.0068631,50.0000508,14.0069388,50.0000347,14.0070653,49.9998348,14.0070019],[50.0029657,14.0032651,50.0029731,14.0032212,50.0030291,14.0032499,50.0030208,14.0032918,50.0029657,14.0032651],[50.0003434,14.0028059,50.0004349,14.00279,50.000445,14.0029318,50.000399,14.00294,50.0003536,14.0029477,50.000348,14.002883,50.0003434,14.0028059],[50.0038558,14.0025727,50.0038334,14.0026341,50.003772,14.0025936,50.0037896,14.0025291,50.0038558,14.0025727],[49.9983043,14.0046921,49.9982391,14.0046849,49.9982416,14.0046073,49.9983059,14.0046111,49.9983043,14.0046921],[50.0024204,14.0021684,50.0024103,14.0022574,50.0023962,14.0022535,50.0023878,14.0023266,50.0022932,14.0023007,50.0023016,14.0022278,50.0022831,14.0022227,50.0022933,14.0021337,50.0023142,14.0021394,50.0023179,14.0021072,50.0024025,14.0021302,50.0023988,14.0021625,50.0024204,14.0021684],[50.0018852,14.0058154,50.0019104,14.005825,50.0018963,14.005912,50.0018713,14.0059023,50.0018852,14.0058154],[49.9997165,14.0034574,49.9997228,14.0034791,49.9996893,14.0035031,49.9996829,14.0034814,49.9996324,14.0035174,49.9996035,14.0034269,49.999765,14.0032998,49.9997964,14.0034005,49.9997165,14.0034574],[50.0032948,14.0047884,50.0032745,14.0049024,50.0032666,14.0048991,50.0032596,14.0049381,50.0032097,14.0049167,50.0032167,14.0048776,50.0032067,14.0048734,50.0032271,14.0047592,50.0032948,14.0047884],[49.999872,14.0052485,49.999799,14.0052505,49.9998,14.005171,49.999873,14.00517,49.999872,14.0052485],[49.998496,14.0052224,49.9983907,14.0052185,49.9983938,14.0051093,49.9984974,14.0051148,49.998496,14.0052224],[50.002826,14.00541,50.002851,14.00532,50.0028157,14.005299,50.0027921,14.0053863,50.002826,14.00541],[50.0036617,14.002026,50.0037212,14.0020337,50.0037126,14.0021925,50.0036531,14.0021847,50.0036617,14.002026],[50.0038208,14.0034987,50.0038493,14.0033942,50.0039433,14.0034559,50.0039279,14.0035122,50.0039147,14.0035034,50.0039015,14.0035516,50.0038208,14.0034987],[50.0001254,14.004246,50.0001338,14.0043788,50.0000727,14.0043889,50.0000636,14.0042562,50.0001254,14.004246],[50.0029931,14.0027045,50.0030356,14.0029272,50.0028083,14.0030094,50.0028044,14.0029835,50.0027336,14.0030093,50.0027033,14.0031449,50.0026117,14.0031065,50.00267,14.0028559,50.0029931,14.0027045],[50.0021603,14.0059731,50.0021448,14.0060567,50.0021102,14.0060413,50.0021069,14.0060594,50.0020574,14.0060373,50.0020801,14.0059152,50.0021295,14.0059374,50.0021257,14.0059577,50.0021603,14.0059731],[49.9980185,14.0054444,49.9980145,14.00534,49.9980607,14.0053357,49.9980647,14.0054402,49.9980185,14.0054444],[49.9993364,14.0037512,49.9993797,14.0037769,49.9993734,14.0038021,49.9994105,14.0038243,49.999384,14.0039307,49.9992414,14.0038453,49.9992678,14.0037391,49.9993302,14.0037765,49.9993364,14.0037512],[49.9991521,14.0024795,49.9991829,14.0025391,49.9991343,14.0026021,49.9991031,14.0025451,49.9991521,14.0024795],[50.003733,14.00333,50.0036913,14.0033075,50.0036995,14.0032705,50.0036765,14.0032581,50.0036944,14.0031785,50.0037218,14.0031933,50.0037151,14.0032232,50.0037174,14.0032246,50.003716,14.0032305,50.0037511,14.0032492,50.003733,14.00333],[49.9994059,14.0022412,49.9993361,14.0023177,49.9993043,14.0022476,49.9993736,14.0021726,49.9993133,14.0020448,49.9992417,14.0021375,49.9991666,14.001991,49.9993373,14.0017644,49.9993929,14.0018713,49.9994456,14.0019819,49.9994876,14.0019318,49.9995666,14.002085,49.9994184,14.0022628,49.9994059,14.0022412],[50.000006,14.00499,49.999911,14.004978,49.9999162,14.0049173,49.9999185,14.0048821,50.000015,14.004891,50.000006,14.00499],[49.99988,14.003285,49.999791,14.003253,49.9998,14.003189,49.999889,14.003223,49.99988,14.003285],[49.9997173,14.0066379,49.9997418,14.0064334,49.9998164,14.0064572,49.999803,14.0066433,49.9997173,14.0066379],[50.0030033,14.0033784,50.0029945,14.0034217,50.0029394,14.0033949,50.0029482,14.0033516,50.0030033,14.0033784],[50.0001719,14.0033403,50.0001793,14.003404,50.0001659,14.0034077,50.0001806,14.0035345,50.0001239,14.0035503,50.0000982,14.0033654,50.0001719,14.0033403],[50.0028722,14.0049376,50.0029498,14.0050098,50.0028965,14.0051472,50.0028068,14.0050636,50.0028389,14.0049805,50.0028512,14.004992,50.0028722,14.0049376],[50.0035615,14.0037886,50.0035872,14.0038038,50.0035704,14.0038723,50.0035448,14.0038572,50.0035615,14.0037886],[50.0023691,14.0044474,50.0023805,14.0043819,50.002386,14.0043842,50.0023949,14.0043334,50.00245,14.0043568,50.0024207,14.0045239,50.0023655,14.0045005,50.0023745,14.0044497,50.0023691,14.0044474],[50.0000341,14.0049623,50.0001719,14.0049994,50.0001431,14.005262,50.0000058,14.0052277,50.0000341,14.0049623],[49.9988616,14.0013829,49.9989582,14.0015292,49.9989194,14.001591,49.9989374,14.0016183,49.9989661,14.0015727,49.9990807,14.0017463,49.9990025,14.0018705,49.9988897,14.001699,49.9988642,14.0017395,49.9989039,14.0017997,49.9988089,14.0019509,49.9987284,14.001829,49.9988162,14.0016896,49.9988291,14.001709,49.9988718,14.0016411,49.9987834,14.0015072,49.9988616,14.0013829],[49.9997105,14.0060476,49.9997176,14.0059104,49.9997724,14.0059144,49.9997737,14.0058603,49.99985,14.0058676,49.9998475,14.0059393,49.9998435,14.0060607,49.9998251,14.0060615,49.9997105,14.0060476],[49.9995106,14.0011178,49.9995464,14.0012241,49.999575,14.0012008,49.9995888,14.0012419,49.9996193,14.001217,49.9996378,14.0012717,49.9995702,14.0013356,49.9996273,14.0014927,49.9995536,14.0015621,49.99938,14.0010714,49.9994234,14.0010363,49.9994637,14.0011558,49.9995106,14.0011178],[50.0025741,14.0057461,50.002563,14.0057759,50.002581,14.0057919,50.0025568,14.0058572,50.0024818,14.0057901,50.002506,14.0057249,50.002527,14.0057437,50.0025382,14.0057139,50.0025741,14.0057461],[49.9990579,14.002951,49.9990108,14.0029159,49.9990348,14.0028388,49.9989193,14.0027527,49.998935,14.0027024,49.998894,14.0026718,49.9989025,14.0026471,49.9989808,14.0026507,49.9991191,14.0027539,49.9990579,14.002951],[50.0020179,14.0062313,50.0020418,14.0061123,50.0020939,14.0061375,50.0020915,14.0061492,50.0021249,14.0061654,50.0021133,14.0062234,50.0021118,14.0062227,50.0021084,14.0062476,50.0020751,14.0062315,50.00207,14.0062565,50.0020179,14.0062313],[49.9989047,14.0025267,49.9988968,14.0025405,49.9988837,14.0025257,49.9988923,14.0025094,49.9988583,14.002463,49.998937,14.0023056,49.999017,14.002418,49.9989327,14.0025648,49.9989047,14.0025267],[50.0000796,14.003715,50.0001045,14.0039789,49.9999785,14.0040069,49.9999556,14.0037535,50.0000796,14.003715],[49.9995622,14.0039036,49.9995981,14.00382,49.9997173,14.0039351,49.9996834,14.0040165,49.9995622,14.0039036],[50.0030208,14.0032918,50.003012,14.0033352,50.0029569,14.0033084,50.0029657,14.0032651,50.0030208,14.0032918],[50.0001661,14.0047996,50.0001082,14.0048097,50.0001042,14.0047576,50.0000997,14.0047576,50.0000861,14.0045795,50.0001492,14.0045693,50.0001643,14.0047458,50.0001661,14.0047996],[50.0000082,14.0025378,50.0000118,14.002625,49.9999768,14.0026307,49.9999711,14.0025428,50.0000082,14.0025378],[50.002095,14.0035466,50.0021133,14.0034877,50.0021377,14.0035059,50.0021194,14.0035649,50.002095,14.0035466],[50.0020444,14.004814,50.0020388,14.0048892,50.0019577,14.0048745,50.0019637,14.0047996,50.0020444,14.004814],[50.0022752,14.0026312,50.0022976,14.0024533,50.0024379,14.0024913,50.0024255,14.0026732,50.0022752,14.0026312],[50.0040237,14.0030839,50.0040413,14.0030187,50.0040931,14.0030521,50.0040755,14.0031175,50.0040237,14.0030839],[50.0000326,14.003336,50.0000645,14.0035314,49.9999907,14.0035527,49.9999646,14.0033575,50.0000326,14.003336],[50.0004206,14.0051081,50.0005078,14.0051664,50.0004939,14.0052163,50.0004049,14.0051652,50.0004206,14.0051081],[49.9980347,14.005094,49.9980308,14.0051558,49.9979973,14.005149,49.998002,14.005089,49.9980347,14.005094],[49.9984221,14.000129,49.9984505,14.0002445,49.9984419,14.0002497,49.9984577,14.0003135,49.9983708,14.000365,49.998355,14.0003002,49.9983838,14.0002828,49.9983556,14.0001685,49.9984221,14.000129],[49.9987509,13.9981882,49.9987038,13.9981859,49.9987064,13.9980509,49.9987536,13.9980531,49.9987509,13.9981882],[49.9987704,13.995411,49.9986234,13.9954568,49.9986074,13.9953329,49.9987929,13.9952753,49.9987988,13.9953214,49.9987603,13.9953332,49.9987704,13.995411],[50.0040856,13.9999091,50.0040585,14.0001404,50.0040172,14.0001286,50.0040174,14.0001273,50.0040019,14.0001225,50.0040188,13.9999953,50.0040013,13.9999897,50.0040149,13.9998866,50.0040856,13.9999091],[50.0041044,14.0011678,50.0041065,14.0012235,50.0040399,14.0012296,50.0040378,14.0011738,50.0041044,14.0011678],[50.0035051,13.9964781,50.0034033,13.9970095,50.0033043,13.9969637,50.0034055,13.9964322,50.0035051,13.9964781],[50.0041024,14.0011121,50.0041044,14.0011678,50.0040378,14.0011738,50.0040358,14.0011182,50.0041024,14.0011121],[49.9971776,13.9962706,49.9971297,13.9963449,49.9970421,13.9962121,49.9970868,13.9961384,49.9971776,13.9962706],[49.9980364,13.9966922,49.9980769,13.9966498,49.9981478,13.9968252,49.9981116,13.9968647,49.9980868,13.9968078,49.9980697,13.9968256,49.9980635,13.996811,49.9980485,13.9968266,49.9980163,13.9967525,49.9980312,13.996737,49.9980246,13.9967219,49.9980417,13.9967041,49.9980364,13.9966922],[49.9969325,13.9959332,49.996948,13.9959155,49.9970246,13.9960467,49.9969846,13.9961064,49.9968856,13.9959231,49.9969065,13.9958884,49.9969325,13.9959332],[49.9979819,14.000558,49.9979733,14.0005615,49.9979808,14.0006126,49.9979418,14.0006271,49.9979287,14.0005794,49.9979119,14.0003792,49.9979694,14.0003651,49.9979819,14.000558],[49.9980491,13.9979692,49.9980793,13.9979576,49.9980952,13.9980522,49.998086,13.9980558,49.9980932,13.9980985,49.9979989,13.9981359,49.9979699,13.9979439,49.9980124,13.9979274,49.9980369,13.9979321,49.9980394,13.9979478,49.9980455,13.9979456,49.9980491,13.9979692],[50.0023249,14.001661,50.0023235,14.0016222,50.0023686,14.001618,50.0023699,14.0016564,50.002386,14.0016558,50.0023919,14.0018097,50.0023874,14.0018102,50.0023884,14.0018404,50.0023381,14.0018462,50.0023367,14.0018148,50.0023151,14.0018168,50.0023147,14.0018056,50.0023048,14.0018068,50.0023004,14.001678,50.0023098,14.0016776,50.0023092,14.0016624,50.0023249,14.001661],[49.9979029,14.0013244,49.997896,14.0015071,49.9978311,14.0015011,49.9978354,14.001384,49.9978167,14.0013823,49.9978191,14.0013166,49.9979029,14.0013244],[49.9988207,13.9999422,49.9989001,13.9998837,49.9989492,14.0000561,49.998875,14.0001126,49.9988207,13.9999422],[49.9998238,13.9977942,49.9999325,13.9978198,49.9999168,13.9979798,49.9998272,13.9979587,49.9998335,13.9978942,49.9998145,13.9978897,49.9998238,13.9977942],[49.9992389,13.9981081,49.9993022,13.9984984,49.9991842,13.9985521,49.9991134,13.9981681,49.9992389,13.9981081],[49.9968993,13.9967579,49.9969557,13.99684,49.9969182,13.9969021,49.9968619,13.99682,49.9968993,13.9967579],[50.0031638,13.9971067,50.0031495,13.997158,50.0031,13.9971246,50.0031143,13.9970733,50.0031638,13.9971067],[49.9990744,14.0004157,49.999116,14.0005593,49.9990576,14.0006003,49.9990152,14.0004619,49.9990744,14.0004157],[50.0029197,13.9978451,50.0029397,13.9977673,50.0029815,13.9977933,50.0029612,13.9978718,50.0029197,13.9978451],[49.9982475,13.999441,49.9982856,13.9995627,49.9982125,13.9996191,49.9981734,13.9994969,49.9982475,13.999441],[49.9985706,13.9967499,49.9985426,13.9966622,49.9985827,13.9966313,49.9986159,13.9967355,49.9985897,13.9967557,49.9985845,13.9967392,49.9985706,13.9967499],[49.9976033,13.9982162,49.9975541,13.9982607,49.9975398,13.9982234,49.9975895,13.9981785,49.9976033,13.9982162],[49.9978875,13.9986978,49.9979339,13.998671,49.9979287,13.9986493,49.9979531,13.9986353,49.9979583,13.9986568,49.9980121,13.9986256,49.9980285,13.9986941,49.9980419,13.9986862,49.9980593,13.9987584,49.998047,13.9987655,49.9980613,13.9988245,49.997994,13.9988636,49.9979612,13.9987272,49.9979028,13.9987612,49.9978875,13.9986978],[49.9981748,14.0016393,49.9981386,14.0015463,49.998236,14.001456,49.9983106,14.0016459,49.9982412,14.0017161,49.9981986,14.0016165,49.9981748,14.0016393],[49.9982996,13.9978022,49.9982377,13.9975762,49.9982839,13.9975449,49.998349,13.997758,49.9982996,13.9978022],[50.004017,14.0008261,50.0040005,14.000777,50.0040521,14.0007357,50.0040685,14.0007851,50.004017,14.0008261],[50.0040982,14.0010007,50.0041002,14.0010565,50.0040337,14.0010626,50.0040315,14.0010067,50.0040982,14.0010007],[50.0043852,13.999732,50.0043802,13.9997837,50.004322,13.99977,50.004327,13.9997183,50.0043852,13.999732],[50.0001166,13.9971706,50.0001139,13.9971938,50.0000841,13.9971854,50.0000884,13.9971483,50.0000367,13.9971337,50.0000555,13.9969862,50.0000856,13.9969935,50.0000885,13.9969675,50.0001712,13.9969906,50.0001685,13.9970135,50.000199,13.9970209,50.0001809,13.9971872,50.0001166,13.9971706],[50.0030289,13.9973812,50.0030426,13.9973297,50.0030921,13.9973631,50.0030778,13.9974142,50.0030289,13.9973812],[50.0044147,13.9986719,50.0044121,13.9986962,50.0043762,13.9986868,50.0043788,13.9986626,50.0043586,13.9986574,50.0043731,13.9985224,50.0044595,13.9985447,50.004445,13.9986797,50.0044147,13.9986719],[50.0028846,13.9980739,50.0028899,13.9980531,50.0028832,13.9980489,50.0029136,13.9979283,50.0029908,13.9979748,50.0029598,13.9980959,50.0029462,13.9980875,50.0029408,13.9981086,50.0028846,13.9980739],[49.9989935,14.0004563,49.9989419,14.0003142,49.9989973,14.0002603,49.9990134,14.0002446,49.9990635,14.0003975,49.9989935,14.0004563],[49.997309,13.998451,49.997319,13.998475,49.997291,13.998503,49.997299,13.998521,49.99728,13.99854,49.997226,13.998413,49.9972835,13.9983525,49.9973062,13.9983304,49.997319,13.998364,49.997328,13.998355,49.997339,13.998379,49.997329,13.998389,49.997341,13.998419,49.997309,13.998451],[49.9985329,13.994575,49.998473,13.994575,49.998473,13.994521,49.9985328,13.994522,49.9985329,13.994575],[49.9991798,14.0001766,49.9991049,14.0002388,49.999038,14.0000492,49.9991133,13.9999874,49.9991798,14.0001766],[49.9980478,13.9970577,49.9980703,13.9970348,49.9980836,13.9970651,49.9980809,13.9970678,49.9981203,13.9971581,49.9980924,13.9971873,49.9980804,13.9971595,49.9980214,13.9972214,49.9979925,13.9971552,49.9980271,13.9971188,49.9980117,13.9970834,49.998044,13.9970497,49.9980478,13.9970577],[50.0034016,13.9961165,50.0034691,13.9961625,50.0034181,13.9963431,50.0033792,13.9963164,50.0033861,13.9962916,50.0033575,13.9962719,50.0034016,13.9961165],[50.0041002,14.0010565,50.0041024,14.0011121,50.0040358,14.0011182,50.0040337,14.0010626,50.0041002,14.0010565],[49.998535,13.9997582,49.9986312,13.9999284,49.9985741,14.0000021,49.9984795,13.9998321,49.998535,13.9997582],[50.004213,13.997789,50.00413,13.997779,50.004145,13.997506,50.004191,13.997511,50.004228,13.997515,50.004213,13.997789],[49.9974004,13.9969382,49.9973246,13.9968034,49.9974566,13.996553,49.9975096,13.9966195,49.9975465,13.9966749,49.9975104,13.9967399,49.9974004,13.9969382],[49.9980128,13.9982213,49.9981155,13.9981804,49.9981028,13.998095,49.9980932,13.9980985,49.9979989,13.9981359,49.9980128,13.9982213],[50.0025801,14.0011936,50.0025678,14.0013315,50.0025302,14.0013235,50.0025299,14.0013263,50.0025054,14.001321,50.0025066,14.0013073,50.0024749,14.0013006,50.0024871,14.001173,50.0025801,14.0011936],[49.9996548,13.998191,49.9997084,13.9981819,49.9997123,13.9982374,49.9996586,13.9982464,49.9996548,13.998191],[50.0030856,13.9971758,50.0031,13.9971246,50.0031495,13.997158,50.0031351,13.9972092,50.0030856,13.9971758],[50.0025441,14.0004177,50.0025358,14.0004164,50.0025382,14.0003757,50.0025464,14.000377,50.002551,14.0002989,50.0026168,14.0003082,50.0026134,14.0003656,50.0026218,14.0003668,50.0026199,14.0004004,50.0026113,14.0003992,50.0026064,14.0004823,50.0025408,14.0004731,50.0025441,14.0004177],[49.9982708,14.0010027,49.998295,14.0010678,49.9982756,14.0010848,49.9982836,14.001107,49.9982272,14.0011556,49.9981824,14.0010304,49.998238,14.0009821,49.9982517,14.0010197,49.9982708,14.0010027],[49.9986224,13.9979389,49.9986208,13.9980238,49.9985606,13.99802,49.9985621,13.9979351,49.9986224,13.9979389],[50.0039917,13.9989065,50.004014,13.9989117,50.0040027,13.9990304,50.003946,13.9990173,50.0039403,13.9990762,50.0038647,13.9990587,50.003871,13.9989924,50.0038485,13.9989873,50.0038573,13.9988964,50.0038123,13.998886,50.0038181,13.9988251,50.0038391,13.99883,50.003847,13.9987468,50.0038306,13.998743,50.0038378,13.9986676,50.0039058,13.9986834,50.0039021,13.998722,50.0039774,13.9987393,50.0039792,13.9987196,50.0040036,13.9987252,50.0040017,13.9987449,50.0040071,13.9987463,50.0039917,13.9989065],[49.9985492,14.0009187,49.998606,14.0008352,49.9986509,14.0009054,49.9985932,14.0009906,49.9985492,14.0009187],[50.0039837,14.0007274,50.0040358,14.0006865,50.0040521,14.0007357,50.0040005,14.000777,50.0039837,14.0007274],[50.0032642,13.9981801,50.0032195,13.9984248,50.0031495,13.9983947,50.0031944,13.9981511,50.0032642,13.9981801],[49.9966015,13.9957863,49.9965214,13.9959239,49.9964906,13.9958808,49.9965685,13.99574,49.9966015,13.9957863],[49.9977263,13.999427,49.9976454,13.9994724,49.997632,13.9994206,49.9976426,13.9994141,49.9976243,13.9993427,49.997639,13.9993336,49.9976272,13.9992878,49.9976873,13.9992554,49.9977263,13.999427],[50.0036002,14.0000161,50.0034691,14.0006512,50.0034027,14.0006183,50.0034956,14.0001676,50.0035396,14.0001893,50.0035614,14.0000839,50.0035256,14.0000661,50.0035419,13.999987,50.0036002,14.0000161],[49.9985585,13.9992899,49.9985654,13.9993073,49.9985755,13.9992977,49.9985866,13.9993223,49.9985887,13.99932,49.9986464,13.9994614,49.9986487,13.9994593,49.9986582,13.9994826,49.998617,13.9995221,49.9985945,13.9994669,49.9985831,13.9994782,49.9985615,13.9994248,49.9985724,13.9994136,49.9985324,13.9993204,49.9985585,13.9992899],[49.9975443,13.9970046,49.9975781,13.9969638,49.9975671,13.9969419,49.9975837,13.9969219,49.9975946,13.9969437,49.9976218,13.9969101,49.9976724,13.9970112,49.9975945,13.9971049,49.9975443,13.9970046],[49.9977852,14.0009241,49.9978246,14.0009026,49.9978451,14.0009923,49.9977451,14.0010478,49.9977397,14.0010239,49.9977364,14.0010256,49.9977349,14.001019,49.9977381,14.0010172,49.9977245,14.0009574,49.9977395,14.0009492,49.9977311,14.0009078,49.9977435,14.0009019,49.997744,14.0009048,49.9977781,14.0008882,49.9977852,14.0009241],[49.9996756,13.9977514,49.9996617,13.9979021,49.999548,13.997877,49.9995619,13.9977262,49.9996756,13.9977514],[49.9976153,13.9988597,49.9976343,13.9989077,49.9975757,13.9989613,49.9975572,13.9989133,49.9975498,13.9989202,49.997512,13.9988223,49.9975855,13.9987537,49.997624,13.9988514,49.9976153,13.9988597],[50.0027432,13.9985754,50.0027494,13.9985384,50.0027605,13.9985428,50.0027692,13.9984917,50.0028474,13.9985235,50.0028295,13.9986297,50.0027513,13.9985979,50.0027542,13.99858,50.0027432,13.9985754],[50.0030899,13.9992694,50.0030559,13.9994586,50.0029858,13.9994281,50.0030199,13.9992389,50.0030899,13.9992694],[49.9980685,13.9974567,49.9980182,13.9974882,49.9979739,13.9973182,49.9980241,13.9972866,49.9980685,13.9974567],[49.9983358,13.9997267,49.9982644,13.9997803,49.998225,13.9996524,49.9982961,13.9995997,49.9983358,13.9997267],[49.9982799,13.9992439,49.9983342,13.9992076,49.9983464,13.9992525,49.9982921,13.9992889,49.9982799,13.9992439],[49.9968943,13.9958455,49.9968453,13.9959161,49.9967882,13.9958322,49.9967657,13.9958069,49.996815,13.9957249,49.9968943,13.9958455],[49.9978926,14.000156,49.9978762,14.0001042,49.9978599,14.0001166,49.9978481,14.0000793,49.9978249,14.0000972,49.9978091,14.0000473,49.9978323,14.0000296,49.997801,13.9999311,49.9978563,13.9998888,49.9979265,14.0001099,49.9978926,14.000156],[50.0042346,14.0012246,50.0043753,14.0011791,50.0043971,14.0013409,50.0042563,14.0013864,50.0042346,14.0012246],[49.9979107,13.9978556,49.9978497,13.9976361,49.9979298,13.9975834,49.9979888,13.9978057,49.9979107,13.9978556],[50.0030634,13.9974654,50.0030151,13.9974329,50.0030289,13.9973812,50.0030778,13.9974142,50.0030634,13.9974654],[50.0032083,14.0017397,50.003204,14.0017627,50.0032545,14.0017856,50.0032364,14.0018818,50.0031859,14.0018591,50.0031816,14.0018826,50.0031323,14.0018606,50.0031591,14.0017175,50.0032083,14.0017397],[49.9982418,13.9991043,49.998296,13.9990679,49.9983093,13.9991166,49.9982549,13.9991521,49.9982418,13.9991043],[49.9994951,13.9969897,49.9995177,13.996817,49.9999785,13.9969678,49.9999626,13.9971223,49.9994951,13.9969897],[49.9979584,13.9983162,49.9980023,13.9985218,49.9979344,13.9985613,49.9978896,13.9983517,49.9979584,13.9983162],[49.9980712,13.9978316,49.9981839,13.9977617,49.9982103,13.9978645,49.9980976,13.9979343,49.9980746,13.9978447,49.9980712,13.9978316],[50.0025798,13.9998618,50.0026661,13.9998788,50.0026491,14.0000565,50.0026276,14.0000517,50.0026271,14.000057,50.0025658,14.0000433,50.0025798,13.9998618],[49.9970738,13.9968818,49.9971227,13.9968204,49.9971723,13.9969149,49.9971243,13.9969784,49.9970738,13.9968818],[50.0028039,13.9988167,50.0027874,13.9989394,50.002729,13.9989205,50.0027453,13.9987978,50.0028039,13.9988167],[49.998861,13.997864,49.998835,13.99786,49.998839,13.997776,49.998868,13.99778,49.998861,13.997864],[49.9988537,13.9962534,49.9988884,13.996248,49.9988936,13.9963293,49.9988588,13.9963346,49.9988537,13.9962534],[50.0024945,13.9988677,50.0025543,13.9988978,50.0025292,13.9990164,50.0024697,13.9989863,50.0024945,13.9988677],[49.9972714,13.9965118,49.9973494,13.9966404,49.9972855,13.9967296,49.9972056,13.9965969,49.9972714,13.9965118],[49.9976532,13.9989558,49.9976619,13.9989475,49.997698,13.9990447,49.9976245,13.9991132,49.9975869,13.9990161,49.9975942,13.9990092,49.9975757,13.9989613,49.9976343,13.9989077,49.9976532,13.9989558],[49.9998382,13.9930774,49.9998224,13.9930698,49.9998166,13.9931004,49.9997257,13.993052,49.9997624,13.9928811,49.9998693,13.992938,49.9998382,13.9930774],[49.9996508,13.9981355,49.9997045,13.9981264,49.9997084,13.9981819,49.9996548,13.998191,49.9996508,13.9981355],[50.0030856,13.9971758,50.0031351,13.9972092,50.0031208,13.9972605,50.0030713,13.9972271,50.0030856,13.9971758],[50.0044205,13.9990085,50.004409,13.9991665,50.0043451,13.9991553,50.0043566,13.9989973,50.0044205,13.9990085],[49.9973046,13.9985675,49.99737,13.9985036,49.9974383,13.9986737,49.9973734,13.9987371,49.9973046,13.9985675],[49.9987791,13.998549,49.9988011,13.9986908,49.9987516,13.9987092,49.9987296,13.9985675,49.9987791,13.998549],[49.9991857,14.0008127,49.9991233,14.0008557,49.9990717,14.0006788,49.999134,14.0006352,49.9991857,14.0008127],[50.0032473,13.9972481,50.0032203,13.9972359,50.0032301,13.9971817,50.003245,13.9971883,50.0032491,13.9971657,50.0032613,13.9971711,50.0032791,13.9970739,50.0033816,13.9971186,50.0032999,13.9975704,50.003197,13.9975244,50.003214,13.9974267,50.0032016,13.9974216,50.0032061,13.9973996,50.0031917,13.9973927,50.0032015,13.9973385,50.0032286,13.9973503,50.0032473,13.9972481],[50.004394,14.0000699,50.0044,14.0000119,50.0044896,14.000034,50.004479,14.000137,50.0044852,14.0001384,50.0044818,14.0001715,50.0044744,14.0001697,50.0044724,14.0001892,50.0043915,14.0001691,50.0044015,14.0000718,50.004394,14.0000699],[50.00405,14.001343,50.0040485,14.001285,50.0041085,14.0012792,50.00405,14.001343],[49.9984213,13.9994912,49.9984747,13.9996669,49.9984086,13.9997192,49.9983586,13.9995342,49.9984213,13.9994912],[49.998374,13.995921,49.9984048,13.9960019,49.9983723,13.9960316,49.9983415,13.9959506,49.998374,13.995921],[50.004191,13.997511,50.004145,13.997506,50.004109,13.997501,50.004121,13.997228,50.004205,13.997238,50.004191,13.997511],[49.9969457,13.9962831,49.9968993,13.9963422,49.9968334,13.9962176,49.9968799,13.9961585,49.9969457,13.9962831],[49.9978211,14.0002379,49.997834,14.0002357,49.9979412,14.0001922,49.9979577,14.0002828,49.9978452,14.0003302,49.9978211,14.0002379],[50.0042109,13.9984861,50.0041298,13.9984639,50.0041601,13.9981965,50.0042059,13.998209,50.0042412,13.9982187,50.0042109,13.9984861],[49.9987591,13.9994904,49.9988099,13.9996555,49.9987504,13.9996961,49.9987005,13.9995311,49.9987591,13.9994904],[49.9980245,13.9982939,49.9980128,13.9982213,49.9981155,13.9981804,49.9981265,13.9982542,49.9980245,13.9982939],[50.0038604,14.0014229,50.0039772,14.0014089,50.003985,14.0015665,50.0039997,14.0015648,50.0040027,14.0016239,50.0039879,14.0016256,50.0039939,14.0017441,50.0038771,14.0017581,50.0038604,14.0014229],[49.9977241,13.9955965,49.9977969,13.9956672,49.997769,13.9957361,49.9976962,13.9956654,49.9977241,13.9955965],[50.0025188,14.000832,50.0025293,14.0008351,50.0025298,14.0008312,50.0026031,14.0008528,50.0026063,14.000827,50.0026315,14.0008345,50.0026227,14.0009064,50.0026201,14.0009055,50.0026213,14.000896,50.0026039,14.0008908,50.0025893,14.0010101,50.0025107,14.000987,50.0025112,14.0009829,50.0025007,14.0009797,50.0025188,14.000832],[49.9984982,13.9976838,49.9984862,13.9978806,49.9984296,13.9978731,49.9984396,13.9976735,49.9984982,13.9976838],[49.9984577,13.9962924,49.9984919,13.9962637,49.9985264,13.9963627,49.9984922,13.9963914,49.9984577,13.9962924],[50.003434,13.9998855,50.0034094,14.0000157,50.0034649,14.0000409,50.0033008,14.0008417,50.0033147,14.0008486,50.0032938,14.0009508,50.0031049,14.0008575,50.003391,13.9994183,50.0033673,13.9994062,50.0034122,13.999195,50.0036994,13.9992926,50.003684,13.9993786,50.0035254,13.9993092,50.0035052,13.9994349,50.0036008,13.99947,50.0035899,13.999535,50.0035715,13.9995265,50.0035217,13.9997886,50.0035189,13.9998346,50.0035033,13.9999171,50.003434,13.9998855],[49.9978121,13.9974468,49.997725,13.9975268,49.9976692,13.9973808,49.9977047,13.9973482,49.9977255,13.9974027,49.9977771,13.9973552,49.9978121,13.9974468],[50.0030492,13.9975165,50.0030013,13.9974845,50.0030151,13.9974329,50.0030634,13.9974654,50.0030492,13.9975165],[49.9982549,13.9991521,49.9983093,13.9991166,49.9983217,13.9991622,49.9982673,13.9991977,49.9982549,13.9991521],[50.0032336,14.0012967,50.0031961,14.0014803,50.0030003,14.001384,50.0031049,14.0008575,50.0032938,14.0009508,50.0033357,14.0009712,50.0032845,14.0012213,50.0032435,14.0012012,50.0032249,14.0012925,50.0032336,14.0012967],[50.0033921,14.0008441,50.0035011,14.000876,50.0034481,14.0013115,50.003339,14.0012794,50.0033921,14.0008441],[50.0036813,14.0015337,50.0037313,14.0014719,50.0037996,14.0016049,50.0037508,14.0016654,50.0037222,14.0016096,50.0036292,14.0017246,50.0036135,14.0016938,50.0035595,14.0017605,50.0035037,14.0016517,50.0036494,14.0014715,50.0036813,14.0015337],[49.9988199,13.9978462,49.9988195,13.9978622,49.9987976,13.9978604,49.9987951,13.9979369,49.9987058,13.9979302,49.9987096,13.9977849,49.9987455,13.9977875,49.9987457,13.9977805,49.9987504,13.9977809,49.9987502,13.9977878,49.9988337,13.9977939,49.9988321,13.9978464,49.9988199,13.9978462],[49.9989271,13.9994554,49.9988834,13.9994934,49.9988415,13.9993773,49.9988853,13.9993393,49.9989271,13.9994554],[49.998567,13.999254,49.99852,13.999311,49.998503,13.999331,49.998465,13.999254,49.998533,13.999181,49.998567,13.999254],[50.0043852,13.999732,50.004327,13.9997183,50.004332,13.9996665,50.0043903,13.9996802,50.0043852,13.999732],[50.0026626,13.9990432,50.0027303,13.9990587,50.0027246,13.9991175,50.0027049,13.999113,50.0026949,13.9992168,50.002647,13.9992058,50.0026626,13.9990432],[49.9966165,13.9956203,49.9966631,13.9955389,49.996754,13.9956693,49.9967056,13.9957501,49.9966165,13.9956203],[50.0035525,13.9957891,50.003548,13.9958043,50.0034857,13.9957604,50.0035177,13.9956491,50.0035806,13.9956935,50.0035774,13.9957043,50.0035958,13.9957174,50.003571,13.9958022,50.0035525,13.9957891],[50.0042561,14.0007276,50.0043359,14.0007041,50.0043522,14.000837,50.004272,14.0008606,50.0042561,14.0007276],[49.9971523,13.9965084,49.9971708,13.9964795,49.9971561,13.9964561,49.9971979,13.9963908,49.9972714,13.9965118,49.9972056,13.9965969,49.9971523,13.9965084],[49.9977218,13.9965528,49.9976942,13.9966294,49.9976485,13.9965898,49.9976401,13.9966132,49.9975972,13.996576,49.9976057,13.9965527,49.9975453,13.9965002,49.9975723,13.9964246,49.9977218,13.9965528],[50.0031208,13.9972605,50.0031065,13.9973118,50.003057,13.9972785,50.0030713,13.9972271,50.0031208,13.9972605],[49.9989973,14.0002603,49.9989419,14.0003142,49.9989271,14.0003286,49.9988743,14.0001865,49.9989449,14.0001202,49.9989973,14.0002603],[49.9988158,13.9991484,49.9988631,13.9992795,49.9988371,13.9993021,49.9988303,13.9992836,49.998813,13.9992987,49.9987719,13.9991848,49.9988158,13.9991484],[49.9987531,13.9947513,49.9985332,13.9947523,49.9985329,13.994575,49.9985328,13.994522,49.9987527,13.994521,49.9987531,13.9947513],[50.0029197,13.9978451,50.0029612,13.9978718,50.0029655,13.9978745,50.002954,13.9979185,50.0029083,13.9978892,50.0029197,13.9978451],[49.9982273,13.9971024,49.9982479,13.997171,49.998264,13.9971597,49.9983028,13.9973076,49.9982264,13.9973558,49.9981675,13.9971457,49.9982273,13.9971024],[49.9991486,13.9951684,49.9991606,13.9952979,49.9990283,13.9953273,49.9990163,13.9951978,49.9991486,13.9951684],[50.0041085,14.0012792,50.0040485,14.001285,50.004042,14.0012852,50.0040399,14.0012296,50.0041065,14.0012235,50.0041085,14.0012792],[49.9981586,13.9991637,49.9980958,13.9992065,49.9980365,13.9989974,49.9980989,13.9989531,49.9981586,13.9991637],[49.9996793,13.993636,49.9996149,13.9936044,49.999642,13.9934713,49.999707,13.993503,49.9996793,13.993636],[49.9980309,13.9983295,49.9980915,13.9982902,49.9980962,13.99831,49.9981542,13.9982758,49.9981783,13.9983898,49.9980482,13.9984397,49.9980309,13.9983295],[49.9977636,13.9965925,49.9978599,13.9967644,49.9978218,13.9968189,49.9978382,13.9968466,49.9978275,13.9968621,49.9977086,13.9966628,49.9977636,13.9965925],[49.9980495,14.0010836,49.9980994,14.0010442,49.9981708,14.0012706,49.9981217,14.0013095,49.9980495,14.0010836],[49.999647,13.99808,49.9997006,13.998071,49.9997045,13.9981264,49.9996508,13.9981355,49.999647,13.99808],[50.0039832,14.0007023,50.0039564,14.0009784,50.0038943,14.0009646,50.0039201,14.0006883,50.0039832,14.0007023],[50.003196,13.997031,50.003135,13.996993,50.003158,13.996904,50.003215,13.996929,50.003196,13.997031],[50.0026194,13.9993387,50.0027168,13.9993736,50.0026913,13.9995471,50.0026293,13.9995258,50.0026402,13.9994498,50.0026054,13.999438,50.0026194,13.9993387],[50.0043334,13.9999464,50.0043146,14.0002019,50.004216,14.0001845,50.0042348,13.999929,50.0043334,13.9999464],[49.9966055,13.996087,49.9966231,13.9960173,49.9966881,13.9960543,49.9966736,13.9961223,49.9966055,13.996087],[49.9977805,13.9972585,49.9977527,13.9971647,49.9978737,13.9970767,49.9978659,13.9970522,49.9979063,13.9970231,49.9979404,13.9971352,49.9977805,13.9972585],[49.9982673,13.9991977,49.9983217,13.9991622,49.9983342,13.9992076,49.9982799,13.9992439,49.9982673,13.9991977],[49.9984428,13.9961228,49.9984751,13.9962154,49.9984409,13.9962442,49.9984086,13.9961514,49.9984428,13.9961228],[49.9968143,13.9959776,49.9967681,13.9960539,49.9966722,13.9959143,49.9967195,13.9958397,49.9968143,13.9959776],[50.0042059,13.998209,50.0041601,13.9981965,50.0041242,13.9981866,50.0041546,13.9979179,50.0042363,13.9979403,50.0042059,13.998209],[49.9975636,13.9975208,49.9976406,13.9976855,49.9975968,13.9977345,49.9975196,13.9975699,49.9975636,13.9975208],[49.9980547,14.0008614,49.9979941,14.0008897,49.9979648,14.0007368,49.9980271,14.000712,49.9980547,14.0008614],[49.9978354,14.0017517,49.9978716,14.0016744,49.9979646,14.0017792,49.9979386,14.0018347,49.9979331,14.0018285,49.9979208,14.001853,49.9978354,14.0017517],[49.999256,13.9971367,49.9991709,13.9971044,49.9991878,13.9969972,49.9992729,13.9970294,49.999256,13.9971367],[50.0040898,13.9995911,50.0040946,13.9995618,50.004078,13.9995552,50.0040842,13.9995013,50.004131,13.999521,50.0040856,13.9999091,50.0040149,13.9998866,50.0040555,13.9995801,50.0040898,13.9995911],[50.0040685,14.0007851,50.0040849,14.0008343,50.0040333,14.0008754,50.004017,14.0008261,50.0040685,14.0007851],[49.9988776,13.9971176,49.9988207,13.9971294,49.998804,13.9970049,49.9988775,13.9969897,49.9988807,13.9970259,49.9988699,13.9970282,49.9988776,13.9971176],[49.9988653,13.9967075,49.9988696,13.9968472,49.998813,13.9968513,49.9988087,13.9967101,49.9988653,13.9967075],[49.9965691,13.9956886,49.9965847,13.9957107,49.9966024,13.9956788,49.9966809,13.9957864,49.9966451,13.9958477,49.9966015,13.9957863,49.9965685,13.99574,49.9965524,13.9957172,49.9965691,13.9956886],[50.0030492,13.9975165,50.0030348,13.9975678,50.0029876,13.997536,50.0030013,13.9974845,50.0030492,13.9975165],[50.0045275,13.9994514,50.0045523,13.9994537,50.0045511,13.9994849,50.0045638,13.9994859,50.0045595,13.9996064,50.0044831,13.9995998,50.0044873,13.9994794,50.0045264,13.9994828,50.0045275,13.9994514],[50.003057,13.9972785,50.0031065,13.9973118,50.0030921,13.9973631,50.0030426,13.9973297,50.003057,13.9972785],[50.0043826,13.9994853,50.0042942,13.9994561,50.0043117,13.9993285,50.0042986,13.9993241,50.0043078,13.9992573,50.0044093,13.9992908,50.0043826,13.9994853],[50.0003269,14.0042746,50.0003281,14.0042678,50.00035,14.0042782,50.0003315,14.0043716,50.0003492,14.00438,50.00038,14.0043946,50.0003711,14.0044388,50.0003382,14.0044232,50.0002562,14.0043843,50.000282,14.0042533,50.0003269,14.0042746],[49.9980615,14.0003713,49.9980947,14.0003627,49.9981025,14.0004332,49.9980354,14.000451,49.9980207,14.0003184,49.99803,14.0003159,49.9980141,14.0001718,49.9980697,14.0001567,49.9980747,14.0002049,49.9980877,14.0002015,49.9980933,14.0002563,49.9980806,14.0002594,49.9980858,14.0003075,49.9980555,14.0003153,49.9980615,14.0003713],[49.9998196,14.0019033,49.9998451,14.0019735,49.9997882,14.0020232,49.9997615,14.0019499,49.9998196,14.0019033],[49.9998853,14.003147,49.999863,14.00315,49.999781,14.003101,49.999731,14.00291,49.999813,14.002865,49.9998853,14.003147],[49.9998696,14.0006321,49.9998102,14.000645,49.9998051,14.0005857,49.9997847,14.0005898,49.9997758,14.0004834,49.9997576,14.0004872,49.9997464,14.0003541,49.9997335,14.0003567,49.9997263,14.0002712,49.9997145,14.0002736,49.9997053,14.0001636,49.9998064,14.0001432,49.9998004,14.0000726,49.9998785,14.0000566,49.9998822,14.0000968,49.9999016,14.0000925,49.999906,14.0001398,49.9998825,14.000145,49.9998872,14.0001963,49.9999055,14.0001926,49.9999088,14.0002315,49.9998951,14.0002343,49.9998967,14.000254,49.9998777,14.000258,49.9998943,14.0004563,49.9998756,14.00046,49.9998848,14.0005696,49.9998646,14.0005736,49.9998696,14.0006321],[49.9985884,13.9972239,49.9986359,13.9972216,49.9986387,13.9973552,49.9985912,13.9973576,49.9985884,13.9972239],[50.0040174,14.0001273,50.0040172,14.0001286,50.0039517,14.0006222,50.0038435,14.0005877,50.0039091,14.0000928,50.0040019,14.0001225,50.0040174,14.0001273],[50.0039604,13.9976365,50.003941,13.9976317,50.0039238,13.9978003,50.0038617,13.9977853,50.0038665,13.9977369,50.0038488,13.9977325,50.0038587,13.9976362,50.0038765,13.9976407,50.0038815,13.9975921,50.0039185,13.9976005,50.0039284,13.9975047,50.0039728,13.9975158,50.0039604,13.9976365],[50.0037669,14.0008389,50.00373,14.0008249,50.0037597,14.0006375,50.0037967,14.0006515,50.0037669,14.0008389],[50.0025569,13.9999922,50.0025536,14.0000637,50.0025073,14.0000583,50.0025128,13.9999839,50.0025569,13.9999922],[50.0038627,14.0000581,50.0037859,14.0005472,50.0036929,14.0005119,50.0037697,14.000023,50.0038627,14.0000581],[50.0035597,14.0005027,50.0035924,14.0003505,50.0036373,14.0003737,50.0036047,14.0005258,50.0035597,14.0005027],[50.0044093,13.9983481,50.004344,13.9983298,50.0043496,13.9982756,50.0044156,13.998294,50.0044093,13.9983481],[50.0035354,14.0010858,50.0035766,14.0010977,50.0035442,14.0013685,50.003503,14.0013566,50.0035354,14.0010858],[50.0034489,14.0030051,50.0034348,14.0030639,50.0034152,14.0030519,50.0034065,14.0030888,50.0033271,14.0030444,50.0033296,14.0030331,50.0033236,14.0030152,50.0033291,14.0029931,50.0033411,14.0029842,50.0033443,14.0029728,50.0033495,14.0029755,50.0033625,14.0029153,50.003438,14.0029572,50.0034292,14.0029938,50.0034489,14.0030051],[50.0035225,14.0027623,50.0034882,14.002911,50.0034493,14.0028858,50.0034529,14.0028723,50.0034141,14.0028472,50.0034208,14.0028218,50.0033973,14.0028066,50.0034115,14.0027535,50.0034033,14.0027324,50.0034108,14.0027049,50.003433,14.0027055,50.003444,14.0027193,50.0035225,14.0027623],[50.0027173,14.0022526,50.0027331,14.0021645,50.0027899,14.0021891,50.002774,14.0022771,50.0027173,14.0022526],[49.998895,13.9998151,49.9988044,13.9998912,49.9987702,13.9997835,49.9988584,13.9997109,49.998895,13.9998151],[49.9981807,14.0007423,49.9982153,14.0008909,49.9981578,14.0009231,49.9981234,14.0007745,49.9981807,14.0007423],[49.9987185,14.0006568,49.9986244,14.0005142,49.9986933,14.000398,49.9987903,14.0005334,49.9987185,14.0006568],[49.99938,14.0015043,49.999346,14.0014024,49.9993856,14.0013719,49.9994184,14.0014741,49.99938,14.0015043],[50.0022088,14.0061569,50.0022011,14.006205,50.0021534,14.0061867,50.002161,14.0061386,50.0022088,14.0061569],[50.0022804,14.0049357,50.0023459,14.0049785,50.0023281,14.0050442,50.0023467,14.0050564,50.0023278,14.0051263,50.0022436,14.0050714,50.0022804,14.0049357],[50.0040295,14.0009515,50.0040961,14.0009451,50.0040982,14.0010007,50.0040315,14.0010067,50.0040295,14.0009515],[49.9992801,13.9992774,49.9993059,13.9993313,49.9992797,13.9993623,49.9992592,13.9993205,49.999276,13.9993008,49.9992702,13.9992885,49.9992801,13.9992774],[50.0003015,14.0065949,50.0003458,14.0066108,50.000338,14.0066636,50.0002937,14.0066478,50.0003015,14.0065949],[50.0002025,14.0029243,50.0002687,14.0029133,50.0002531,14.0026863,50.0001869,14.0026974,50.0001882,14.0027162,50.000202,14.0029171,50.0002025,14.0029243],[49.9990692,13.9962558,49.9990931,13.9962574,49.9990945,13.9962083,49.9990705,13.9962068,49.9990692,13.9962558],[49.9975773,13.9967212,49.9975304,13.9967976,49.9975104,13.9967399,49.9975465,13.9966749,49.9975773,13.9967212],[49.9980504,13.9978915,49.9980454,13.9978916,49.9980265,13.9978562,49.9980294,13.9978528,49.9980305,13.9978542,49.9980547,13.9978147,49.9980602,13.997821,49.9980629,13.9978153,49.9980722,13.9978279,49.9980712,13.9978316,49.9980746,13.9978447,49.9980596,13.9978579,49.9980659,13.9978758,49.9980504,13.9978915],[49.9999061,13.9998657,49.9998826,13.9998709,49.9998917,13.9999698,49.9999042,13.999967,49.9999086,14.0000143,49.9998753,14.0000217,49.9998785,14.0000566,49.9998004,14.0000726,49.9997565,13.9995506,49.9997533,13.9995122,49.999864,13.9994811,49.9998817,13.9997395,49.9998928,13.999737,49.999896,13.9997714,49.9998836,13.9997742,49.9998887,13.9998301,49.9999025,13.9998271,49.9999061,13.9998657],[49.9972835,13.9983525,49.9972759,13.9983355,49.9972922,13.9982969,49.9973062,13.9983304,49.9972835,13.9983525],[49.9993534,13.9975598,49.9993096,13.9975457,49.9993141,13.9975108,49.9992731,13.9974976,49.9992928,13.9973501,49.9993778,13.9973774,49.9993534,13.9975598],[49.9998612,13.9993316,49.9998762,13.9993273,49.9998796,13.9993554,49.9998556,13.9993623,49.9997621,13.9993813,49.9997568,13.9990581,49.9998597,13.9990531,49.9998612,13.9993316],[49.997206,13.9984375,49.9971896,13.998402,49.9972888,13.998289,49.9972922,13.9982969,49.9972759,13.9983355,49.9972835,13.9983525,49.997226,13.998413,49.997206,13.9984375],[49.9998556,13.9993623,49.9998646,13.9994382,49.9998772,13.9994347,49.9998821,13.9994759,49.999864,13.9994811,49.9997533,13.9995122,49.9997427,13.9993852,49.9997621,13.9993813,49.9998556,13.9993623],[49.9996644,13.9988355,49.9999118,13.9987584,49.9999337,13.9988902,49.9998589,13.9989051,49.9998597,13.9990531,49.9997568,13.9990581,49.9997549,13.9989367,49.9996814,13.9989556,49.9996644,13.9988355],[49.9997068,13.9995252,49.99971,13.9995637,49.9997035,13.9995655,49.9995401,13.9996116,49.9994732,13.9992804,49.999559,13.9992526,49.9995812,13.9992454,49.999632,13.9995462,49.9996992,13.9995273,49.9997068,13.9995252],[50.0032086,13.9980076,50.0031535,13.9979815,50.0031422,13.9980405,50.0031974,13.9980707,50.0032086,13.9980076],[50.0031944,13.99808,50.0031797,13.9981511,50.0031392,13.998131,50.003156,13.9980559,50.0031944,13.99808],[50.0032147,13.9976053,50.0031776,13.9977816,50.0031293,13.9977575,50.0031655,13.9975791,50.0032147,13.9976053],[50.0031428,13.9990193,50.0031047,13.9992385,50.0030499,13.9992155,50.003088,13.9989962,50.0031428,13.9990193],[50.0030609,13.9994808,50.0030121,13.9997651,50.0029908,13.9997562,50.0030396,13.9994719,50.0030609,13.9994808],[50.0018146,14.0045687,50.001834,14.0045789,50.0018241,14.0046248,50.0018019,14.0046127,50.0018146,14.0045687],[50.001834,14.0045789,50.0018146,14.0045687,50.0018347,14.0044983,50.0018498,14.0045061,50.001834,14.0045789],[50.0030064,13.9979842,50.0030129,13.997956,50.0030231,13.9979113,50.0030289,13.9979149,50.003031,13.9979174,50.0030458,13.997975,50.0030282,13.9979975,50.0030064,13.9979842],[50.0030022,13.997898,50.0030231,13.9979113,50.0030129,13.997956,50.0029907,13.9979418,50.0030022,13.997898],[50.0029655,13.9978745,50.0030022,13.997898,50.0029907,13.9979418,50.002954,13.9979185,50.0029655,13.9978745],[49.9982932,13.9941214,49.9982158,13.9941599,49.9981966,13.9940662,49.9982742,13.994028,49.9982932,13.9941214],[50.0018952,14.005416,50.0019735,14.0054481,50.0019436,14.0056235,50.0018652,14.0055914,50.0018952,14.005416],[50.0030133,14.0030339,50.0030674,14.0030606,50.0030549,14.00312,50.0030007,14.0030922,50.0030133,14.0030339],[49.9988788,13.9941785,49.9989177,13.9941608,49.9989454,13.9943086,49.9988331,13.9943595,49.9988255,13.9943193,49.9988189,13.9943222,49.9988062,13.9942556,49.9988131,13.9942522,49.9988054,13.9942119,49.9988441,13.9941941,49.9988422,13.9941838,49.998877,13.9941685,49.9988788,13.9941785],[49.9987778,13.9974943,49.9987601,13.9976862,49.9986784,13.9976684,49.9986956,13.9974764,49.9987778,13.9974943],[49.9977305,13.9979198,49.997782,13.9980653,49.9976946,13.9981394,49.9975776,13.9978079,49.9976631,13.9977296,49.9977151,13.9978765,49.9977459,13.9978509,49.9977609,13.9978927,49.9977305,13.9979198],[50.0006183,14.0058164,50.0005932,14.0060042,50.0005135,14.0059783,50.0005387,14.0057905,50.0006183,14.0058164],[50.0034403,14.0035649,50.0034149,14.0036671,50.0033618,14.0036361,50.0033843,14.0035337,50.0034403,14.0035649],[50.0035081,14.003292,50.0035679,14.0033256,50.0035143,14.0035548,50.0034545,14.003521,50.0035081,14.003292],[49.9975338,13.9980303,49.9974842,13.9980754,49.9974704,13.9980388,49.9975199,13.9979935,49.9975338,13.9980303],[49.9975476,13.9980668,49.9974979,13.9981121,49.9974842,13.9980754,49.9975338,13.9980303,49.9975476,13.9980668],[49.9975616,13.9981039,49.9975118,13.998149,49.9974979,13.9981121,49.9975476,13.9980668,49.9975616,13.9981039],[49.9975757,13.9981409,49.9975256,13.9981863,49.9975118,13.998149,49.9975616,13.9981039,49.9975757,13.9981409],[49.9975895,13.9981785,49.9975398,13.9982234,49.9975256,13.9981863,49.9975757,13.9981409,49.9975895,13.9981785],[49.9988476,13.9937961,49.9988744,13.9939308,49.9988347,13.9939499,49.998839,13.9939713,49.9988005,13.9939896,49.9987963,13.9939685,49.9987533,13.9939889,49.998748,13.9939619,49.9987366,13.9939481,49.9987305,13.993935,49.9987273,13.9939187,49.9987276,13.9939027,49.9987322,13.9938818,49.9987266,13.9938541,49.9987696,13.9938335,49.9987688,13.9938293,49.998807,13.9938111,49.9988078,13.9938151,49.9988476,13.9937961],[50.002842,14.0043704,50.0028192,14.004476,50.0027928,14.0044625,50.0028152,14.0043568,50.002842,14.0043704],[50.0026018,14.0043518,50.002594,14.004402,50.0025194,14.0043708,50.0025285,14.0043223,50.0026018,14.0043518],[49.99971,13.9995637,49.9997068,13.9995252,49.9997533,13.9995122,49.9997565,13.9995506,49.99971,13.9995637],[49.9995933,14.0022555,49.9996152,14.0022371,49.9996934,14.0024177,49.9996816,14.0024306,49.9997872,14.0026738,49.9997675,14.002696,49.9996402,14.0024034,49.9996516,14.0023915,49.9995933,14.0022555]],"buildingTypes":["residential","garage","yes","residential","yes","residential","residential","yes","residential","residential","civic","yes","residential","yes","residential","civic","yes","yes","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","yes","garage","residential","residential","garage","residential","garage","yes","yes","yes","residential","residential","residential","residential","yes","garage","residential","garage","garage","garage","transformer_tower","residential","yes","yes","residential","yes","garage","yes","garage","yes","residential","residential","residential","civic","residential","garage","residential","residential","civic","yes","residential","garage","yes","garage","yes","residential","garage","residential","residential","yes","yes","yes","yes","residential","residential","hotel","residential","yes","residential","yes","garage","residential","yes","yes","residential","garage","residential","residential","yes","residential","house","civic","residential","residential","residential","residential","residential","residential","residential","residential","garage","house","yes","yes","yes","residential","yes","residential","barn","yes","house","residential","civic","barn","garage","residential","garage","yes","residential","residential","house","residential","residential","residential","residential","residential","residential","barn","garage","residential","garage","residential","yes","garage","residential","residential","residential","garage","garage","garage","residential","garage","residential","residential","residential","yes","yes","residential","residential","residential","garage","house","residential","barn","barn","residential","garage","garage","residential","garage","garage","residential","yes","garage","residential","residential","residential","yes","residential","residential","residential","residential","house","residential","retail","yes","residential","garage","residential","yes","residential","residential","garage","yes","garage","residential","residential","residential","residential","barn","garage","yes","yes","residential","residential","house","residential","garage","garage","residential","residential","residential","residential","residential","residential","yes","yes","yes","residential","yes","yes","residential","residential","barn","hotel","residential","residential","residential","yes","residential","residential","garage","garage","yes","barn","yes","residential","residential","yes","garage","residential","residential","residential","yes","residential","residential","garage","yes","residential","yes","garage","residential","yes","garage","residential","residential","residential","residential","residential","garage","residential","yes","residential","residential","yes","residential","garage","yes","residential","residential","yes","residential","house","industrial","residential","garage","residential","residential","residential","garage","residential","garage","house","residential","house","civic","yes","church","house","yes","house","yes","garage","barn","yes","garage","yes","residential","residential","residential","yes","house","residential","house","garage","residential","garage","industrial","yes","roof","yes","garage","garage","residential","barn","residential","residential","barn","residential","residential","residential","yes","yes","yes","transportation","transportation","garage","yes","yes","yes","yes","yes","house","garage","house","house","residential","yes","garage","house","garage","garage","garage","garage","garage","house","yes","garage","yes","roof"],"pathways":[[50.002391,14.0028971,50.0023646,14.0030044,50.0022123,14.0034298,50.002129,14.003694,50.00201,14.004216,50.001811,14.005434,50.0016382,14.0066793],[50.002391,14.0028971,50.0020864,14.0027947],[50.0020864,14.0027947,50.0010496,14.0024731],[50.0010496,14.0024731,50.0009016,14.0024388,50.0008368,14.0024237,50.0008014,14.0024163,50.0007143,14.0024026,50.0005265,14.0023732,50.0004158,14.002368,50.0002942,14.0023624],[49.9992247,13.9958212,49.9992349,13.9959518,49.9992149,13.99608,49.9990872,13.9966278],[49.9998659,14.0024862,49.999896,14.002582,49.9999063,14.0026257,49.9999559,14.0028368,50.0000125,14.00309,50.0000249,14.0031445],[50.0002942,14.0023624,50.0002998,14.0022706,50.0003117,14.0021219,50.0003319,14.0018696,50.0006638,13.998975,50.0006658,13.9989573],[49.9998659,14.0024862,49.9997407,14.0021885,49.999646,14.0019445],[49.9993559,14.0011673,49.999234,14.0010458,49.999108,14.000885,49.9990402,14.0007643,49.9988021,14.0004645,49.9986673,14.0002601,49.9983905,13.9997697,49.9981109,13.9988758,49.9979187,13.9980422,49.9978071,13.9977227,49.9976538,13.9975456,49.9975256,13.9972796,49.9971027,13.9965092,49.9968203,13.995935,49.9965951,13.9956374,49.9963019,13.9953677,49.9958551,13.9949061,49.9952752,13.9942007,49.9951003,13.9939521,49.9949636,13.9937572,49.9948809,13.9935339,49.9946738,13.9930385,49.9945879,13.9927509,49.9944441,13.9923913,49.9942588,13.9920435,49.9939539,13.9916857],[49.9985244,13.998317,49.9987351,13.9989316,49.9988838,13.9991521,49.9991637,13.9994102],[50.0004701,14.0048319,50.0004782,14.0049,50.0005079,14.0049504,50.0006516,14.0049606,50.0006961,14.0050431],[49.9993875,13.9946375,49.9993428,13.994843,49.9993364,13.9949255,49.9993269,13.99503,49.9993037,13.9951021,49.999265,13.995159],[49.9994918,13.9996146,49.9994356,13.9995332,49.9993813,13.9994534,49.9993672,13.9994728,49.9993718,13.9995222,49.9994134,13.9996395,49.9995392,13.9999415,49.9996675,14.0004258,49.9997239,14.0006545,49.9998112,14.0009153,49.9999152,14.0011609,49.9999003,14.00117,49.9998501,14.0011423,49.9998115,14.0010996,49.9998024,14.0011143,49.9999997,14.0016426,50.000024,14.0017034,50.00003,14.0017185,50.000028,14.0017343,50.0000213,14.0017398,49.9999697,14.00171,49.9997321,14.0014663,49.9997231,14.0014632,49.9997194,14.0014862,49.9998445,14.0018413],[49.9992247,13.9958212,49.9992648,13.9956893,49.999281,13.9955574,49.999265,13.995159],[50.0002011,14.0046407,50.0004701,14.0048319],[49.999265,13.995159,49.9992611,13.9950935,49.9992207,13.9948961,49.9986401,13.9919642,49.9983126,13.9906812,49.9981638,13.9902459,49.9978929,13.9896067,49.9978214,13.9894122,49.9977648,13.9891111,49.9971723,13.9846862,49.9970823,13.9841993,49.9967822,13.9831188,49.9967028,13.9828606,49.9963577,13.9817382,49.9948357,13.9766027,49.9947569,13.9760349],[50.0021026,14.0055517,50.0024822,14.0058871,50.0027369,14.0061007],[50.00264,14.0027956,50.00263,14.0028287,50.0024724,14.0035561,50.0023015,14.0044372,50.0022383,14.004844],[50.0022383,14.004844,50.0029572,14.0053144,50.003214,14.0055103,50.0034594,14.0056899,50.0038358,14.0059972,50.0041941,14.006184,50.0044195,14.006321,50.0045719,14.0064753,50.0047715,14.0067642],[50.0029572,14.0053144,50.0032464,14.0040124,50.0035686,14.0026461,50.0036116,14.0023844],[50.0030123,14.0034616,50.0030905,14.0030921,50.0031724,14.0025792],[50.0007166,14.0057544,50.0006725,14.0057361],[49.9975537,13.9950138,49.9973988,13.9948446,49.997065,13.9945003,49.9968362,13.9943195,49.9966837,13.9942028,49.9966177,13.9941428,49.9965037,13.9939811,49.9964674,13.9938877,49.9964299,13.9936738,49.9963887,13.9933199,49.9963862,13.9931546,49.9963999,13.9927734,49.9964004,13.9927037,49.9964021,13.9924295,49.9964024,13.9923903,49.9964037,13.9920577],[49.999917,14.0009335,49.999911,14.0009517,49.9998983,14.0009561,49.9998112,14.0009153],[49.9994918,13.9996146,49.9995201,13.9996816,49.9995401,13.9996892,49.9995598,13.9996957],[49.9995401,13.9996892,49.9996685,14.0002104,49.9997387,14.0004671,49.9998017,14.000709,49.9998747,14.000811,49.999888,14.0008284,49.999917,14.0009335,49.9999646,14.0010813,49.9999983,14.0011406,50.0000108,14.0011801,50.0000132,14.0012191,50.0000047,14.0012355,49.9999835,14.0012396,49.9999489,14.0012129,49.9999152,14.0011609],[49.9996276,13.9987988,49.9996331,13.998845,49.9996466,13.9989476,49.9996784,13.9992626,49.9996838,13.9993708,49.9996992,13.9995273],[49.9993615,13.9988452,49.9994285,13.9988536,49.9995948,13.9988095,49.9996276,13.9987988,49.9999136,13.9987058],[49.9990872,13.9966278,49.9990748,13.9964006,49.9990571,13.9963377,49.9989864,13.9961508],[50.0008715,14.0042468,50.0007925,14.0044065],[50.0000125,14.00309,50.0000752,14.003077,50.0001456,14.0031015,50.0002079,14.0031427,50.0002661,14.0032025,50.0004203,14.003452,50.0005505,14.0036569,50.0006707,14.0037727,50.000894,14.0038131],[50.0007925,14.0044065,50.0007569,14.0046027,50.000714,14.0049183,50.0006961,14.0050431,50.0006005,14.0053425,50.0005112,14.0055765,50.0004675,14.0058024,50.0004326,14.0062064,50.0004756,14.006405,50.0005114,14.0065799,50.0005262,14.0068682,50.0005091,14.0071815,50.0004194,14.0077089,50.0003053,14.0082272,50.0001883,14.0086791,50.0000675,14.0090612,49.9999494,14.0094046,49.9997921,14.009754,49.9996564,14.0099649],[49.9990784,14.0046633,49.9991816,14.0049551,49.9992402,14.0052381,49.9992418,14.0056762,49.9992275,14.0061931,49.9991975,14.0064073,49.9991168,14.0067248,49.9989522,14.0074115,49.9985826,14.0085229,49.9985154,14.0087198,49.9984106,14.0089136,49.9982207,14.0091905,49.9980308,14.0094736,49.9978647,14.0097259],[49.9983037,14.0062248,49.9983164,14.0052082,49.9983148,14.0050605,49.9982927,14.004967,49.9982436,14.0049079,49.9981487,14.0048857,49.9981202,14.0048562,49.9980664,14.0046962,49.9979904,14.0044919,49.9978971,14.004199,49.9978259,14.0039332,49.9977832,14.0036698,49.9977658,14.0035615,49.9977515,14.0032784,49.9977499,14.0031603,49.9977633,14.0031151,49.9977828,14.0030869,49.9978126,14.0030939,49.9978327,14.0031171,49.997867,14.0031967,49.997915,14.0033469,49.9980096,14.0035385,49.9982609,14.0040241,49.9983795,14.0042318,49.9987133,14.0045164,49.9990088,14.0046791,49.9990784,14.0046633,49.998939,14.0044209,49.9987859,14.0039866],[49.9963068,14.0000985,49.996465,14.0011485,49.9965185,14.0016124,49.9965441,14.0018715,49.9966134,14.0023292,49.9966925,14.0025254,49.9968878,14.0028292,49.9970782,14.0028869,49.9974144,14.0029138,49.9976789,14.0029561,49.9977828,14.0030869],[50.002491,14.0022031,50.0024509,14.0018249,50.0024308,14.0012957,50.0024456,14.0006703,50.0024805,14.0001077,50.0025141,13.9995974,50.0025545,13.9991351,50.0027111,13.998434,50.0028865,13.9978216,50.0029268,13.9977003],[50.002391,14.0028971,50.0024492,14.0027171,50.002482,14.0023143,50.002491,14.0022031,50.0026388,14.0013932,50.0027921,14.0005527],[50.0029268,13.9977003,50.0030653,13.9976041,50.0031594,13.9973197,50.003349,13.9965542],[50.0029268,13.9977003,50.0030115,13.9973092,50.003228,13.9965793,50.0035049,13.9956109,50.0035936,13.9953055,50.003681,13.9951047],[49.9910708,13.9927923,49.9912149,13.9928338,49.9930403,13.9927217,49.9934786,13.9928992,49.993953,13.9933475,49.9943968,13.9944703,49.9944572,13.9946104,49.9945264,13.9947703,49.9947702,13.9951539,49.9953293,13.9957944,49.9958903,13.9964971,49.9961754,13.996855,49.996504,13.9971968,49.9969289,13.9976639,49.9972573,13.9981973,49.9974451,13.9984012],[50.002947,13.9994309,50.003018,13.9990343,50.0030793,13.9988017,50.0031556,13.9986629,50.0031836,13.998539,50.0031363,13.9984386,50.0030696,13.9984453],[49.999646,14.0019445,49.9995894,14.001971,49.9995774,14.0019766,49.9995671,14.0019776,49.9995424,14.0019428,49.9994093,14.0017146,49.9993869,14.0016901,49.999327,14.0016743,49.999289,14.0016819,49.9992613,14.0017013,49.9991016,14.0019429,49.9990553,14.002024,49.9990419,14.002077,49.9990426,14.0021208],[49.9993559,14.0011673,49.9993064,14.0010247,49.9990387,14.0001773,49.9988951,13.9997739,49.998707,13.9993063,49.9986279,13.9990318,49.9985244,13.998317,49.9985192,13.99819,49.9985283,13.9980179,49.998564,13.9972377,49.9985244,13.996788,49.9983784,13.9963099,49.9980619,13.9955667,49.9979158,13.9953727,49.9976024,13.9951502],[50.0022383,14.004844,50.0021026,14.0055517,50.0019401,14.0064766,50.0019382,14.0064878,50.0017833,14.0074012,50.0017352,14.0076849,50.0015986,14.0083197],[50.00264,14.0027956,50.0025195,14.0028385,50.002447,14.0028697,50.002391,14.0028971],[50.0003117,14.0021219,50.0005463,14.0021633,50.0008306,14.0022134],[49.9999559,14.0028368,50.0000769,14.002799,50.0001823,14.0027854,50.0003224,14.0027456,50.0003716,14.0027325,50.0004575,14.0027103,50.0004788,14.0026671,50.0005112,14.002492,50.0005265,14.0023732],[50.0000479,14.0032535,50.0001041,14.0036236,50.0002011,14.0046407,50.0002061,14.0048702,50.0002036,14.0051027,50.0001633,14.00535,49.9999361,14.0060865,49.9996855,14.0077271,49.999247,14.009725,49.999059,14.0102772,49.9987577,14.0108939,49.9980567,14.0123076,49.9975956,14.0133414],[50.0000249,14.0031445,50.0000479,14.0032535],[50.000894,14.0038131,50.0009063,14.0036006,50.0009832,14.0033227,50.0010293,14.0030706,50.0010801,14.0026346,50.0010955,14.0023604,50.0010612,14.0021782,50.0010447,14.0020273,50.0010506,14.0010153,50.0010754,14.0000493,50.0011038,13.9989361,50.0011002,13.9987723,50.001034,13.9986288,50.0009394,13.9985203,50.0009146,13.9985],[49.9997649,14.0019072,49.9996899,14.0019693],[49.9998445,14.0018413,49.9997649,14.0019072],[49.9991865,13.99756,49.9991351,13.9977552,49.9990698,13.9980207,49.9990456,13.9981573,49.9990623,13.9983069],[49.9992106,13.9977535,49.9993492,13.9979855,49.999383,13.998005,49.9994081,13.9979823,49.9994587,13.9976056,49.9999078,13.9977279],[50.009866,14.0010918,50.008617,14.0013447,50.0083035,14.0014163,50.007374,14.0016282,50.0072313,14.001666,50.0070443,14.0015906,50.0068778,14.0014108,50.006741,14.001202,50.0065516,14.0006416,50.0064096,14.0004538,50.0062847,14.0003666,50.0062106,14.0003474,50.006133,14.000355,50.005978,14.0004113,50.0053,14.001183,50.005074,14.001358,50.0049479,14.0013933,50.00482,14.0014004,50.0045605,14.0014933,50.0043223,14.001683,50.0042123,14.0018443,50.003844,14.002239,50.0036116,14.0023844,50.003574,14.002408,50.0031724,14.0025792,50.002726,14.0027611,50.00264,14.0027956],[49.9996092,14.0018512,49.9993559,14.0011673],[50.0002942,14.0023624,50.0000817,14.0023877,49.9999659,14.0024291,49.9998659,14.0024862],[50.0042123,14.0018443,50.0042099,14.001621,50.0041519,14.0010128,50.0041255,14.0008016,50.0041141,14.0007518,50.0040645,14.0005558,50.0040857,14.0002523,50.004265,13.9987502,50.0043234,13.9982958,50.0044037,13.9974907],[50.004554,13.998224,50.0043469,14.0003398,50.004321,14.000464,50.0041255,14.0008016],[50.0026388,14.0013932,50.0026734,14.0013732,50.0027115,14.0013088,50.0027508,14.0011885,50.0027578,14.0011464,50.0028771,14.0004275,50.0028891,14.0003139,50.0028877,14.0002375,50.002853,14.0001635],[49.9976724,13.9949087,49.997858,13.9951407,49.9982506,13.99542,49.9986577,13.9960184,49.9987049,13.9960703,49.9987637,13.996118,49.9988257,13.9961508,49.9988926,13.9961655,49.9989492,13.996158,49.9989864,13.9961508,49.9990647,13.9961,49.9991128,13.996042,49.9991645,13.9959645,49.9992247,13.9958212],[49.9975537,13.9949608,49.9975994,13.9949087,49.9976724,13.9949087],[49.9976024,13.9951502,49.9975537,13.9950508,49.9975537,13.9950138,49.9975537,13.9949608],[50.0033703,13.9977981,50.0032832,13.9982763,50.0032514,13.9984511,50.0032403,13.9985241,50.0031836,13.998539],[49.9990872,13.9966278,49.999084,13.9967815,49.9991865,13.99756,49.9992106,13.9977535],[49.9987859,14.0039866,49.998648,14.003249,49.9985393,14.0028249,49.9983338,14.0023415,49.9981841,14.0019426,49.9981072,14.0018312,49.9980247,14.0017257,49.9979759,14.0016639,49.9979454,14.0016138,49.9979283,14.0015711,49.9979168,14.0015308,49.9979119,14.0014574,49.9979153,14.0013525,49.9979172,14.0012913,49.9979133,14.0012312,49.9979021,14.0011333,49.9978674,14.0009511,49.9977765,14.0003947,49.9977238,13.9995153,49.9977392,13.9993769,49.9977654,13.999199,49.9978134,13.9991166],[49.9975256,13.9972796,49.9976966,13.9970936,49.9976693,13.9967563,49.9977076,13.9966866],[49.9996992,13.9995273,49.9997035,13.9995655],[49.9997035,13.9995655,49.9997141,13.9996285,49.9997355,13.9997992,49.9997742,14.0001325],[50.0044037,13.9974907,50.0043926,13.9971289,50.0044159,13.9967776,50.004205,13.9967425,50.0041499,13.9967936,50.004095,13.9970339,50.0040718,13.9973451,50.0040692,13.9984173,50.0041107,13.9984907,50.0042408,13.9985281,50.004265,13.9987502],[49.9994451,14.0037573,49.9996802,14.0037726,49.9997819,14.0037601,49.9998972,14.0037129,50.0000084,14.0036507,50.0001041,14.0036236],[50.0062847,14.0003666,50.0062695,14.0002469,50.0062404,14.0002068,50.0061087,14.0001322,50.0059855,14.0001237,50.0057286,14.0001199,50.0055824,14.0001884,50.0053457,14.0003521,50.0050588,14.0005987,50.0049501,14.000673,50.0045864,14.0008406,50.0045199,14.000869,50.0043872,14.0009368,50.0042394,14.0009779,50.0041519,14.0010128],[49.9990872,13.9966278,49.9990422,13.9967131,49.9990212,13.9968673,49.9989938,13.9972128,49.9989641,13.9974839,49.9989164,13.9978799,49.9988768,13.9981951,49.998862,13.9983551,49.9987079,13.9984843,49.9986762,13.9984928,49.9986562,13.9984669,49.9985917,13.9983118,49.9985562,13.9981193,49.9985283,13.9980179],[50.0051576,14.0068141,50.0050328,14.0065924,50.0048426,14.0063395,50.0046662,14.0061314,50.0044074,14.0058807,50.0042824,14.0058045,50.004044,14.0057249,50.0039169,14.005624,50.0038185,14.005503,50.0037755,14.0053939,50.0037366,14.0052484,50.0036536,14.004575,50.0036486,14.0040206,50.0036505,14.0038158,50.0037659,14.0033832,50.0037716,14.0031258,50.0037701,14.003033,50.0037842,14.0028112,50.0038462,14.0026325,50.0039917,14.0022873,50.0041259,14.0021137,50.0041671,14.0020369,50.0042123,14.0018443],[49.9974451,13.9984012,49.9976071,13.9986702,49.9977822,13.9990045,49.9978134,13.9991166],[49.9993615,13.9988452,49.9993663,13.998934,49.9994096,13.9992555,49.9994918,13.9996146],[49.9992106,13.9977535,49.9992191,13.9978219,49.9993574,13.9984878,49.9993615,13.9988452],[49.9982775,13.9978306,49.9982457,13.9977178,49.9982188,13.9976073,49.9981964,13.997444,49.9981767,13.997342,49.9981269,13.9971042,49.9981096,13.9970615],[49.9978071,13.9977227,49.9978269,13.9975857,49.9978261,13.9974028,49.997843,13.9973345,49.997875,13.9972808,49.9979668,13.997219,49.998001,13.9972272,49.9980701,13.9972923,49.9981964,13.997444],[49.9990426,14.0021208,49.9990531,14.0021998,49.9990765,14.0023349,49.9991365,14.0024603],[50.002726,14.0027611,50.0027401,14.0025346,50.0034875,14.0017017],[50.0009146,13.9985,50.0008569,13.9985868,50.0006638,13.998975],[50.000894,14.0038131,50.0009214,14.0039886,50.0009075,14.0041105,50.0008967,14.0041851,50.0008715,14.0042468],[49.9999867,13.9916003,49.9993875,13.9946375],[50.0006658,13.9989573,50.0013695,13.9952674,50.0013791,13.9951593,50.0013837,13.9950721,50.0013672,13.9949736,50.0013056,13.9947685,50.0012678,13.994484,50.0012679,13.9941772,50.0012924,13.9939516,50.001352,13.9937235,50.0017432,13.9924571,50.0021895,13.9911365,50.0030288,13.9888375,50.0031984,13.9883708,50.0034218,13.9876812,50.0034622,13.9874579,50.003486,13.9873291,50.0035899,13.9867659,50.0037589,13.9860095,50.0044476,13.9828923,50.0047809,13.9816735,50.0052041,13.9800512,50.0052641,13.979607,50.0052839,13.9791489,50.0052403,13.9784945,50.0050929,13.9779031,50.0050019,13.977625,50.0047364,13.9765056,50.0046386,13.9761691,50.0045638,13.9758353,50.0045017,13.9754256,50.0044607,13.9744777,50.0044188,13.9733141,50.004551,13.9722429,50.0047466,13.9712024,50.0051509,13.9696545,50.0058086,13.9682362,50.0065075,13.9669726,50.0069544,13.9658468,50.0072143,13.9650782,50.0075082,13.9643603,50.0078188,13.9636425,50.0081287,13.9629664,50.0086349,13.9619557,50.0090231,13.9612284,50.009154,13.9609417,50.0096778,13.959897,50.010031,13.9593331,50.010271,13.9589765,50.0108859,13.9584009],[50.0000769,14.002799,50.0001118,14.0026538,50.0003369,14.0026339,50.0003716,14.0027325],[49.9999536,14.0025929,49.999896,14.002582,49.9998312,14.002562],[49.9994287,14.0012585,49.9996366,14.0018256],[49.9996192,14.0020725,49.9996076,14.0020941,49.9996018,14.0021779,49.9996099,14.002238],[49.9998312,14.002562,49.9997373,14.002322,49.9996873,14.0021832],[49.9996873,14.0021832,49.9996709,14.0021449,49.9996377,14.0020839,49.9996192,14.0020725],[49.9996092,14.0018512,49.9995653,14.0018888,49.9995894,14.001971,49.9996192,14.0020725],[49.9996366,14.0018256,49.9996899,14.0019693],[49.9993559,14.0011673,49.9994287,14.0012585],[49.9999696,14.0027115,49.9999536,14.0025929,49.9999494,14.0025452,49.9999665,14.0024905,49.9999878,14.0024683,50.000061,14.0024476,50.0004161,14.0024344,50.0004356,14.0024351,50.0004507,14.0024449,50.0004619,14.0024627,50.0004669,14.0024843],[50.000628,14.0024928,50.0006039,14.0024708,50.000588,14.002466,50.0005718,14.0024703,50.0005563,14.0024783,50.0005449,14.0024959,50.0005112,14.002492,50.0004669,14.0024843],[50.0004155,14.002286,50.0004158,14.002368,50.0004161,14.0024344],[50.0030696,13.9984453,50.0030293,13.9985426,50.0029975,13.9986193,50.0029094,13.9990477,50.0028104,13.999625,50.0027566,14.0000198,50.0027695,14.0002675,50.0027921,14.0005527],[50.0027921,14.0005527,50.002853,14.0001635,50.0028878,13.9999412,50.002947,13.9994309],[50.0003581,14.0022652,50.0003669,14.0022828,50.0003828,14.0022879,50.0004155,14.002286,50.0004727,14.0022883,50.000531,14.0022955,50.0007089,14.0023374,50.0009269,14.0023923,50.0010204,14.0024152,50.0010496,14.0024731],[49.9936861,13.9995022,49.9937896,13.9995653,49.9940422,13.999905,49.9942094,14.000153,49.9944791,14.0002118,49.9946315,14.0007048,49.9948454,14.0007968,49.9952276,14.0007296,49.9954892,14.0006517,49.9957031,14.0008074,49.9960421,14.0012109,49.9964675,14.0015542,49.9965185,14.0016124],[50.004321,14.000464,50.0043407,14.0004914,50.0044408,14.0005885,50.0049895,13.9998742],[49.9998747,14.000811,49.9999947,14.0003935,49.9999779,14.0002018],[50.0008709,14.0019979,50.0005325,14.0019492,50.0005463,14.0021633],[50.0007143,14.0024026,50.0007236,14.0025319,50.0007435,14.0026007,50.0007581,14.0026303,50.0007768,14.0026518,50.0008145,14.0026558,50.0008443,14.0026404,50.000866,14.0026077,50.0008804,14.0025538,50.0009016,14.0024388],[49.999646,14.0019445,49.9996092,14.0018512],[49.9996366,14.0018256,49.9996092,14.0018512],[50.0033708,13.9983121,50.003351,13.998304,50.0033321,13.9982963,50.0033004,13.9982833,50.0032832,13.9982763],[50.0000047,14.0012355,50.0000111,14.0012605,50.0000087,14.0012879,49.9999938,14.0013147,49.9999804,14.0013372,49.9999776,14.0013544,49.9999804,14.0013775,49.9999918,14.0013952,49.9999956,14.0014268,49.9999956,14.0015078,50.0000169,14.0015803,50.0000349,14.0016296,50.0000421,14.001672,50.000024,14.0017034],[49.9996899,14.0019693,49.9998183,14.002267,49.9998581,14.0023327,49.9998926,14.0023561,49.9999103,14.00235,49.9999396,14.0023342,50.000009,14.0023062,50.000075,14.0022899,50.0001557,14.0022827,50.000211,14.002278],[50.0002663,14.0022734,50.0002998,14.0022706,50.0003581,14.0022652],[50.000211,14.002278,50.0002663,14.0022734],[49.9999063,14.0026257,49.9997024,14.0028324,49.999682,14.0028408,49.9996568,14.0028446,49.999637,14.0028343,49.9995547,14.0026662]],"pathwayTypes":[5,5,5,5,3,5,5,5,3,6,6,4,0,5,4,5,3,3,3,3,4,0,3,0,6,0,6,6,3,2,6,2,6,6,6,3,3,4,4,0,3,3,5,3,5,4,4,5,5,2,0,1,6,3,5,5,5,3,3,4,5,5,5,0,3,6,3,6,6,3,3,3,0,3,0,6,6,3,3,3,4,4,2,4,5,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,4,5,0,0,0,0,0,0,4],"areas":[[50.0010112,13.999894,50.000744,13.9998439,50.0007226,13.9999721,50.000727,14.000076,50.0007538,14.000195,50.0007937,14.0002595,50.0008435,14.0002936,50.0009122,14.000277,50.0009644,14.0002193,50.0009941,14.0001238,50.0010068,14.0000555,50.0010112,13.999894]],"areaTypes":[0],"poIs":[50.00071416666666,14.002033849999998,4,50.00285014,13.99991212,4,50.002869687499995,14.00042415,4,50.0030134625,13.999101749999998,4,49.99883071111112,14.001819111111109,7,49.999322333333325,14.002257572222225,3,50.000235599999996,14.002608216666667,4,50.00073472857143,14.002719957142858,4,50.00099971428572,13.998831671428572,4,50.0031177,13.998514216666669,4,50.0002324,14.0028236,4,50.0026695,14.0029779,0,50.0030234,13.9993778,0,50.0008623,14.0019217,6,50.0003647,14.0028616,7,49.9998941,14.0020782,7,49.9998905,14.0027825,7,50.0024305,14.0030475,7,49.9999946,14.0022033,0,49.9999798,14.0026563,7,49.9998093,14.0010834,6,49.9996681,14.0003986,6,50.00001,14.00266,7,49.99977,14.00246,7,50.0004711,14.0066497,6,50.0004706,14.0066172,6,50.0009308,14.0025683,6,49.9997602,14.0027387,7,50.0030444,13.9982462,7]},"playAreaCenter":{"lat":50,"lon":14},"playAreaRadius":500},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:35:22.5695913Z","actor":"9241284e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"9241284e","displayName":"Player5","playersReady":1,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:35:22.5729501Z","actor":"102d639a","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"102d639a","displayName":"Player4","playersReady":2,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:35:22.5759115Z","actor":"241c9583","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"241c9583","displayName":"Player1","playersReady":3,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:35:22.5787945Z","actor":"b9b2dc29","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"b9b2dc29","displayName":"Player6","playersReady":4,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T12:35:22.5818697Z","actor":"3c4a4e0c","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"3c4a4e0c","displayName":"Player2","playersReady":5,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T12:35:22.5848597Z","actor":"9869e54d","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"9869e54d","displayName":"Player3","playersReady":6,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T12:35:22.5885546Z","actor":"241c9583","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T12:35:22.5917127Z","actor":"241c9583","eventType":"RoleAssigned","payload":{"clientUuid":"241c9583","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0004706,"lon":14.0066172},"type":"Progress","durationMs":5753,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0030234,"lon":13.9993778},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0030134625,"lon":13.999101749999998},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T12:35:22.5944493Z","actor":"3c4a4e0c","eventType":"RoleAssigned","payload":{"clientUuid":"3c4a4e0c","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0004706,"lon":14.0066172},"type":"Progress","durationMs":5753,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0030234,"lon":13.9993778},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0030134625,"lon":13.999101749999998},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T12:35:22.5972392Z","actor":"9869e54d","eventType":"RoleAssigned","payload":{"clientUuid":"9869e54d","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T12:35:22.5999905Z","actor":"102d639a","eventType":"RoleAssigned","payload":{"clientUuid":"102d639a","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0004706,"lon":14.0066172},"type":"Progress","durationMs":5753,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0030234,"lon":13.9993778},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0030134625,"lon":13.999101749999998},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T12:35:22.6027702Z","actor":"9241284e","eventType":"RoleAssigned","payload":{"clientUuid":"9241284e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0004706,"lon":14.0066172},"type":"Progress","durationMs":5753,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0030234,"lon":13.9993778},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0030134625,"lon":13.999101749999998},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T12:35:22.6057251Z","actor":"b9b2dc29","eventType":"RoleAssigned","payload":{"clientUuid":"b9b2dc29","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0004706,"lon":14.0066172},"type":"Progress","durationMs":5753,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0030234,"lon":13.9993778},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0030134625,"lon":13.999101749999998},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T12:35:30.5546082Z","actor":"241c9583","eventType":"TaskCompleted","payload":{"clientUuid":"241c9583","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T12:35:31.0871344Z","actor":"9869e54d","eventType":"SabotageStarted","payload":{"sabotageId":"a4205669","type":"CommsBlackout","initiatorId":"9869e54d","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":49.9989492,"lon":13.996158},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T12:35:34.2642481Z","actor":"241c9583","eventType":"RepairStarted","payload":{"sabotageId":"a4205669","stationId":"comms_station","playerId":"241c9583"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T12:35:37.2863369Z","actor":"241c9583","eventType":"SabotageRepaired","payload":{"sabotageId":"a4205669","type":"CommsBlackout","repairerIds":["241c9583"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T12:36:11.3876146Z","actor":"9869e54d","eventType":"SabotageStarted","payload":{"sabotageId":"7a3923f0","type":"CriticalMeltdown","initiatorId":"9869e54d","deadline":"2026-01-27T12:36:56.3875774Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":49.999383,"lon":13.998005},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.002391,"lon":14.0028971},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T12:36:13.0058801Z","actor":"241c9583","eventType":"RepairStarted","payload":{"sabotageId":"7a3923f0","stationId":"reactor_alpha","playerId":"241c9583"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T12:36:13.0117365Z","actor":"3c4a4e0c","eventType":"RepairStarted","payload":{"sabotageId":"7a3923f0","stationId":"reactor_beta","playerId":"3c4a4e0c"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T12:36:16.0186666Z","actor":"241c9583","eventType":"SabotageRepaired","payload":{"sabotageId":"7a3923f0","type":"CriticalMeltdown","repairerIds":["241c9583","3c4a4e0c"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T12:36:22.1825847Z","actor":"9869e54d","eventType":"PlayerKilled","payload":{"victimId":"241c9583","killerId":"9869e54d","bodyId":"1ce4c745","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T12:36:22.7785355Z","actor":"3c4a4e0c","eventType":"BodyReported","payload":{"reporterId":"3c4a4e0c","bodyId":"1ce4c745","victimId":"241c9583"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T12:36:22.7814549Z","actor":"3c4a4e0c","eventType":"MeetingStarted","payload":{"meetingId":"8760ee81","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T12:36:26.2813784Z","discussionEndTime":"2026-01-27T12:36:28.7813784Z","votingEndTime":"2026-01-27T12:36:38.7813784Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T12:36:28.7991263Z","actor":"3c4a4e0c","eventType":"PlayerVoted","payload":{"voterId":"3c4a4e0c","targetId":"9869e54d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T12:36:28.9226572Z","actor":"9869e54d","eventType":"PlayerVoted","payload":{"voterId":"9869e54d","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T12:36:29.0476409Z","actor":"102d639a","eventType":"PlayerVoted","payload":{"voterId":"102d639a","targetId":"9869e54d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T12:36:29.1708497Z","actor":"9241284e","eventType":"PlayerVoted","payload":{"voterId":"9241284e","targetId":"9869e54d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T12:36:29.2947846Z","actor":"b9b2dc29","eventType":"PlayerVoted","payload":{"voterId":"b9b2dc29","targetId":"9869e54d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T12:36:38.7834836Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"9869e54d":4,"__SKIP__":1},"ejectedPlayerId":"9869e54d","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T12:36:38.8442703Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"9869e54d","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T12:36:38.8471455Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["241c9583","3c4a4e0c","102d639a","9241284e","b9b2dc29"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T12:39:54.1831699Z","actor":"241c9583","eventType":"PlayerLeft","payload":{"clientUuid":"241c9583","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T12:39:54.202954Z","actor":"3c4a4e0c","eventType":"HostChanged","payload":{"newHostId":"3c4a4e0c","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":43,"serverSeq":43,"timestamp":"2026-01-27T12:39:54.2149688Z","actor":"3c4a4e0c","eventType":"PlayerLeft","payload":{"clientUuid":"3c4a4e0c","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":44,"serverSeq":44,"timestamp":"2026-01-27T12:39:54.2290001Z","actor":"9869e54d","eventType":"HostChanged","payload":{"newHostId":"9869e54d","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":45,"serverSeq":45,"timestamp":"2026-01-27T12:39:54.2316735Z","actor":"9869e54d","eventType":"PlayerLeft","payload":{"clientUuid":"9869e54d","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":46,"serverSeq":46,"timestamp":"2026-01-27T12:39:54.2341024Z","actor":"102d639a","eventType":"HostChanged","payload":{"newHostId":"102d639a","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":47,"serverSeq":47,"timestamp":"2026-01-27T12:39:54.2364997Z","actor":"102d639a","eventType":"PlayerLeft","payload":{"clientUuid":"102d639a","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":48,"serverSeq":48,"timestamp":"2026-01-27T12:39:54.2387338Z","actor":"9241284e","eventType":"HostChanged","payload":{"newHostId":"9241284e","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":49,"serverSeq":49,"timestamp":"2026-01-27T12:39:54.2411757Z","actor":"9241284e","eventType":"PlayerLeft","payload":{"clientUuid":"9241284e","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":50,"serverSeq":50,"timestamp":"2026-01-27T12:39:54.2435854Z","actor":"b9b2dc29","eventType":"HostChanged","payload":{"newHostId":"b9b2dc29","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":51,"serverSeq":51,"timestamp":"2026-01-27T12:39:54.2463558Z","actor":"b9b2dc29","eventType":"PlayerLeft","payload":{"clientUuid":"b9b2dc29","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/8da0b3e582444daf_20260127134127/snapshot_7.json b/data/archive/8da0b3e582444daf_20260127134127/snapshot_7.json new file mode 100644 index 0000000..01ddca4 --- /dev/null +++ b/data/archive/8da0b3e582444daf_20260127134127/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "8da0b3e582444daf", + "lastEventId": 7, + "timestamp": "2026-01-27T13:41:27.5200488Z", + "checksum": "926ef187cbeca5bbb412bbd70e86494ae9ae0bad25bb322cf2e8798fb46156ee", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/8da0b3e582444daf_20260127134127/wal_20260127123926.ndjson b/data/archive/8da0b3e582444daf_20260127134127/wal_20260127123926.ndjson new file mode 100644 index 0000000..b221957 --- /dev/null +++ b/data/archive/8da0b3e582444daf_20260127134127/wal_20260127123926.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:39:26.5121473Z","actor":"6fbe45dc","eventType":"PlayerJoined","payload":{"clientUuid":"6fbe45dc","displayName":"ConsOwner2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:39:28.6797912Z","actor":"bf047679","eventType":"PlayerJoined","payload":{"clientUuid":"bf047679","displayName":"ConsPlayer2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:39:28.7607572Z","actor":"6fbe45dc","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:39:29.2327761Z","actor":"6fbe45dc","eventType":"MapDataError","payload":{"error":"Nepoda\u0159ilo se na\u010D\u00EDst mapov\u00E1 data"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:39:54.1825732Z","actor":"6fbe45dc","eventType":"PlayerLeft","payload":{"clientUuid":"6fbe45dc","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:39:54.1976038Z","actor":"bf047679","eventType":"HostChanged","payload":{"newHostId":"bf047679","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:39:54.2127627Z","actor":"bf047679","eventType":"PlayerLeft","payload":{"clientUuid":"bf047679","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/9f07a2d91db949ad_20260127133127/snapshot_7.json b/data/archive/9f07a2d91db949ad_20260127133127/snapshot_7.json new file mode 100644 index 0000000..733d9c2 --- /dev/null +++ b/data/archive/9f07a2d91db949ad_20260127133127/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "9f07a2d91db949ad", + "lastEventId": 7, + "timestamp": "2026-01-27T13:31:27.538973Z", + "checksum": "d2834a20c3fbf35631ac19aa4cc881dc4ea22da294f378c9ea175f79def2e5b1", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/9f07a2d91db949ad_20260127133127/wal_20260127123049.ndjson b/data/archive/9f07a2d91db949ad_20260127133127/wal_20260127123049.ndjson new file mode 100644 index 0000000..340c10b --- /dev/null +++ b/data/archive/9f07a2d91db949ad_20260127133127/wal_20260127123049.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:30:49.874661Z","actor":"40ebfa6b","eventType":"PlayerJoined","payload":{"clientUuid":"40ebfa6b","displayName":"StructOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:30:52.0335583Z","actor":"3a2e56c8","eventType":"PlayerJoined","payload":{"clientUuid":"3a2e56c8","displayName":"StructPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:30:52.1103078Z","actor":"40ebfa6b","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:30:52.6490218Z","actor":"40ebfa6b","eventType":"MapDataError","payload":{"error":"Nepoda\u0159ilo se na\u010D\u00EDst mapov\u00E1 data"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:31:17.2530749Z","actor":"40ebfa6b","eventType":"PlayerLeft","payload":{"clientUuid":"40ebfa6b","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:31:17.2678721Z","actor":"3a2e56c8","eventType":"HostChanged","payload":{"newHostId":"3a2e56c8","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:31:17.2792665Z","actor":"3a2e56c8","eventType":"PlayerLeft","payload":{"clientUuid":"3a2e56c8","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/a16bac8d99e74830_20260127134127/snapshot_12.json b/data/archive/a16bac8d99e74830_20260127134127/snapshot_12.json new file mode 100644 index 0000000..a422eba --- /dev/null +++ b/data/archive/a16bac8d99e74830_20260127134127/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "a16bac8d99e74830", + "lastEventId": 12, + "timestamp": "2026-01-27T13:41:27.5257123Z", + "checksum": "ce1d6aec022b9dfcd40896dc2d137c997eb55b180fcb565d259dd9d3fba5efe2", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0858413, + "lon": 14.4205435 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.08849002857143, + "lon": 14.421553200000002 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0875007, + "lon": 14.4179042 + }, + "type": "Progress", + "durationMs": 5708, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.08828, + "lon": 14.4177757 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.0863048, + "lon": 14.4194325 + }, + "type": "Progress", + "durationMs": 9104, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/a16bac8d99e74830_20260127134127/wal_20260127123640.ndjson b/data/archive/a16bac8d99e74830_20260127134127/wal_20260127123640.ndjson new file mode 100644 index 0000000..93e95b6 --- /dev/null +++ b/data/archive/a16bac8d99e74830_20260127134127/wal_20260127123640.ndjson @@ -0,0 +1,12 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:36:40.9282512Z","actor":"017576cf","eventType":"PlayerJoined","payload":{"clientUuid":"017576cf","displayName":"MapOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:36:43.1112418Z","actor":"4114c8de","eventType":"PlayerJoined","payload":{"clientUuid":"4114c8de","displayName":"MapPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:36:43.1908006Z","actor":"017576cf","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:36:50.0726749Z","actor":"017576cf","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:36:50.1080763Z","actor":"017576cf","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"017576cf","displayName":"MapOwner","playersReady":1,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:36:50.1109536Z","actor":"4114c8de","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"4114c8de","displayName":"MapPlayer","playersReady":2,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:36:50.1582734Z","actor":"017576cf","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:36:50.1612862Z","actor":"017576cf","eventType":"RoleAssigned","payload":{"clientUuid":"017576cf","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0858413,"lon":14.4205435},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.08849002857143,"lon":14.421553200000002},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0875007,"lon":14.4179042},"type":"Progress","durationMs":5708,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.08828,"lon":14.4177757},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.0863048,"lon":14.4194325},"type":"Progress","durationMs":9104,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:36:50.164156Z","actor":"4114c8de","eventType":"RoleAssigned","payload":{"clientUuid":"4114c8de","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:37:01.7134162Z","actor":"017576cf","eventType":"PlayerLeft","payload":{"clientUuid":"017576cf","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:37:01.727792Z","actor":"4114c8de","eventType":"HostChanged","payload":{"newHostId":"4114c8de","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:37:01.7327062Z","actor":"4114c8de","eventType":"PlayerLeft","payload":{"clientUuid":"4114c8de","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/b9cffa33b9264559_20260127133627/snapshot_11.json b/data/archive/b9cffa33b9264559_20260127133627/snapshot_11.json new file mode 100644 index 0000000..cc7806f --- /dev/null +++ b/data/archive/b9cffa33b9264559_20260127133627/snapshot_11.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "b9cffa33b9264559", + "lastEventId": 11, + "timestamp": "2026-01-27T13:36:27.5272024Z", + "checksum": "eb35b9829659a173f4ff3ff4bffae656b8f7fd54d7d0b77addc9e65dc7e95d47", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0880837, + "lon": 14.4241303 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.0868455, + "lon": 14.4251958 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0881001, + "lon": 14.4251481 + }, + "type": "Progress", + "durationMs": 5959, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0868548, + "lon": 14.4252407 + }, + "type": "Progress", + "durationMs": 8586, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.0889995, + "lon": 14.4222151 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/b9cffa33b9264559_20260127133627/wal_20260127123120.ndjson b/data/archive/b9cffa33b9264559_20260127133627/wal_20260127123120.ndjson new file mode 100644 index 0000000..e8274d2 --- /dev/null +++ b/data/archive/b9cffa33b9264559_20260127133627/wal_20260127123120.ndjson @@ -0,0 +1,11 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:31:20.3290473Z","actor":"9e0b337c","eventType":"PlayerJoined","payload":{"clientUuid":"9e0b337c","displayName":"TaskOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:31:22.4991652Z","actor":"34840c6b","eventType":"PlayerJoined","payload":{"clientUuid":"34840c6b","displayName":"TaskPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:31:22.5789842Z","actor":"9e0b337c","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:31:29.5525429Z","actor":"9e0b337c","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:31:29.5893646Z","actor":"9e0b337c","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"9e0b337c","displayName":"TaskOwner","playersReady":1,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:31:29.5990032Z","actor":"34840c6b","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"34840c6b","displayName":"TaskPlayer","playersReady":2,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:31:29.649794Z","actor":"9e0b337c","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:31:29.6526966Z","actor":"9e0b337c","eventType":"RoleAssigned","payload":{"clientUuid":"9e0b337c","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0880837,"lon":14.4241303},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0868455,"lon":14.4251958},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0881001,"lon":14.4251481},"type":"Progress","durationMs":5959,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0868548,"lon":14.4252407},"type":"Progress","durationMs":8586,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.0889995,"lon":14.4222151},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:31:29.6555997Z","actor":"34840c6b","eventType":"RoleAssigned","payload":{"clientUuid":"34840c6b","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:31:41.1308257Z","actor":"34840c6b","eventType":"PlayerLeft","payload":{"clientUuid":"34840c6b","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:31:41.1452412Z","actor":"9e0b337c","eventType":"PlayerLeft","payload":{"clientUuid":"9e0b337c","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/cf3be038c5a3472e_20260127134127/snapshot_7.json b/data/archive/cf3be038c5a3472e_20260127134127/snapshot_7.json new file mode 100644 index 0000000..89f0e14 --- /dev/null +++ b/data/archive/cf3be038c5a3472e_20260127134127/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "cf3be038c5a3472e", + "lastEventId": 7, + "timestamp": "2026-01-27T13:41:27.521301Z", + "checksum": "b8c94dca9682f3f2308d847b765fd5d473149dcb87f84a9c6dff93f403e2d622", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/cf3be038c5a3472e_20260127134127/wal_20260127123704.ndjson b/data/archive/cf3be038c5a3472e_20260127134127/wal_20260127123704.ndjson new file mode 100644 index 0000000..d079b65 --- /dev/null +++ b/data/archive/cf3be038c5a3472e_20260127134127/wal_20260127123704.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:37:04.8009503Z","actor":"d23d3566","eventType":"PlayerJoined","payload":{"clientUuid":"d23d3566","displayName":"StructOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:37:06.9588849Z","actor":"70b555e6","eventType":"PlayerJoined","payload":{"clientUuid":"70b555e6","displayName":"StructPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:37:07.0412743Z","actor":"d23d3566","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:37:07.5920723Z","actor":"d23d3566","eventType":"MapDataError","payload":{"error":"Nepoda\u0159ilo se na\u010D\u00EDst mapov\u00E1 data"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:37:32.1754057Z","actor":"d23d3566","eventType":"PlayerLeft","payload":{"clientUuid":"d23d3566","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:37:32.1790126Z","actor":"70b555e6","eventType":"HostChanged","payload":{"newHostId":"70b555e6","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:37:32.1806877Z","actor":"70b555e6","eventType":"PlayerLeft","payload":{"clientUuid":"70b555e6","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/d3e8a657109144ce_20260127133627/snapshot_7.json b/data/archive/d3e8a657109144ce_20260127133627/snapshot_7.json new file mode 100644 index 0000000..ff9ac8f --- /dev/null +++ b/data/archive/d3e8a657109144ce_20260127133627/snapshot_7.json @@ -0,0 +1,18 @@ +{ + "lobbyId": "d3e8a657109144ce", + "lastEventId": 7, + "timestamp": "2026-01-27T13:36:27.5310617Z", + "checksum": "0b23ea5bf52ae1200a729d7db310feb1c8a9307f014bbc58d2e532468d112a91", + "phase": "Lobby", + "players": [], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/d3e8a657109144ce_20260127133627/wal_20260127123144.ndjson b/data/archive/d3e8a657109144ce_20260127133627/wal_20260127123144.ndjson new file mode 100644 index 0000000..3e2cbe8 --- /dev/null +++ b/data/archive/d3e8a657109144ce_20260127133627/wal_20260127123144.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:31:44.2106429Z","actor":"e5430f33","eventType":"PlayerJoined","payload":{"clientUuid":"e5430f33","displayName":"SabOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:31:46.3699637Z","actor":"c80624db","eventType":"PlayerJoined","payload":{"clientUuid":"c80624db","displayName":"SabPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:31:46.4674407Z","actor":"e5430f33","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:31:46.9703471Z","actor":"e5430f33","eventType":"MapDataError","payload":{"error":"Nepoda\u0159ilo se na\u010D\u00EDst mapov\u00E1 data"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:32:11.6134539Z","actor":"e5430f33","eventType":"PlayerLeft","payload":{"clientUuid":"e5430f33","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:32:11.61894Z","actor":"c80624db","eventType":"HostChanged","payload":{"newHostId":"c80624db","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:32:11.6239038Z","actor":"c80624db","eventType":"PlayerLeft","payload":{"clientUuid":"c80624db","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/dc41c9d596db4946_20260127134127/snapshot_12.json b/data/archive/dc41c9d596db4946_20260127134127/snapshot_12.json new file mode 100644 index 0000000..9f99fd2 --- /dev/null +++ b/data/archive/dc41c9d596db4946_20260127134127/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "dc41c9d596db4946", + "lastEventId": 12, + "timestamp": "2026-01-27T13:41:27.518834Z", + "checksum": "6cf9b25105fdf12ec96a8dedb18dd85aa5fef345c2c08a50045e7a53df078ffc", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.085561139999996, + "lon": 14.42309244 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.085837, + "lon": 14.4188593 + }, + "type": "Progress", + "durationMs": 7152, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0859669, + "lon": 14.4188964 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0860902, + "lon": 14.4235956 + }, + "type": "Progress", + "durationMs": 5893, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.09006194, + "lon": 14.421070419999998 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/dc41c9d596db4946_20260127134127/wal_20260127123735.ndjson b/data/archive/dc41c9d596db4946_20260127134127/wal_20260127123735.ndjson new file mode 100644 index 0000000..ab88017 --- /dev/null +++ b/data/archive/dc41c9d596db4946_20260127134127/wal_20260127123735.ndjson @@ -0,0 +1,12 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:37:35.2541457Z","actor":"71264bdb","eventType":"PlayerJoined","payload":{"clientUuid":"71264bdb","displayName":"TaskOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:37:37.4139472Z","actor":"eb691c12","eventType":"PlayerJoined","payload":{"clientUuid":"eb691c12","displayName":"TaskPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:37:37.5134996Z","actor":"71264bdb","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:37:44.5503729Z","actor":"71264bdb","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:37:44.5809875Z","actor":"71264bdb","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"71264bdb","displayName":"TaskOwner","playersReady":1,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:37:44.5845823Z","actor":"eb691c12","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"eb691c12","displayName":"TaskPlayer","playersReady":2,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:37:44.6254479Z","actor":"71264bdb","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:37:44.6285146Z","actor":"71264bdb","eventType":"RoleAssigned","payload":{"clientUuid":"71264bdb","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:37:44.6379635Z","actor":"eb691c12","eventType":"RoleAssigned","payload":{"clientUuid":"eb691c12","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.085561139999996,"lon":14.42309244},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.085837,"lon":14.4188593},"type":"Progress","durationMs":7152,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0859669,"lon":14.4188964},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0860902,"lon":14.4235956},"type":"Progress","durationMs":5893,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.09006194,"lon":14.421070419999998},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:37:56.0253744Z","actor":"71264bdb","eventType":"PlayerLeft","payload":{"clientUuid":"71264bdb","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:37:56.0403531Z","actor":"eb691c12","eventType":"HostChanged","payload":{"newHostId":"eb691c12","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:37:56.0461563Z","actor":"eb691c12","eventType":"PlayerLeft","payload":{"clientUuid":"eb691c12","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/df5878e2914a4104_20260127133627/snapshot_12.json b/data/archive/df5878e2914a4104_20260127133627/snapshot_12.json new file mode 100644 index 0000000..86931ec --- /dev/null +++ b/data/archive/df5878e2914a4104_20260127133627/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "df5878e2914a4104", + "lastEventId": 12, + "timestamp": "2026-01-27T13:36:27.5297309Z", + "checksum": "33e3631ebc9785562d42cb7d2a9ac0778daa8fbccf56496c6938f1da4305fe0b", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0870176, + "lon": 14.4213745 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.08900948, + "lon": 14.418448039999998 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.0856234, + "lon": 14.4229967 + }, + "type": "Progress", + "durationMs": 5157, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.0876224, + "lon": 14.4200385 + }, + "type": "Progress", + "durationMs": 6963, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.0873335, + "lon": 14.4229653 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/df5878e2914a4104_20260127133627/wal_20260127123214.ndjson b/data/archive/df5878e2914a4104_20260127133627/wal_20260127123214.ndjson new file mode 100644 index 0000000..bbae175 --- /dev/null +++ b/data/archive/df5878e2914a4104_20260127133627/wal_20260127123214.ndjson @@ -0,0 +1,12 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:32:14.6859818Z","actor":"ed7c3ca0","eventType":"PlayerJoined","payload":{"clientUuid":"ed7c3ca0","displayName":"BoundOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:32:16.8555282Z","actor":"dc9064ad","eventType":"PlayerJoined","payload":{"clientUuid":"dc9064ad","displayName":"BoundPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:32:16.9501429Z","actor":"ed7c3ca0","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:32:23.8552822Z","actor":"ed7c3ca0","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:32:23.8959605Z","actor":"ed7c3ca0","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ed7c3ca0","displayName":"BoundOwner","playersReady":1,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:32:23.897931Z","actor":"dc9064ad","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"dc9064ad","displayName":"BoundPlayer","playersReady":2,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:32:23.9389336Z","actor":"ed7c3ca0","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:32:23.940923Z","actor":"ed7c3ca0","eventType":"RoleAssigned","payload":{"clientUuid":"ed7c3ca0","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0870176,"lon":14.4213745},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.08900948,"lon":14.418448039999998},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0856234,"lon":14.4229967},"type":"Progress","durationMs":5157,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0876224,"lon":14.4200385},"type":"Progress","durationMs":6963,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.0873335,"lon":14.4229653},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:32:23.9426983Z","actor":"dc9064ad","eventType":"RoleAssigned","payload":{"clientUuid":"dc9064ad","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:32:35.4872775Z","actor":"ed7c3ca0","eventType":"PlayerLeft","payload":{"clientUuid":"ed7c3ca0","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:32:35.50212Z","actor":"dc9064ad","eventType":"HostChanged","payload":{"newHostId":"dc9064ad","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:32:35.5072261Z","actor":"dc9064ad","eventType":"PlayerLeft","payload":{"clientUuid":"dc9064ad","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/archive/e52ea7e70f9c4475_20260127133127/snapshot_12.json b/data/archive/e52ea7e70f9c4475_20260127133127/snapshot_12.json new file mode 100644 index 0000000..f36524d --- /dev/null +++ b/data/archive/e52ea7e70f9c4475_20260127133127/snapshot_12.json @@ -0,0 +1,74 @@ +{ + "lobbyId": "e52ea7e70f9c4475", + "lastEventId": 12, + "timestamp": "2026-01-27T13:31:27.5486405Z", + "checksum": "b974ca483616d916c79e6661a25e155a34d9905bf1e8bf044f958e3332ddecbe", + "phase": "Playing", + "players": [], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.0883326, + "lon": 14.4243654 + }, + "type": "Progress", + "durationMs": 9830, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.0888976, + "lon": 14.4235413 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.087982700000005, + "lon": 14.424510520000002 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.08682402000001, + "lon": 14.41780478 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.0879393, + "lon": 14.4195066 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.0875, + "lon": 14.4213 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/archive/e52ea7e70f9c4475_20260127133127/wal_20260127123025.ndjson b/data/archive/e52ea7e70f9c4475_20260127133127/wal_20260127123025.ndjson new file mode 100644 index 0000000..90005e2 --- /dev/null +++ b/data/archive/e52ea7e70f9c4475_20260127133127/wal_20260127123025.ndjson @@ -0,0 +1,12 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:30:25.9787759Z","actor":"b7418c2d","eventType":"PlayerJoined","payload":{"clientUuid":"b7418c2d","displayName":"MapOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:30:28.1494276Z","actor":"fb0eb73a","eventType":"PlayerJoined","payload":{"clientUuid":"fb0eb73a","displayName":"MapPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:30:28.2392972Z","actor":"b7418c2d","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:30:35.1386363Z","actor":"b7418c2d","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:30:35.1628141Z","actor":"b7418c2d","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"b7418c2d","displayName":"MapOwner","playersReady":1,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:30:35.1654642Z","actor":"fb0eb73a","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"fb0eb73a","displayName":"MapPlayer","playersReady":2,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:30:35.2103372Z","actor":"b7418c2d","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:30:35.2132385Z","actor":"b7418c2d","eventType":"RoleAssigned","payload":{"clientUuid":"b7418c2d","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0883326,"lon":14.4243654},"type":"Progress","durationMs":9830,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0888976,"lon":14.4235413},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.087982700000005,"lon":14.424510520000002},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.08682402000001,"lon":14.41780478},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.0879393,"lon":14.4195066},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:30:35.2177529Z","actor":"fb0eb73a","eventType":"RoleAssigned","payload":{"clientUuid":"fb0eb73a","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:30:46.7793718Z","actor":"b7418c2d","eventType":"PlayerLeft","payload":{"clientUuid":"b7418c2d","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:30:46.7861058Z","actor":"fb0eb73a","eventType":"HostChanged","payload":{"newHostId":"fb0eb73a","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:30:46.7889499Z","actor":"fb0eb73a","eventType":"PlayerLeft","payload":{"clientUuid":"fb0eb73a","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/0279d71c7f724395/wal_20260127102128.ndjson b/data/lobbies/0279d71c7f724395/wal_20260127102128.ndjson new file mode 100644 index 0000000..8a82b7e --- /dev/null +++ b/data/lobbies/0279d71c7f724395/wal_20260127102128.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:21:28.9604844Z","actor":"0362da4f","eventType":"PlayerJoined","payload":{"clientUuid":"0362da4f","displayName":"Player575"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:21:41.2794737Z","actor":"0362da4f","eventType":"PlayerLeft","payload":{"clientUuid":"0362da4f","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/03b93b3063404e93/wal_20260127021802.ndjson b/data/lobbies/03b93b3063404e93/wal_20260127021802.ndjson new file mode 100644 index 0000000..d1bf72c --- /dev/null +++ b/data/lobbies/03b93b3063404e93/wal_20260127021802.ndjson @@ -0,0 +1,40 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T02:18:02.6141571Z","actor":"2ba994f9","eventType":"PlayerJoined","payload":{"clientUuid":"2ba994f9","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T02:18:02.6450712Z","actor":"33e9ceaf","eventType":"PlayerJoined","payload":{"clientUuid":"33e9ceaf","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T02:18:02.9540123Z","actor":"d8cba8ed","eventType":"PlayerJoined","payload":{"clientUuid":"d8cba8ed","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T02:18:03.2494125Z","actor":"f974ff11","eventType":"PlayerJoined","payload":{"clientUuid":"f974ff11","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T02:18:03.5663164Z","actor":"2d3b88b9","eventType":"PlayerJoined","payload":{"clientUuid":"2d3b88b9","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T02:18:03.8690542Z","actor":"e1212181","eventType":"PlayerJoined","payload":{"clientUuid":"e1212181","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T02:18:04.1784241Z","actor":"2ba994f9","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T02:18:04.1808138Z","actor":"2ba994f9","eventType":"RoleAssigned","payload":{"clientUuid":"2ba994f9","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00082454256459,"lon":13.996240012846554},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.99992878376495,"lon":14.000707359735042},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00071148327634,"lon":13.995075093732805},"type":"Progress","durationMs":6129,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T02:18:04.1877373Z","actor":"33e9ceaf","eventType":"RoleAssigned","payload":{"clientUuid":"33e9ceaf","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T02:18:04.1896418Z","actor":"d8cba8ed","eventType":"RoleAssigned","payload":{"clientUuid":"d8cba8ed","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00082454256459,"lon":13.996240012846554},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.99992878376495,"lon":14.000707359735042},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00071148327634,"lon":13.995075093732805},"type":"Progress","durationMs":6129,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T02:18:04.1914679Z","actor":"f974ff11","eventType":"RoleAssigned","payload":{"clientUuid":"f974ff11","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00082454256459,"lon":13.996240012846554},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.99992878376495,"lon":14.000707359735042},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00071148327634,"lon":13.995075093732805},"type":"Progress","durationMs":6129,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T02:18:04.1933453Z","actor":"2d3b88b9","eventType":"RoleAssigned","payload":{"clientUuid":"2d3b88b9","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00082454256459,"lon":13.996240012846554},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.99992878376495,"lon":14.000707359735042},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00071148327634,"lon":13.995075093732805},"type":"Progress","durationMs":6129,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T02:18:04.19506Z","actor":"e1212181","eventType":"RoleAssigned","payload":{"clientUuid":"e1212181","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00082454256459,"lon":13.996240012846554},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.99992878376495,"lon":14.000707359735042},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00071148327634,"lon":13.995075093732805},"type":"Progress","durationMs":6129,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T02:18:06.4536545Z","actor":"2ba994f9","eventType":"TaskCompleted","payload":{"clientUuid":"2ba994f9","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T02:18:07.2305023Z","actor":"33e9ceaf","eventType":"SabotageStarted","payload":{"sabotageId":"2f9ea030","type":"CommsBlackout","initiatorId":"33e9ceaf","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":49.99967220755891,"lon":13.998852647110853},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T02:18:10.4012792Z","actor":"2ba994f9","eventType":"RepairStarted","payload":{"sabotageId":"2f9ea030","stationId":"comms_station","playerId":"2ba994f9"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T02:18:13.418833Z","actor":"2ba994f9","eventType":"SabotageRepaired","payload":{"sabotageId":"2f9ea030","type":"CommsBlackout","repairerIds":["2ba994f9"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T02:18:47.532129Z","actor":"33e9ceaf","eventType":"SabotageStarted","payload":{"sabotageId":"c958188d","type":"CriticalMeltdown","initiatorId":"33e9ceaf","deadline":"2026-01-27T02:19:32.5320756Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.00315315315315,"lon":14},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":49.99684684684685,"lon":14},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T02:18:49.1495194Z","actor":"2ba994f9","eventType":"RepairStarted","payload":{"sabotageId":"c958188d","stationId":"reactor_alpha","playerId":"2ba994f9"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T02:18:49.1507883Z","actor":"33e9ceaf","eventType":"RepairStarted","payload":{"sabotageId":"c958188d","stationId":"reactor_beta","playerId":"33e9ceaf"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T02:18:52.1624026Z","actor":"2ba994f9","eventType":"SabotageRepaired","payload":{"sabotageId":"c958188d","type":"CriticalMeltdown","repairerIds":["2ba994f9","33e9ceaf"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T02:18:58.3350281Z","actor":"33e9ceaf","eventType":"PlayerKilled","payload":{"victimId":"2ba994f9","killerId":"33e9ceaf","bodyId":"2d4c0d61","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T02:18:58.9229232Z","actor":"d8cba8ed","eventType":"BodyReported","payload":{"reporterId":"d8cba8ed","bodyId":"2d4c0d61","victimId":"2ba994f9"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T02:18:58.9286132Z","actor":"d8cba8ed","eventType":"MeetingStarted","payload":{"meetingId":"37df169a","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T02:19:02.4283968Z","discussionEndTime":"2026-01-27T02:19:04.9283968Z","votingEndTime":"2026-01-27T02:19:14.9283968Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T02:19:04.9433487Z","actor":"33e9ceaf","eventType":"PlayerVoted","payload":{"voterId":"33e9ceaf","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T02:19:05.0646195Z","actor":"d8cba8ed","eventType":"PlayerVoted","payload":{"voterId":"d8cba8ed","targetId":"33e9ceaf"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T02:19:05.188358Z","actor":"f974ff11","eventType":"PlayerVoted","payload":{"voterId":"f974ff11","targetId":"33e9ceaf"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T02:19:05.3130877Z","actor":"2d3b88b9","eventType":"PlayerVoted","payload":{"voterId":"2d3b88b9","targetId":"33e9ceaf"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T02:19:05.4385876Z","actor":"e1212181","eventType":"PlayerVoted","payload":{"voterId":"e1212181","targetId":"33e9ceaf"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T02:19:14.9442899Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"33e9ceaf":4,"__SKIP__":1},"ejectedPlayerId":"33e9ceaf","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T02:19:15.0158716Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"33e9ceaf","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T02:19:15.0199338Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["2ba994f9","d8cba8ed","f974ff11","2d3b88b9","e1212181"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T02:19:15.1471425Z","actor":"f974ff11","eventType":"PlayerLeft","payload":{"clientUuid":"f974ff11","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T02:19:15.1504222Z","actor":"d8cba8ed","eventType":"PlayerLeft","payload":{"clientUuid":"d8cba8ed","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T02:19:15.1528955Z","actor":"33e9ceaf","eventType":"PlayerLeft","payload":{"clientUuid":"33e9ceaf","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T02:19:15.1553288Z","actor":"2ba994f9","eventType":"PlayerLeft","payload":{"clientUuid":"2ba994f9","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T02:19:15.1592601Z","actor":"2d3b88b9","eventType":"HostChanged","payload":{"newHostId":"2d3b88b9","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T02:19:15.1626244Z","actor":"2d3b88b9","eventType":"PlayerLeft","payload":{"clientUuid":"2d3b88b9","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T02:19:15.1652633Z","actor":"e1212181","eventType":"HostChanged","payload":{"newHostId":"e1212181","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T02:19:15.166603Z","actor":"e1212181","eventType":"PlayerLeft","payload":{"clientUuid":"e1212181","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/07bcd6d33fa444ed/wal_20260127025443.ndjson b/data/lobbies/07bcd6d33fa444ed/wal_20260127025443.ndjson new file mode 100644 index 0000000..daa1e50 --- /dev/null +++ b/data/lobbies/07bcd6d33fa444ed/wal_20260127025443.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T02:54:43.1145884Z","actor":"75fc88cd","eventType":"PlayerJoined","payload":{"clientUuid":"75fc88cd","displayName":"Player575"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T02:54:45.5888545Z","actor":"75fc88cd","eventType":"PlayerLeft","payload":{"clientUuid":"75fc88cd","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/09cd98049a3047a0/wal_20260127024227.ndjson b/data/lobbies/09cd98049a3047a0/wal_20260127024227.ndjson new file mode 100644 index 0000000..061cf87 --- /dev/null +++ b/data/lobbies/09cd98049a3047a0/wal_20260127024227.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T02:42:27.4987285Z","actor":"c695bd67","eventType":"PlayerJoined","payload":{"clientUuid":"c695bd67","displayName":"Player"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T02:42:32.2873738Z","actor":"c695bd67","eventType":"PlayerLeft","payload":{"clientUuid":"c695bd67","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/0dc9dce2a9064716/wal_20260127102821.ndjson b/data/lobbies/0dc9dce2a9064716/wal_20260127102821.ndjson new file mode 100644 index 0000000..165c069 --- /dev/null +++ b/data/lobbies/0dc9dce2a9064716/wal_20260127102821.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:28:21.6061027Z","actor":"fddce19a","eventType":"PlayerJoined","payload":{"clientUuid":"fddce19a","displayName":"Consist2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:28:22.7026102Z","actor":"fddce19a","eventType":"PlayerLeft","payload":{"clientUuid":"fddce19a","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/0e6c5afff94a45e4/wal_20260127140045.ndjson b/data/lobbies/0e6c5afff94a45e4/wal_20260127140045.ndjson new file mode 100644 index 0000000..2d3b45b --- /dev/null +++ b/data/lobbies/0e6c5afff94a45e4/wal_20260127140045.ndjson @@ -0,0 +1,22 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T14:00:45.524307Z","actor":"0a2becd5","eventType":"PlayerJoined","payload":{"clientUuid":"0a2becd5","displayName":"Hr\u00E1\u010D663"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T14:00:53.9906797Z","actor":"46e38e78","eventType":"PlayerJoined","payload":{"clientUuid":"46e38e78","displayName":"Hr\u00E1\u010D417"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T14:01:01.2261291Z","actor":"50365e04","eventType":"PlayerJoined","payload":{"clientUuid":"50365e04","displayName":"Hr\u00E1\u010D40"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T14:01:04.4187526Z","actor":"e00ba943","eventType":"PlayerJoined","payload":{"clientUuid":"e00ba943","displayName":"Hr\u00E1\u010D45"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T14:01:07.2598879Z","actor":"0a2becd5","eventType":"PlayerLeft","payload":{"clientUuid":"0a2becd5","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T14:01:07.2753178Z","actor":"46e38e78","eventType":"HostChanged","payload":{"newHostId":"46e38e78","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T14:01:13.8382397Z","actor":"46e38e78","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T14:01:20.7053348Z","actor":"46e38e78","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T14:01:20.7798648Z","actor":"50365e04","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"50365e04","displayName":"Hr\u00E1\u010D40","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T14:01:20.7854668Z","actor":"46e38e78","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"46e38e78","displayName":"Hr\u00E1\u010D417","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T14:01:20.7911544Z","actor":"e00ba943","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"e00ba943","displayName":"Hr\u00E1\u010D45","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T14:01:20.8425508Z","actor":"46e38e78","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T14:01:20.8457213Z","actor":"46e38e78","eventType":"RoleAssigned","payload":{"clientUuid":"46e38e78","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0893013,"lon":14.4195561},"type":"Progress","durationMs":6383,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0895991,"lon":14.4218499},"type":"Progress","durationMs":6013,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0877693,"lon":14.4209595},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0890353,"lon":14.4243006},"type":"Progress","durationMs":8130,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.0874164,"lon":14.4204676},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T14:01:20.8488245Z","actor":"50365e04","eventType":"RoleAssigned","payload":{"clientUuid":"50365e04","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0893013,"lon":14.4195561},"type":"Progress","durationMs":6383,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0895991,"lon":14.4218499},"type":"Progress","durationMs":6013,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0877693,"lon":14.4209595},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0890353,"lon":14.4243006},"type":"Progress","durationMs":8130,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.0874164,"lon":14.4204676},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T14:01:20.8516253Z","actor":"e00ba943","eventType":"RoleAssigned","payload":{"clientUuid":"e00ba943","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T14:01:45.1251065Z","actor":"50365e04","eventType":"EmergencyMeetingCalled","payload":{"callerId":"50365e04"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T14:01:45.129685Z","actor":"50365e04","eventType":"MeetingStarted","payload":{"meetingId":"732df4e0","type":"Emergency","meetingLocation":{"lat":50.0875,"lon":14.4213},"arrivalDeadline":"2026-01-27T14:01:48.6296709Z","discussionEndTime":"2026-01-27T14:01:51.1296709Z","votingEndTime":"2026-01-27T14:02:01.1296709Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T14:02:01.1415995Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T14:02:14.7596804Z","actor":"50365e04","eventType":"PlayerLeft","payload":{"clientUuid":"50365e04","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T14:02:15.5737918Z","actor":"46e38e78","eventType":"PlayerLeft","payload":{"clientUuid":"46e38e78","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T14:02:15.5828276Z","actor":"e00ba943","eventType":"HostChanged","payload":{"newHostId":"e00ba943","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T14:02:16.4626228Z","actor":"e00ba943","eventType":"PlayerLeft","payload":{"clientUuid":"e00ba943","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/0e93121380d346c8/wal_20260127102344.ndjson b/data/lobbies/0e93121380d346c8/wal_20260127102344.ndjson new file mode 100644 index 0000000..7ab9b86 --- /dev/null +++ b/data/lobbies/0e93121380d346c8/wal_20260127102344.ndjson @@ -0,0 +1,13 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:23:44.8477312Z","actor":"bf576280","eventType":"PlayerJoined","payload":{"clientUuid":"bf576280","displayName":"Player993"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:24:01.3216318Z","actor":"fd5e0212","eventType":"PlayerJoined","payload":{"clientUuid":"fd5e0212","displayName":"Player993"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T10:24:19.4418045Z","actor":"c04879fd","eventType":"PlayerJoined","payload":{"clientUuid":"c04879fd","displayName":"Player993"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T10:24:21.37678Z","actor":"bf576280","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T10:24:21.3942104Z","actor":"bf576280","eventType":"RoleAssigned","payload":{"clientUuid":"bf576280","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0010618,"lon":14.0020277},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001,"lon":14.00266},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0024305,"lon":14.0030475},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0031177,"lon":13.998514216666669},"type":"Progress","durationMs":8346,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":49.9999798,"lon":14.0026563},"type":"Progress","durationMs":5797,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T10:24:21.3999436Z","actor":"fd5e0212","eventType":"RoleAssigned","payload":{"clientUuid":"fd5e0212","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0010618,"lon":14.0020277},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001,"lon":14.00266},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0024305,"lon":14.0030475},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0031177,"lon":13.998514216666669},"type":"Progress","durationMs":8346,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":49.9999798,"lon":14.0026563},"type":"Progress","durationMs":5797,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T10:24:21.4053589Z","actor":"c04879fd","eventType":"RoleAssigned","payload":{"clientUuid":"c04879fd","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T10:24:26.7977281Z","actor":"c04879fd","eventType":"PlayerKilled","payload":{"victimId":"fd5e0212","killerId":"c04879fd","bodyId":"a81a32df","location":{"lat":50,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T10:24:26.800962Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["c04879fd"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T10:24:28.3998591Z","actor":"fd5e0212","eventType":"PlayerLeft","payload":{"clientUuid":"fd5e0212","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T10:24:29.3256984Z","actor":"bf576280","eventType":"PlayerLeft","payload":{"clientUuid":"bf576280","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T10:24:29.3276824Z","actor":"c04879fd","eventType":"HostChanged","payload":{"newHostId":"c04879fd","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T10:24:30.1810535Z","actor":"c04879fd","eventType":"PlayerLeft","payload":{"clientUuid":"c04879fd","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/13274b646ecc4290/wal_20260127004106.ndjson b/data/lobbies/13274b646ecc4290/wal_20260127004106.ndjson new file mode 100644 index 0000000..6025afd --- /dev/null +++ b/data/lobbies/13274b646ecc4290/wal_20260127004106.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T00:41:06.8032472Z","actor":"27ebd485","eventType":"PlayerJoined","payload":{"clientUuid":"27ebd485","displayName":"Bot1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T00:41:07.8141168Z","actor":"27ebd485","eventType":"PlayerLeft","payload":{"clientUuid":"27ebd485","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/1e9715c56e89484b/wal_20260127120648.ndjson b/data/lobbies/1e9715c56e89484b/wal_20260127120648.ndjson new file mode 100644 index 0000000..0f5dccd --- /dev/null +++ b/data/lobbies/1e9715c56e89484b/wal_20260127120648.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:06:48.6355924Z","actor":"e7156c06","eventType":"PlayerJoined","payload":{"clientUuid":"e7156c06","displayName":"Consist0"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:06:48.7332485Z","actor":"e7156c06","eventType":"PlayerLeft","payload":{"clientUuid":"e7156c06","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/1eb1c225d579434a/wal_20260127101045.ndjson b/data/lobbies/1eb1c225d579434a/wal_20260127101045.ndjson new file mode 100644 index 0000000..9c67f7b --- /dev/null +++ b/data/lobbies/1eb1c225d579434a/wal_20260127101045.ndjson @@ -0,0 +1,37 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:10:45.9074129Z","actor":"2b2a27c8","eventType":"PlayerJoined","payload":{"clientUuid":"2b2a27c8","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:10:45.9262021Z","actor":"d22f422f","eventType":"PlayerJoined","payload":{"clientUuid":"d22f422f","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T10:10:46.2214954Z","actor":"5a670227","eventType":"PlayerJoined","payload":{"clientUuid":"5a670227","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T10:10:46.5306639Z","actor":"9c502560","eventType":"PlayerJoined","payload":{"clientUuid":"9c502560","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T10:10:46.8414749Z","actor":"48081aeb","eventType":"PlayerJoined","payload":{"clientUuid":"48081aeb","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T10:10:47.169566Z","actor":"dae47205","eventType":"PlayerJoined","payload":{"clientUuid":"dae47205","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T10:10:47.4613186Z","actor":"2b2a27c8","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T10:10:47.465156Z","actor":"2b2a27c8","eventType":"RoleAssigned","payload":{"clientUuid":"2b2a27c8","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0004711,"lon":14.0066497},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.999704,"lon":13.999882},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T10:10:47.4763805Z","actor":"d22f422f","eventType":"RoleAssigned","payload":{"clientUuid":"d22f422f","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T10:10:47.4800205Z","actor":"5a670227","eventType":"RoleAssigned","payload":{"clientUuid":"5a670227","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0004711,"lon":14.0066497},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.999704,"lon":13.999882},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T10:10:47.482815Z","actor":"9c502560","eventType":"RoleAssigned","payload":{"clientUuid":"9c502560","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0004711,"lon":14.0066497},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.999704,"lon":13.999882},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T10:10:47.4859319Z","actor":"48081aeb","eventType":"RoleAssigned","payload":{"clientUuid":"48081aeb","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0004711,"lon":14.0066497},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.999704,"lon":13.999882},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T10:10:47.4889607Z","actor":"dae47205","eventType":"RoleAssigned","payload":{"clientUuid":"dae47205","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0004711,"lon":14.0066497},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.999704,"lon":13.999882},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T10:10:54.4244845Z","actor":"2b2a27c8","eventType":"TaskCompleted","payload":{"clientUuid":"2b2a27c8","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T10:10:55.2108699Z","actor":"d22f422f","eventType":"SabotageStarted","payload":{"sabotageId":"838a6be7","type":"CommsBlackout","initiatorId":"d22f422f","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":49.9997035,"lon":13.9995655},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T10:10:58.3706265Z","actor":"2b2a27c8","eventType":"RepairStarted","payload":{"sabotageId":"838a6be7","stationId":"comms_station","playerId":"2b2a27c8"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T10:11:01.3800445Z","actor":"2b2a27c8","eventType":"SabotageRepaired","payload":{"sabotageId":"838a6be7","type":"CommsBlackout","repairerIds":["2b2a27c8"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T10:11:35.4662933Z","actor":"d22f422f","eventType":"SabotageStarted","payload":{"sabotageId":"ebc29d78","type":"CriticalMeltdown","initiatorId":"d22f422f","deadline":"2026-01-27T10:12:20.4661822Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":49.9992247,"lon":13.9958212},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.0008569,"lon":13.9985868},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T10:11:37.0795055Z","actor":"2b2a27c8","eventType":"RepairStarted","payload":{"sabotageId":"ebc29d78","stationId":"reactor_alpha","playerId":"2b2a27c8"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T10:11:37.0964715Z","actor":"d22f422f","eventType":"RepairStarted","payload":{"sabotageId":"ebc29d78","stationId":"reactor_beta","playerId":"d22f422f"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T10:11:40.1056371Z","actor":"2b2a27c8","eventType":"SabotageRepaired","payload":{"sabotageId":"ebc29d78","type":"CriticalMeltdown","repairerIds":["2b2a27c8","d22f422f"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T10:11:46.2354477Z","actor":"d22f422f","eventType":"PlayerKilled","payload":{"victimId":"2b2a27c8","killerId":"d22f422f","bodyId":"c26bc13a","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T10:11:46.8489264Z","actor":"9c502560","eventType":"BodyReported","payload":{"reporterId":"9c502560","bodyId":"c26bc13a","victimId":"2b2a27c8"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T10:11:46.8532826Z","actor":"9c502560","eventType":"MeetingStarted","payload":{"meetingId":"bd6d954b","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T10:11:50.3528594Z","discussionEndTime":"2026-01-27T10:11:52.8528594Z","votingEndTime":"2026-01-27T10:12:02.8528594Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T10:11:52.8987008Z","actor":"d22f422f","eventType":"PlayerVoted","payload":{"voterId":"d22f422f","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T10:11:53.0214934Z","actor":"9c502560","eventType":"PlayerVoted","payload":{"voterId":"9c502560","targetId":"d22f422f"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T10:11:53.1444388Z","actor":"48081aeb","eventType":"PlayerVoted","payload":{"voterId":"48081aeb","targetId":"d22f422f"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T10:11:53.2683202Z","actor":"dae47205","eventType":"PlayerVoted","payload":{"voterId":"dae47205","targetId":"d22f422f"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T10:12:02.8721656Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"d22f422f":3,"__SKIP__":1},"ejectedPlayerId":"d22f422f","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T10:12:02.9366398Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"d22f422f","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T10:12:02.9406312Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["2b2a27c8","5a670227","9c502560","48081aeb","dae47205"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T10:12:02.95516Z","actor":"d22f422f","eventType":"PlayerLeft","payload":{"clientUuid":"d22f422f","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T10:12:02.9580885Z","actor":"9c502560","eventType":"PlayerLeft","payload":{"clientUuid":"9c502560","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T10:12:02.9605134Z","actor":"48081aeb","eventType":"PlayerLeft","payload":{"clientUuid":"48081aeb","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T10:12:02.9629418Z","actor":"2b2a27c8","eventType":"PlayerLeft","payload":{"clientUuid":"2b2a27c8","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T10:12:02.9665553Z","actor":"5a670227","eventType":"HostChanged","payload":{"newHostId":"5a670227","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T10:12:02.9695804Z","actor":"dae47205","eventType":"PlayerLeft","payload":{"clientUuid":"dae47205","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/1ff84d107ff34b05/wal_20260127102142.ndjson b/data/lobbies/1ff84d107ff34b05/wal_20260127102142.ndjson new file mode 100644 index 0000000..c95ff4d --- /dev/null +++ b/data/lobbies/1ff84d107ff34b05/wal_20260127102142.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:21:42.1063633Z","actor":"0362da4f","eventType":"PlayerJoined","payload":{"clientUuid":"0362da4f","displayName":"Player575"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:21:43.0565414Z","actor":"0362da4f","eventType":"PlayerLeft","payload":{"clientUuid":"0362da4f","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/204c23a9c4ec48a6/wal_20260127122143.ndjson b/data/lobbies/204c23a9c4ec48a6/wal_20260127122143.ndjson new file mode 100644 index 0000000..b2db14c --- /dev/null +++ b/data/lobbies/204c23a9c4ec48a6/wal_20260127122143.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:21:43.1577051Z","actor":"4fe128c3","eventType":"PlayerJoined","payload":{"clientUuid":"4fe128c3","displayName":"BoundTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:21:58.6249729Z","actor":"4fe128c3","eventType":"PlayerLeft","payload":{"clientUuid":"4fe128c3","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/2070c8014f534c41/wal_20260127005430.ndjson b/data/lobbies/2070c8014f534c41/wal_20260127005430.ndjson new file mode 100644 index 0000000..b71c097 --- /dev/null +++ b/data/lobbies/2070c8014f534c41/wal_20260127005430.ndjson @@ -0,0 +1,27 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T00:54:30.9245004Z","actor":"11b72814","eventType":"PlayerJoined","payload":{"clientUuid":"11b72814","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T00:54:30.9780646Z","actor":"5c245218","eventType":"PlayerJoined","payload":{"clientUuid":"5c245218","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T00:54:31.2865896Z","actor":"4b9a3a8d","eventType":"PlayerJoined","payload":{"clientUuid":"4b9a3a8d","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T00:54:31.6017625Z","actor":"868dd753","eventType":"PlayerJoined","payload":{"clientUuid":"868dd753","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T00:54:31.931813Z","actor":"dce08702","eventType":"PlayerJoined","payload":{"clientUuid":"dce08702","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T00:54:32.241563Z","actor":"02507150","eventType":"PlayerJoined","payload":{"clientUuid":"02507150","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T00:54:32.519533Z","actor":"11b72814","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T00:54:32.5374466Z","actor":"11b72814","eventType":"RoleAssigned","payload":{"clientUuid":"11b72814","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.999982183491525,"lon":13.99984578554681},"type":"Progress","durationMs":7573,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001840149161,"lon":13.99979710429225},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00221982855862,"lon":13.99963498623597},"type":"Progress","durationMs":8824,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T00:54:32.5469586Z","actor":"5c245218","eventType":"RoleAssigned","payload":{"clientUuid":"5c245218","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T00:54:32.5519839Z","actor":"4b9a3a8d","eventType":"RoleAssigned","payload":{"clientUuid":"4b9a3a8d","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.999982183491525,"lon":13.99984578554681},"type":"Progress","durationMs":7573,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001840149161,"lon":13.99979710429225},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00221982855862,"lon":13.99963498623597},"type":"Progress","durationMs":8824,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T00:54:32.5548621Z","actor":"868dd753","eventType":"RoleAssigned","payload":{"clientUuid":"868dd753","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.999982183491525,"lon":13.99984578554681},"type":"Progress","durationMs":7573,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001840149161,"lon":13.99979710429225},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00221982855862,"lon":13.99963498623597},"type":"Progress","durationMs":8824,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T00:54:32.5580375Z","actor":"dce08702","eventType":"RoleAssigned","payload":{"clientUuid":"dce08702","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.999982183491525,"lon":13.99984578554681},"type":"Progress","durationMs":7573,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001840149161,"lon":13.99979710429225},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00221982855862,"lon":13.99963498623597},"type":"Progress","durationMs":8824,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T00:54:32.5623426Z","actor":"02507150","eventType":"RoleAssigned","payload":{"clientUuid":"02507150","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.999982183491525,"lon":13.99984578554681},"type":"Progress","durationMs":7573,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001840149161,"lon":13.99979710429225},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00221982855862,"lon":13.99963498623597},"type":"Progress","durationMs":8824,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T00:54:34.2200884Z","actor":"5c245218","eventType":"PlayerKilled","payload":{"victimId":"11b72814","killerId":"5c245218","bodyId":"36a7663d","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T00:54:34.8268749Z","actor":"4b9a3a8d","eventType":"BodyReported","payload":{"reporterId":"4b9a3a8d","bodyId":"36a7663d","victimId":"11b72814"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T00:54:34.8313573Z","actor":"4b9a3a8d","eventType":"MeetingStarted","payload":{"meetingId":"d9c33516","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T00:55:05.331094Z","votingEndTime":"2026-01-27T00:56:19.831094Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T00:57:09.3921168Z","actor":"11b72814","eventType":"PlayerLeft","payload":{"clientUuid":"11b72814","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T00:57:09.4101341Z","actor":"5c245218","eventType":"HostChanged","payload":{"newHostId":"5c245218","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T00:57:09.4226404Z","actor":"5c245218","eventType":"PlayerLeft","payload":{"clientUuid":"5c245218","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T00:57:09.4260142Z","actor":"4b9a3a8d","eventType":"HostChanged","payload":{"newHostId":"4b9a3a8d","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T00:57:09.4284426Z","actor":"4b9a3a8d","eventType":"PlayerLeft","payload":{"clientUuid":"4b9a3a8d","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T00:57:09.4311827Z","actor":"868dd753","eventType":"HostChanged","payload":{"newHostId":"868dd753","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T00:57:09.4336101Z","actor":"868dd753","eventType":"PlayerLeft","payload":{"clientUuid":"868dd753","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T00:57:09.4363121Z","actor":"dce08702","eventType":"HostChanged","payload":{"newHostId":"dce08702","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T00:57:09.4387295Z","actor":"dce08702","eventType":"PlayerLeft","payload":{"clientUuid":"dce08702","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T00:57:09.4408143Z","actor":"02507150","eventType":"HostChanged","payload":{"newHostId":"02507150","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T00:57:09.4429223Z","actor":"02507150","eventType":"PlayerLeft","payload":{"clientUuid":"02507150","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/210899f1e2a94176/wal_20260127120048.ndjson b/data/lobbies/210899f1e2a94176/wal_20260127120048.ndjson new file mode 100644 index 0000000..fae0159 --- /dev/null +++ b/data/lobbies/210899f1e2a94176/wal_20260127120048.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:00:48.6152828Z","actor":"a576ac54","eventType":"PlayerJoined","payload":{"clientUuid":"a576ac54","displayName":"BoundTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:00:48.7138428Z","actor":"a576ac54","eventType":"PlayerLeft","payload":{"clientUuid":"a576ac54","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/2214b9985cc54f1a/wal_20260127102814.ndjson b/data/lobbies/2214b9985cc54f1a/wal_20260127102814.ndjson new file mode 100644 index 0000000..345d1ef --- /dev/null +++ b/data/lobbies/2214b9985cc54f1a/wal_20260127102814.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:28:14.8798172Z","actor":"1b2c8a4b","eventType":"PlayerJoined","payload":{"clientUuid":"1b2c8a4b","displayName":"Consist0"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:28:15.9621714Z","actor":"1b2c8a4b","eventType":"PlayerLeft","payload":{"clientUuid":"1b2c8a4b","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/238c4ee78de846ee/wal_20260127010505.ndjson b/data/lobbies/238c4ee78de846ee/wal_20260127010505.ndjson new file mode 100644 index 0000000..e713122 --- /dev/null +++ b/data/lobbies/238c4ee78de846ee/wal_20260127010505.ndjson @@ -0,0 +1,26 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T01:05:05.7882221Z","actor":"2d10622a","eventType":"PlayerJoined","payload":{"clientUuid":"2d10622a","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T01:05:05.8231237Z","actor":"36a24502","eventType":"PlayerJoined","payload":{"clientUuid":"36a24502","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T01:05:06.129838Z","actor":"16a9adbe","eventType":"PlayerJoined","payload":{"clientUuid":"16a9adbe","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T01:05:06.4399809Z","actor":"6674e6a5","eventType":"PlayerJoined","payload":{"clientUuid":"6674e6a5","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T01:05:06.7793643Z","actor":"35c816b6","eventType":"PlayerJoined","payload":{"clientUuid":"35c816b6","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T01:05:07.0889356Z","actor":"00f6e4d2","eventType":"PlayerJoined","payload":{"clientUuid":"00f6e4d2","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T01:05:07.3706538Z","actor":"2d10622a","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T01:05:07.3729939Z","actor":"2d10622a","eventType":"RoleAssigned","payload":{"clientUuid":"2d10622a","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.001254566802096,"lon":13.99734600380339},"type":"Progress","durationMs":5262,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00137662939127,"lon":13.99844683011565},"type":"Progress","durationMs":9089,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99822867908481,"lon":14.000243561238047},"type":"Progress","durationMs":9621,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T01:05:07.3798751Z","actor":"36a24502","eventType":"RoleAssigned","payload":{"clientUuid":"36a24502","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.001254566802096,"lon":13.99734600380339},"type":"Progress","durationMs":5262,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00137662939127,"lon":13.99844683011565},"type":"Progress","durationMs":9089,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99822867908481,"lon":14.000243561238047},"type":"Progress","durationMs":9621,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T01:05:07.3816377Z","actor":"16a9adbe","eventType":"RoleAssigned","payload":{"clientUuid":"16a9adbe","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T01:05:07.3832655Z","actor":"6674e6a5","eventType":"RoleAssigned","payload":{"clientUuid":"6674e6a5","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.001254566802096,"lon":13.99734600380339},"type":"Progress","durationMs":5262,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00137662939127,"lon":13.99844683011565},"type":"Progress","durationMs":9089,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99822867908481,"lon":14.000243561238047},"type":"Progress","durationMs":9621,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T01:05:07.3855615Z","actor":"35c816b6","eventType":"RoleAssigned","payload":{"clientUuid":"35c816b6","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.001254566802096,"lon":13.99734600380339},"type":"Progress","durationMs":5262,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00137662939127,"lon":13.99844683011565},"type":"Progress","durationMs":9089,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99822867908481,"lon":14.000243561238047},"type":"Progress","durationMs":9621,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T01:05:07.3877571Z","actor":"00f6e4d2","eventType":"RoleAssigned","payload":{"clientUuid":"00f6e4d2","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.001254566802096,"lon":13.99734600380339},"type":"Progress","durationMs":5262,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00137662939127,"lon":13.99844683011565},"type":"Progress","durationMs":9089,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99822867908481,"lon":14.000243561238047},"type":"Progress","durationMs":9621,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T01:05:09.0603452Z","actor":"16a9adbe","eventType":"PlayerKilled","payload":{"victimId":"2d10622a","killerId":"16a9adbe","bodyId":"350624de","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T01:05:09.6932518Z","actor":"36a24502","eventType":"BodyReported","payload":{"reporterId":"36a24502","bodyId":"350624de","victimId":"2d10622a"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T01:05:09.6978173Z","actor":"36a24502","eventType":"MeetingStarted","payload":{"meetingId":"628dbd39","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T01:05:13.197605Z","votingEndTime":"2026-01-27T01:05:25.697605Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T01:05:15.7256193Z","actor":"35c816b6","eventType":"PlayerVoted","payload":{"voterId":"35c816b6","targetId":"16a9adbe"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T01:05:16.0349168Z","actor":"00f6e4d2","eventType":"PlayerVoted","payload":{"voterId":"00f6e4d2","targetId":"16a9adbe"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T01:08:39.4636235Z","actor":"6674e6a5","eventType":"PlayerLeft","payload":{"clientUuid":"6674e6a5","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T01:08:39.4822164Z","actor":"16a9adbe","eventType":"PlayerLeft","payload":{"clientUuid":"16a9adbe","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T01:08:39.4944886Z","actor":"36a24502","eventType":"PlayerLeft","payload":{"clientUuid":"36a24502","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T01:08:39.4999805Z","actor":"2d10622a","eventType":"PlayerLeft","payload":{"clientUuid":"2d10622a","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T01:08:39.5050653Z","actor":"35c816b6","eventType":"HostChanged","payload":{"newHostId":"35c816b6","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T01:08:39.5083004Z","actor":"35c816b6","eventType":"PlayerLeft","payload":{"clientUuid":"35c816b6","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T01:08:39.5109891Z","actor":"00f6e4d2","eventType":"HostChanged","payload":{"newHostId":"00f6e4d2","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T01:08:39.5134159Z","actor":"00f6e4d2","eventType":"PlayerLeft","payload":{"clientUuid":"00f6e4d2","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/2648919f382c41c5/snapshot_59.json b/data/lobbies/2648919f382c41c5/snapshot_59.json new file mode 100644 index 0000000..f570e51 --- /dev/null +++ b/data/lobbies/2648919f382c41c5/snapshot_59.json @@ -0,0 +1,254 @@ +{ + "lobbyId": "2648919f382c41c5", + "lastEventId": 59, + "timestamp": "2026-01-27T18:59:03.2825318Z", + "checksum": "1a2ad5f4cbb6cce28242186be6f40b40eec4324c03c7f86a5240dd90a9dd2177", + "phase": "Lobby", + "players": [ + { + "clientUuid": "8994ac32", + "displayName": "Hr\u00E1\u010D415", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:53:06.3002728Z", + "lastPositionUpdate": "2026-01-27T18:57:32.9413685Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": "2026-01-27T18:55:14.0260895Z", + "emergencyMeetingsUsed": 1, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "0edf1729", + "displayName": "Hr\u00E1\u010D807", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:53:14.049105Z", + "lastPositionUpdate": "2026-01-27T18:56:19.557754Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "71890d7c", + "displayName": "Hr\u00E1\u010D727", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:53:16.7573899Z", + "lastPositionUpdate": "2026-01-27T18:57:32.6978551Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "c9700c3e", + "displayName": "Hr\u00E1\u010D811", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:53:18.3315357Z", + "lastPositionUpdate": "2026-01-27T18:57:32.6887401Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "8d4ca20b", + "displayName": "Hr\u00E1\u010D45", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:53:20.2071786Z", + "lastPositionUpdate": "2026-01-27T18:57:32.6947537Z", + "lastKillTime": "2026-01-27T18:56:19.060694Z", + "lastEmergencyMeetingTime": "2026-01-27T18:53:50.6568196Z", + "emergencyMeetingsUsed": 1, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 104, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/2648919f382c41c5/wal_20260127185306.ndjson b/data/lobbies/2648919f382c41c5/wal_20260127185306.ndjson new file mode 100644 index 0000000..a947be4 --- /dev/null +++ b/data/lobbies/2648919f382c41c5/wal_20260127185306.ndjson @@ -0,0 +1,60 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T18:53:06.3087677Z","actor":"8994ac32","eventType":"PlayerJoined","payload":{"clientUuid":"8994ac32","displayName":"Hr\u00E1\u010D415"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T18:53:14.0847817Z","actor":"0edf1729","eventType":"PlayerJoined","payload":{"clientUuid":"0edf1729","displayName":"Hr\u00E1\u010D807"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T18:53:16.7668266Z","actor":"71890d7c","eventType":"PlayerJoined","payload":{"clientUuid":"71890d7c","displayName":"Hr\u00E1\u010D727"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T18:53:18.3803452Z","actor":"c9700c3e","eventType":"PlayerJoined","payload":{"clientUuid":"c9700c3e","displayName":"Hr\u00E1\u010D811"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T18:53:20.2206583Z","actor":"8d4ca20b","eventType":"PlayerJoined","payload":{"clientUuid":"8d4ca20b","displayName":"Hr\u00E1\u010D45"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T18:53:22.299539Z","actor":"8994ac32","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T18:53:26.8235591Z","actor":"8994ac32","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":104,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7741465,15.070948,50.7740958,15.0709872],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.7744712,15.0716784,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":104},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T18:53:26.839861Z","actor":"71890d7c","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"71890d7c","displayName":"Hr\u00E1\u010D727","playersReady":1,"totalPlayers":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T18:53:26.8424751Z","actor":"c9700c3e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"c9700c3e","displayName":"Hr\u00E1\u010D811","playersReady":2,"totalPlayers":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T18:53:26.8454775Z","actor":"0edf1729","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"0edf1729","displayName":"Hr\u00E1\u010D807","playersReady":3,"totalPlayers":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T18:53:26.8476251Z","actor":"8d4ca20b","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"8d4ca20b","displayName":"Hr\u00E1\u010D45","playersReady":4,"totalPlayers":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T18:53:26.8567546Z","actor":"8994ac32","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"8994ac32","displayName":"Hr\u00E1\u010D415","playersReady":5,"totalPlayers":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T18:53:26.8600266Z","actor":"8994ac32","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T18:53:26.8622308Z","actor":"8994ac32","eventType":"RoleAssigned","payload":{"clientUuid":"8994ac32","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.773807,"lon":15.071876},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7739456,"lon":15.0716314},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7735493,"lon":15.0730608},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7743857,"lon":15.0723828},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T18:53:26.8644391Z","actor":"0edf1729","eventType":"RoleAssigned","payload":{"clientUuid":"0edf1729","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7732768,"lon":15.0725856},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7739109,"lon":15.0728539},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7741669,"lon":15.0718846},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7738661,"lon":15.0722328},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T18:53:26.8663223Z","actor":"71890d7c","eventType":"RoleAssigned","payload":{"clientUuid":"71890d7c","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7729586,"lon":15.0713674},"type":"Instant"},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.7738958,"lon":15.0729918},"type":"Instant"},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.7739981,"lon":15.0714832},"type":"Instant"},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.7734252,"lon":15.0727178},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T18:53:26.8681595Z","actor":"c9700c3e","eventType":"RoleAssigned","payload":{"clientUuid":"c9700c3e","role":"Crew","tasks":[{"taskId":"task_15","name":"Opravit antenu","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_16","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7731719,"lon":15.0719627},"type":"Instant"},{"taskId":"task_17","name":"Otestovat reaktor","location":{"lat":50.7738899,"lon":15.0720892},"type":"Instant"},{"taskId":"task_18","name":"Opravit kabel","location":{"lat":50.7738781,"lon":15.0714985},"type":"Instant"},{"taskId":"task_19","name":"Zkalibrovat senzor","location":{"lat":50.7738718,"lon":15.0726246},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T18:53:26.8698919Z","actor":"8d4ca20b","eventType":"RoleAssigned","payload":{"clientUuid":"8d4ca20b","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T18:53:35.1255994Z","actor":"8d4ca20b","eventType":"SabotageStarted","payload":{"sabotageId":"1afe8c9d","type":"CommsBlackout","initiatorId":"8d4ca20b","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.7734588,"lon":15.0719916},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T18:53:39.4581074Z","actor":"8994ac32","eventType":"RepairStarted","payload":{"sabotageId":"1afe8c9d","stationId":"comms_station","playerId":"8994ac32"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T18:53:42.4958545Z","actor":"8994ac32","eventType":"SabotageRepaired","payload":{"sabotageId":"1afe8c9d","type":"CommsBlackout","repairerIds":["8994ac32"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T18:53:50.6889968Z","actor":"8d4ca20b","eventType":"EmergencyMeetingCalled","payload":{"callerId":"8d4ca20b"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T18:53:50.693267Z","actor":"8d4ca20b","eventType":"MeetingStarted","payload":{"meetingId":"02833030","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T18:54:13.6932502Z","discussionEndTime":"2026-01-27T18:54:25.6932502Z","votingEndTime":"2026-01-27T18:54:55.6932502Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T18:53:50.6980417Z","actor":"0edf1729","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"0edf1729","meetingId":"02833030"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T18:53:50.7025983Z","actor":"71890d7c","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"71890d7c","meetingId":"02833030"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T18:53:50.705908Z","actor":"c9700c3e","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"c9700c3e","meetingId":"02833030"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T18:53:50.7091315Z","actor":"8d4ca20b","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"8d4ca20b","meetingId":"02833030"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T18:53:53.0502362Z","actor":"8994ac32","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"8994ac32","meetingId":"02833030"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T18:54:57.3896359Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T18:55:14.0334403Z","actor":"8994ac32","eventType":"EmergencyMeetingCalled","payload":{"callerId":"8994ac32"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T18:55:14.0359232Z","actor":"8994ac32","eventType":"MeetingStarted","payload":{"meetingId":"6eae07ff","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T18:55:37.0359064Z","discussionEndTime":"2026-01-27T18:55:49.0359064Z","votingEndTime":"2026-01-27T18:56:19.0359064Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T18:55:14.0387546Z","actor":"8994ac32","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"8994ac32","meetingId":"6eae07ff"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T18:55:14.0410238Z","actor":"0edf1729","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"0edf1729","meetingId":"6eae07ff"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T18:55:14.043486Z","actor":"71890d7c","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"71890d7c","meetingId":"6eae07ff"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T18:55:14.0456306Z","actor":"c9700c3e","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"c9700c3e","meetingId":"6eae07ff"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T18:55:14.0477802Z","actor":"8d4ca20b","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"8d4ca20b","meetingId":"6eae07ff"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T18:55:55.7963641Z","actor":"8994ac32","eventType":"PlayerVoted","payload":{"voterId":"8994ac32","targetId":"0edf1729"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T18:55:57.5898987Z","actor":"71890d7c","eventType":"PlayerVoted","payload":{"voterId":"71890d7c","targetId":"0edf1729"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T18:56:02.4303172Z","actor":"0edf1729","eventType":"PlayerVoted","payload":{"voterId":"0edf1729","targetId":"71890d7c"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T18:56:04.0378025Z","actor":"c9700c3e","eventType":"PlayerVoted","payload":{"voterId":"c9700c3e","targetId":"0edf1729"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T18:56:06.1214951Z","actor":"8d4ca20b","eventType":"PlayerVoted","payload":{"voterId":"8d4ca20b","targetId":"0edf1729"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T18:56:19.0509114Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"0edf1729":4,"71890d7c":1,"__SKIP__":0},"ejectedPlayerId":"0edf1729","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":43,"serverSeq":43,"timestamp":"2026-01-27T18:56:19.0587608Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"0edf1729","role":"Crew"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":44,"serverSeq":44,"timestamp":"2026-01-27T18:56:34.4886746Z","actor":"71890d7c","eventType":"TaskCompleted","payload":{"clientUuid":"71890d7c","taskId":"task_14","totalCompleted":1,"totalTasks":20},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":45,"serverSeq":45,"timestamp":"2026-01-27T18:56:40.9280309Z","actor":"71890d7c","eventType":"TaskCompleted","payload":{"clientUuid":"71890d7c","taskId":"task_10","totalCompleted":2,"totalTasks":20},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":46,"serverSeq":46,"timestamp":"2026-01-27T18:56:47.9903051Z","actor":"8d4ca20b","eventType":"SabotageStarted","payload":{"sabotageId":"06115707","type":"CriticalMeltdown","initiatorId":"8d4ca20b","deadline":"2026-01-27T18:57:32.9900658Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.7730142,"lon":15.0715442},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.7739131,"lon":15.072922},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":47,"serverSeq":47,"timestamp":"2026-01-27T18:56:56.000155Z","actor":"c9700c3e","eventType":"RepairStarted","payload":{"sabotageId":"06115707","stationId":"reactor_beta","playerId":"c9700c3e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":48,"serverSeq":48,"timestamp":"2026-01-27T18:56:56.0072806Z","actor":"c9700c3e","eventType":"RepairStopped","payload":{"sabotageId":"06115707","stationId":"reactor_beta","playerId":"c9700c3e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":49,"serverSeq":49,"timestamp":"2026-01-27T18:56:57.4109558Z","actor":"c9700c3e","eventType":"RepairStarted","payload":{"sabotageId":"06115707","stationId":"reactor_beta","playerId":"c9700c3e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":50,"serverSeq":50,"timestamp":"2026-01-27T18:57:02.4105188Z","actor":"c9700c3e","eventType":"RepairStopped","payload":{"sabotageId":"06115707","stationId":"reactor_beta","playerId":"c9700c3e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":51,"serverSeq":51,"timestamp":"2026-01-27T18:57:06.8133673Z","actor":"8994ac32","eventType":"RepairStarted","payload":{"sabotageId":"06115707","stationId":"reactor_alpha","playerId":"8994ac32"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":52,"serverSeq":52,"timestamp":"2026-01-27T18:57:11.8120638Z","actor":"8994ac32","eventType":"RepairStopped","payload":{"sabotageId":"06115707","stationId":"reactor_alpha","playerId":"8994ac32"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":53,"serverSeq":53,"timestamp":"2026-01-27T18:57:15.413533Z","actor":"8994ac32","eventType":"RepairStarted","payload":{"sabotageId":"06115707","stationId":"reactor_alpha","playerId":"8994ac32"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":54,"serverSeq":54,"timestamp":"2026-01-27T18:57:20.4129592Z","actor":"8994ac32","eventType":"RepairStopped","payload":{"sabotageId":"06115707","stationId":"reactor_alpha","playerId":"8994ac32"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":55,"serverSeq":55,"timestamp":"2026-01-27T18:57:20.8519844Z","actor":"c9700c3e","eventType":"RepairStarted","payload":{"sabotageId":"06115707","stationId":"reactor_beta","playerId":"c9700c3e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":56,"serverSeq":56,"timestamp":"2026-01-27T18:57:25.8526249Z","actor":"c9700c3e","eventType":"RepairStopped","payload":{"sabotageId":"06115707","stationId":"reactor_beta","playerId":"c9700c3e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":57,"serverSeq":57,"timestamp":"2026-01-27T18:57:33.0040927Z","actor":"8d4ca20b","eventType":"SabotageMeltdown","payload":{"sabotageId":"06115707"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":58,"serverSeq":58,"timestamp":"2026-01-27T18:57:33.0121287Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Kritick\u00E1 sabot\u00E1\u017E - meltdown","winners":["8d4ca20b"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":59,"serverSeq":59,"timestamp":"2026-01-27T18:59:03.2784821Z","actor":"8994ac32","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":60,"serverSeq":60,"timestamp":"2026-01-27T18:59:04.0630496Z","actor":"8994ac32","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/296015f350344851/wal_20260127122012.ndjson b/data/lobbies/296015f350344851/wal_20260127122012.ndjson new file mode 100644 index 0000000..2f75551 --- /dev/null +++ b/data/lobbies/296015f350344851/wal_20260127122012.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:20:12.958826Z","actor":"92971d46","eventType":"PlayerJoined","payload":{"clientUuid":"92971d46","displayName":"MapTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:20:28.4258443Z","actor":"92971d46","eventType":"PlayerLeft","payload":{"clientUuid":"92971d46","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/2a4fb21c80c345a1/wal_20260127025635.ndjson b/data/lobbies/2a4fb21c80c345a1/wal_20260127025635.ndjson new file mode 100644 index 0000000..c70f337 --- /dev/null +++ b/data/lobbies/2a4fb21c80c345a1/wal_20260127025635.ndjson @@ -0,0 +1,9 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T02:56:35.553137Z","actor":"45735f91","eventType":"PlayerJoined","payload":{"clientUuid":"45735f91","displayName":"Player78"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T02:56:46.9194235Z","actor":"63c698ac","eventType":"PlayerJoined","payload":{"clientUuid":"63c698ac","displayName":"Player993"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T02:56:56.7200631Z","actor":"f9f5f379","eventType":"PlayerJoined","payload":{"clientUuid":"f9f5f379","displayName":"Player915"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T02:56:58.4559654Z","actor":"45735f91","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T02:56:58.4599432Z","actor":"45735f91","eventType":"RoleAssigned","payload":{"clientUuid":"45735f91","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00033591145141,"lon":14.001977674615325},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.99968232796913,"lon":14.001464315644732},"type":"Progress","durationMs":5583,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000755163134144,"lon":14.003854271370221},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.00082319988865,"lon":13.996452898832514},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.000037067267705,"lon":13.999873133798078},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T02:56:58.4710635Z","actor":"63c698ac","eventType":"RoleAssigned","payload":{"clientUuid":"63c698ac","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00033591145141,"lon":14.001977674615325},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.99968232796913,"lon":14.001464315644732},"type":"Progress","durationMs":5583,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000755163134144,"lon":14.003854271370221},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.00082319988865,"lon":13.996452898832514},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.000037067267705,"lon":13.999873133798078},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T02:56:58.4741485Z","actor":"f9f5f379","eventType":"RoleAssigned","payload":{"clientUuid":"f9f5f379","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T02:58:09.7427344Z","actor":"f9f5f379","eventType":"PlayerKilled","payload":{"victimId":"63c698ac","killerId":"f9f5f379","bodyId":"eb1527c2","location":{"lat":50,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T02:58:09.7485174Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["f9f5f379"]},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/2c50d55476084b56/snapshot_12.json b/data/lobbies/2c50d55476084b56/snapshot_12.json new file mode 100644 index 0000000..3a65cf1 --- /dev/null +++ b/data/lobbies/2c50d55476084b56/snapshot_12.json @@ -0,0 +1,87 @@ +{ + "lobbyId": "2c50d55476084b56", + "lastEventId": 12, + "timestamp": "2026-01-27T16:28:29.5775449Z", + "checksum": "f350e9f787de7222da92560a4faf764440917922ee2f6bc477a61b0b2597c047", + "phase": "Playing", + "players": [], + "bodies": [ + { + "bodyId": "93c535cb", + "victimId": "3a7b7d51", + "killerId": "4776b4fd", + "location": { + "lat": 50.773528230993556, + "lon": 15.072186665335956 + }, + "killedAt": "2026-01-27T16:07:05.4091568Z", + "reported": false, + "reportedBy": null + } + ], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Progress", + "durationMs": 8268, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7748682, + "lon": 15.0725437 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Progress", + "durationMs": 6077, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7746238, + "lon": 15.0716847 + }, + "type": "Progress", + "durationMs": 5791, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 175, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/2c50d55476084b56/wal_20260127160625.ndjson b/data/lobbies/2c50d55476084b56/wal_20260127160625.ndjson new file mode 100644 index 0000000..159661d --- /dev/null +++ b/data/lobbies/2c50d55476084b56/wal_20260127160625.ndjson @@ -0,0 +1,12 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T16:06:25.0572629Z","actor":"3a7b7d51","eventType":"PlayerJoined","payload":{"clientUuid":"3a7b7d51","displayName":"Hr\u00E1\u010D275"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T16:06:37.369375Z","actor":"4776b4fd","eventType":"PlayerJoined","payload":{"clientUuid":"4776b4fd","displayName":"Hr\u00E1\u010D150"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T16:06:38.3290638Z","actor":"3a7b7d51","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T16:06:42.8168193Z","actor":"3a7b7d51","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":175,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7730564,15.0742132,50.7730091,15.0742672,50.7729888,15.0743735,50.7729855,15.0744805,50.7730088,15.0745931,50.773075,15.0746995,50.7731352,15.0747229,50.7730564,15.0742132],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.7730091,15.0742672,50.7729836,15.0743201,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7731352,15.0747229,50.773075,15.0746995,50.7730088,15.0745931,50.7729855,15.0744805,50.7729888,15.0743735,50.7730091,15.0742672],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7723782,15.0704051,50.7724179,15.0703895,50.7724196,15.0703994,50.7724249,15.0703973,50.7724371,15.0704083,50.7724617,15.0705635,50.7724001,15.0705882,50.7723991,15.0705819,50.7723733,15.0705922,50.7723705,15.0705752,50.772345,15.0705852,50.7723394,15.0705505,50.7722933,15.0705688,50.772276,15.0704604,50.7722947,15.0704531,50.7722899,15.070425,50.7723176,15.0704137,50.7723156,15.0704012,50.7723743,15.0703783,50.7723782,15.0704051],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.773142,15.069712,50.773132,15.069731,50.773141,15.069786,50.773051,15.069821,50.773027,15.069671,50.773074,15.069656,50.773066,15.069626,50.773114,15.069608,50.773125,15.069682,50.77314,15.069691,50.773142,15.069712],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.7721196,15.0713084,50.7721221,15.0713249,50.7721299,15.0713219,50.7721291,15.0713171,50.7721603,15.0713049,50.772182,15.0714453,50.7720991,15.0714775,50.772103,15.0715023,50.7720736,15.0715137,50.7720696,15.0714889,50.7720121,15.0715115,50.7719909,15.071376,50.7721064,15.071331,50.7721039,15.0713145,50.7721196,15.0713084],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7737764,15.0696257,50.7737483,15.0695369,50.7737403,15.0695433,50.7737122,15.0694542,50.7737043,15.0694607,50.7736754,15.0693688,50.7736791,15.0693655,50.7736681,15.0693307,50.7737285,15.0693317,50.7737608,15.0693064,50.7737573,15.0692958,50.7738589,15.0692155,50.7738904,15.0693154,50.7738824,15.0693216,50.7739105,15.0694104,50.7739025,15.0694166,50.7739306,15.0695055,50.7739226,15.0695117,50.7739502,15.0695993,50.7738119,15.0697078,50.7737843,15.0696195,50.7737764,15.0696257],[50.774568,15.0701178,50.7745736,15.0701133,50.7746048,15.0702115,50.7745992,15.0702159,50.7746189,15.0702782,50.7745738,15.070314,50.7745779,15.0703267,50.7745727,15.0703308,50.7745751,15.0703383,50.7745525,15.0703562,50.7745502,15.0703486,50.7745449,15.0703528,50.7745409,15.0703401,50.7744982,15.0703739,50.7744976,15.0703719,50.7744686,15.0703949,50.7744433,15.0703172,50.7744772,15.07029,50.7744786,15.0702948,50.7744946,15.0702822,50.7744707,15.0702074,50.7744388,15.0702327,50.7744158,15.0701606,50.7745481,15.070055,50.774568,15.0701178],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.7752185,15.0721634,50.7752173,15.0721699,50.7752377,15.0722341,50.7752458,15.0722278,50.7752745,15.0723183,50.7752722,15.0723202,50.7752824,15.0723534,50.7752432,15.0723848,50.775244,15.0723872,50.775166,15.0724485,50.7751263,15.0723232,50.7751352,15.0723161,50.7751014,15.0722114,50.7751542,15.0721689,50.7751574,15.0721791,50.7751886,15.0721541,50.7751895,15.0721481,50.7752005,15.0721393,50.775213,15.0721462,50.7752185,15.0721634],[50.7747953,15.0734128,50.7749794,15.0734047,50.7749886,15.0739546,50.7748051,15.0739635,50.774805,15.0739561,50.7747954,15.0734185,50.7747953,15.0734128],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7723625,15.0735165,50.7723669,15.073546,50.772422,15.0735251,50.7724486,15.0736994,50.772353,15.0737357,50.7723564,15.0737577,50.7723084,15.0737759,50.772305,15.0737538,50.7722439,15.0737771,50.7722173,15.073603,50.7723198,15.073564,50.7723153,15.0735343,50.7723625,15.0735165],[50.7720487,15.0718492,50.7720888,15.0718336,50.772094,15.0718652,50.7721081,15.0718597,50.7721123,15.0718876,50.7721144,15.0718868,50.7721282,15.0719749,50.7720491,15.0720053,50.7720577,15.0720612,50.7719949,15.0720857,50.7719839,15.0720149,50.7719743,15.0720185,50.7719635,15.0719491,50.7719731,15.0719452,50.7719647,15.071882,50.7720011,15.0718676,50.7719989,15.0718523,50.7720465,15.0718342,50.7720487,15.0718492],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7728652,15.0699861,50.7728732,15.0700323,50.7728193,15.0700556,50.7728103,15.0700095,50.7728652,15.0699861],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7730944,15.0699634,50.7731272,15.0699618,50.7731289,15.0700443,50.7730725,15.0700473,50.773071,15.0699726,50.7730944,15.0699634],[50.7724605,15.0706468,50.7724735,15.0707292,50.7724148,15.070752,50.7724154,15.0707563,50.7724114,15.0707578,50.7723978,15.0706712,50.7724605,15.0706468],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7737,15.0752819,50.7736634,15.0752963,50.773663,15.0752941,50.7736442,15.0753015,50.7736416,15.0752843,50.7735996,15.0753043,50.7735987,15.0753075,50.7735985,15.075311,50.7736003,15.0753246,50.7736,15.0753277,50.7735992,15.0753306,50.773598,15.0753331,50.7735963,15.0753349,50.7735945,15.075336,50.7734819,15.0753758,50.7734802,15.0753737,50.7734789,15.075371,50.7734781,15.0753679,50.7734771,15.0753608,50.7734764,15.075358,50.7734752,15.0753555,50.7734737,15.0753535,50.7734719,15.0753522,50.77347,15.0753517,50.773468,15.075352,50.7734319,15.0753659,50.7734345,15.0753831,50.7734157,15.0753903,50.7734161,15.0753928,50.7733818,15.0754061,50.7733791,15.0753883,50.7732956,15.0754181,50.7731776,15.074665,50.7732038,15.0746549,50.7731964,15.0746074,50.7731802,15.0746137,50.7731624,15.0744996,50.7731784,15.0744933,50.7731707,15.0744438,50.773228,15.0744221,50.7732604,15.0746333,50.7735766,15.0745127,50.7737,15.0752819],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","university","university","yes","yes","residential","residential","yes","residential","residential","residential","house","residential","residential","residential","yes","yes","residential","garage","house","house","house","yes","residential","yes","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","garage","garage","garage","residential","yes","yes","garage","garage","garage","industrial","garage","garage","yes","university","university","residential","residential","residential"],"pathways":[[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.773066,15.0759402,50.7730339,15.0757391,50.7730324,15.0757292,50.7730252,15.0756838,50.7730037,15.0755384,50.7728821,15.0747749,50.7728585,15.0746374,50.7728514,15.0745931,50.7728485,15.0745747,50.7728164,15.0743732,50.7727895,15.0742394,50.7728744,15.0742161,50.7729429,15.0741972,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7732287,15.0751189,50.7733416,15.0758426,50.7731038,15.0759268,50.773066,15.0759402],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7737778,15.0698608,50.773693,15.0697697,50.7736943,15.0697386,50.7736886,15.0697049,50.773571,15.0693442,50.773531,15.069168,50.7734981,15.0689719,50.7734977,15.0689399,50.7735128,15.0689055,50.7736997,15.0687658],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.773693,15.0697697,50.7736867,15.069781,50.7736788,15.0697919,50.7736682,15.0697985,50.7736366,15.069801,50.7736109,15.0697856,50.7735708,15.0697393,50.7735531,15.0696834,50.773415,15.0690544,50.773355,15.0687429,50.7733545,15.0687308,50.7733498,15.0686254],[50.7740766,15.0699582,50.7739846,15.0696453,50.7738817,15.0690129,50.7737793,15.0687387,50.7737347,15.068768,50.7736997,15.0687658],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731154,15.0760135,50.7731038,15.0759268,50.7728744,15.0742161,50.7728635,15.0741347],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7740151,15.0746626,50.7740449,15.0745473,50.7740399,15.0744534],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7746685,15.0698764,50.7746566,15.0698851,50.7744586,15.0700098,50.7742746,15.0700717,50.7741844,15.0700707],[50.7741844,15.0700707,50.7740766,15.0699582,50.7739733,15.0699259,50.7739407,15.0699098,50.7738653,15.0698945,50.7737778,15.0698608],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7735708,15.0697393,50.7734654,15.0699291],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7749533,15.0728495,50.7749634,15.0730713,50.7749421,15.0732859,50.774974,15.073339,50.7750239,15.0733565,50.7750812,15.0733641,50.7751475,15.0733291,50.7753573,15.0731141,50.7756188,15.0728955,50.7756321,15.0728845],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,0,3,3,4,0,3,3,4,4,4,4,4,0,0,4,0,0,0,0,4,3,4,0,0,0,4,0,0,0,0,0,4,0,4,4,0,0,3,4,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.77338352,15.069208979999999,4,50.77368628,15.06951072,4,50.7740297,15.0744936,6,50.7745187,15.0701967,7,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.7738714,15.0698715,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":175},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T16:06:42.8397991Z","actor":"3a7b7d51","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"3a7b7d51","displayName":"Hr\u00E1\u010D275","playersReady":1,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T16:06:42.8436088Z","actor":"4776b4fd","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"4776b4fd","displayName":"Hr\u00E1\u010D150","playersReady":2,"totalPlayers":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T16:06:42.847803Z","actor":"3a7b7d51","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T16:06:42.8493897Z","actor":"3a7b7d51","eventType":"RoleAssigned","payload":{"clientUuid":"3a7b7d51","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7741443,"lon":15.0702437},"type":"Progress","durationMs":8268,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7748682,"lon":15.0725437},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7741888,"lon":15.0705734},"type":"Progress","durationMs":6077,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7738016,"lon":15.0702315},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7746238,"lon":15.0716847},"type":"Progress","durationMs":5791,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T16:06:42.8586943Z","actor":"4776b4fd","eventType":"RoleAssigned","payload":{"clientUuid":"4776b4fd","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T16:07:05.4566707Z","actor":"4776b4fd","eventType":"PlayerKilled","payload":{"victimId":"3a7b7d51","killerId":"4776b4fd","bodyId":"93c535cb","location":{"lat":50.773528230993556,"lon":15.072186665335956}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T16:07:12.9563695Z","actor":"4776b4fd","eventType":"PlayerLeft","payload":{"clientUuid":"4776b4fd","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T16:28:29.5745605Z","actor":"3a7b7d51","eventType":"PlayerLeft","payload":{"clientUuid":"3a7b7d51","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/2e09f56b0f8049fb/wal_20260127115851.ndjson b/data/lobbies/2e09f56b0f8049fb/wal_20260127115851.ndjson new file mode 100644 index 0000000..a31f0d6 --- /dev/null +++ b/data/lobbies/2e09f56b0f8049fb/wal_20260127115851.ndjson @@ -0,0 +1,43 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T11:58:51.0660211Z","actor":"7099c562","eventType":"PlayerJoined","payload":{"clientUuid":"7099c562","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T11:58:51.1216899Z","actor":"1dcf1713","eventType":"PlayerJoined","payload":{"clientUuid":"1dcf1713","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T11:58:51.4279421Z","actor":"fc3f7924","eventType":"PlayerJoined","payload":{"clientUuid":"fc3f7924","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T11:58:51.7582776Z","actor":"99e5af04","eventType":"PlayerJoined","payload":{"clientUuid":"99e5af04","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T11:58:52.0490554Z","actor":"590e128b","eventType":"PlayerJoined","payload":{"clientUuid":"590e128b","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T11:58:52.3596508Z","actor":"ecc80c0b","eventType":"PlayerJoined","payload":{"clientUuid":"ecc80c0b","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T11:58:52.6689111Z","actor":"7099c562","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T11:58:52.6844743Z","actor":"7099c562","eventType":"RoleAssigned","payload":{"clientUuid":"7099c562","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9996681,"lon":14.0003986},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001,"lon":14.00266},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0008623,"lon":14.0019217},"type":"Progress","durationMs":9504,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T11:58:52.6965481Z","actor":"1dcf1713","eventType":"RoleAssigned","payload":{"clientUuid":"1dcf1713","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9996681,"lon":14.0003986},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001,"lon":14.00266},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0008623,"lon":14.0019217},"type":"Progress","durationMs":9504,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T11:58:52.701947Z","actor":"fc3f7924","eventType":"RoleAssigned","payload":{"clientUuid":"fc3f7924","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T11:58:52.7103416Z","actor":"99e5af04","eventType":"RoleAssigned","payload":{"clientUuid":"99e5af04","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9996681,"lon":14.0003986},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001,"lon":14.00266},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0008623,"lon":14.0019217},"type":"Progress","durationMs":9504,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T11:58:52.7130428Z","actor":"590e128b","eventType":"RoleAssigned","payload":{"clientUuid":"590e128b","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9996681,"lon":14.0003986},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001,"lon":14.00266},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0008623,"lon":14.0019217},"type":"Progress","durationMs":9504,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T11:58:52.7158121Z","actor":"ecc80c0b","eventType":"RoleAssigned","payload":{"clientUuid":"ecc80c0b","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9996681,"lon":14.0003986},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00001,"lon":14.00266},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0008623,"lon":14.0019217},"type":"Progress","durationMs":9504,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T11:58:54.6793943Z","actor":"7099c562","eventType":"TaskCompleted","payload":{"clientUuid":"7099c562","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T11:58:55.4660079Z","actor":"fc3f7924","eventType":"SabotageStarted","payload":{"sabotageId":"5cf911a1","type":"CommsBlackout","initiatorId":"fc3f7924","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":49.9995201,"lon":13.9996816},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T11:58:58.6363291Z","actor":"7099c562","eventType":"RepairStarted","payload":{"sabotageId":"5cf911a1","stationId":"comms_station","playerId":"7099c562"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T11:59:01.6663122Z","actor":"7099c562","eventType":"SabotageRepaired","payload":{"sabotageId":"5cf911a1","type":"CommsBlackout","repairerIds":["7099c562"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T11:59:35.7862534Z","actor":"fc3f7924","eventType":"SabotageStarted","payload":{"sabotageId":"fa825b06","type":"CriticalMeltdown","initiatorId":"fc3f7924","deadline":"2026-01-27T12:00:20.7861372Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.0033321,"lon":13.9982963},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.0005463,"lon":14.0021633},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T11:59:37.4058361Z","actor":"7099c562","eventType":"RepairStarted","payload":{"sabotageId":"fa825b06","stationId":"reactor_alpha","playerId":"7099c562"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T11:59:37.4216133Z","actor":"1dcf1713","eventType":"RepairStarted","payload":{"sabotageId":"fa825b06","stationId":"reactor_beta","playerId":"1dcf1713"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T11:59:40.4409615Z","actor":"7099c562","eventType":"SabotageRepaired","payload":{"sabotageId":"fa825b06","type":"CriticalMeltdown","repairerIds":["7099c562","1dcf1713"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T11:59:46.5842787Z","actor":"fc3f7924","eventType":"PlayerKilled","payload":{"victimId":"7099c562","killerId":"fc3f7924","bodyId":"3915b495","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T11:59:47.1861485Z","actor":"1dcf1713","eventType":"BodyReported","payload":{"reporterId":"1dcf1713","bodyId":"3915b495","victimId":"7099c562"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T11:59:47.1917993Z","actor":"1dcf1713","eventType":"MeetingStarted","payload":{"meetingId":"b39db541","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T11:59:50.6915874Z","discussionEndTime":"2026-01-27T11:59:53.1915874Z","votingEndTime":"2026-01-27T12:00:03.1915874Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T11:59:53.2060683Z","actor":"1dcf1713","eventType":"PlayerVoted","payload":{"voterId":"1dcf1713","targetId":"fc3f7924"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T11:59:53.328635Z","actor":"fc3f7924","eventType":"PlayerVoted","payload":{"voterId":"fc3f7924","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T11:59:53.453154Z","actor":"99e5af04","eventType":"PlayerVoted","payload":{"voterId":"99e5af04","targetId":"fc3f7924"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T11:59:53.5771998Z","actor":"590e128b","eventType":"PlayerVoted","payload":{"voterId":"590e128b","targetId":"fc3f7924"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T11:59:53.7011895Z","actor":"ecc80c0b","eventType":"PlayerVoted","payload":{"voterId":"ecc80c0b","targetId":"fc3f7924"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T12:00:03.1959921Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"fc3f7924":4,"__SKIP__":1},"ejectedPlayerId":"fc3f7924","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T12:00:03.2327421Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"fc3f7924","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T12:00:03.2354683Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["7099c562","1dcf1713","99e5af04","590e128b","ecc80c0b"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T12:00:56.1327135Z","actor":"7099c562","eventType":"PlayerLeft","payload":{"clientUuid":"7099c562","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T12:00:56.1482911Z","actor":"1dcf1713","eventType":"HostChanged","payload":{"newHostId":"1dcf1713","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T12:00:56.1534276Z","actor":"1dcf1713","eventType":"PlayerLeft","payload":{"clientUuid":"1dcf1713","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T12:00:56.1594463Z","actor":"fc3f7924","eventType":"HostChanged","payload":{"newHostId":"fc3f7924","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T12:00:56.1636152Z","actor":"fc3f7924","eventType":"PlayerLeft","payload":{"clientUuid":"fc3f7924","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T12:00:56.1663519Z","actor":"99e5af04","eventType":"HostChanged","payload":{"newHostId":"99e5af04","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T12:00:56.1689453Z","actor":"99e5af04","eventType":"PlayerLeft","payload":{"clientUuid":"99e5af04","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T12:00:56.1713532Z","actor":"590e128b","eventType":"HostChanged","payload":{"newHostId":"590e128b","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T12:00:56.1738715Z","actor":"590e128b","eventType":"PlayerLeft","payload":{"clientUuid":"590e128b","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T12:00:56.1763258Z","actor":"ecc80c0b","eventType":"HostChanged","payload":{"newHostId":"ecc80c0b","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":43,"serverSeq":43,"timestamp":"2026-01-27T12:00:56.1787405Z","actor":"ecc80c0b","eventType":"PlayerLeft","payload":{"clientUuid":"ecc80c0b","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/2e22bb042f2f4bbe/snapshot_22.json b/data/lobbies/2e22bb042f2f4bbe/snapshot_22.json new file mode 100644 index 0000000..b703965 --- /dev/null +++ b/data/lobbies/2e22bb042f2f4bbe/snapshot_22.json @@ -0,0 +1,545 @@ +{ + "lobbyId": "2e22bb042f2f4bbe", + "lastEventId": 22, + "timestamp": "2026-01-27T15:51:57.8920069Z", + "checksum": "9d1b249ae84e5d6285b305b86c43d02c035c58d7639d26b444131c7d6e548953", + "phase": "Playing", + "players": [ + { + "clientUuid": "f950d5da", + "displayName": "Hr\u00E1\u010D807", + "position": { + "lat": 50.77313331657089, + "lon": 15.072188416646162 + }, + "role": "Crew", + "state": "Dead", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:41:57.4124996Z", + "lastPositionUpdate": "2026-01-27T15:43:03.3779377Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 7149, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7727517, + "lon": 15.0713078 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7743857, + "lon": 15.0723828 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738718, + "lon": 15.0726246 + }, + "type": "Progress", + "durationMs": 6496, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "c5654f74", + "displayName": "Hr\u00E1\u010D437", + "position": { + "lat": 50.77278259768372, + "lon": 15.07222070338361 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:42:07.6931815Z", + "lastPositionUpdate": "2026-01-27T15:51:57.5706389Z", + "lastKillTime": "2026-01-27T15:45:05.8370242Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "03a78181", + "displayName": "Hr\u00E1\u010D551", + "position": { + "lat": 50.77398539640443, + "lon": 15.072124569466894 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:42:10.6142359Z", + "lastPositionUpdate": "2026-01-27T15:51:57.7340338Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": "2026-01-27T15:44:49.798083Z", + "emergencyMeetingsUsed": 1, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7731933, + "lon": 15.0726196 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Progress", + "durationMs": 9946, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7743766, + "lon": 15.0722922 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "ecd89d1a", + "displayName": "Hr\u00E1\u010D18", + "position": { + "lat": 50.77368486134701, + "lon": 15.071483856973888 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:42:12.192649Z", + "lastPositionUpdate": "2026-01-27T15:51:57.8914614Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7730142, + "lon": 15.0715442 + }, + "type": "Progress", + "durationMs": 8933, + "steps": 1 + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Progress", + "durationMs": 8475, + "steps": 1 + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7732768, + "lon": 15.0725856 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 7149, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7727517, + "lon": 15.0713078 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7743857, + "lon": 15.0723828 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738718, + "lon": 15.0726246 + }, + "type": "Progress", + "durationMs": 6496, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7731933, + "lon": 15.0726196 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Progress", + "durationMs": 9946, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7743766, + "lon": 15.0722922 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7730142, + "lon": 15.0715442 + }, + "type": "Progress", + "durationMs": 8933, + "steps": 1 + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Progress", + "durationMs": 8475, + "steps": 1 + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7732768, + "lon": 15.0725856 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 112, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/2e22bb042f2f4bbe/wal_20260127154157.ndjson b/data/lobbies/2e22bb042f2f4bbe/wal_20260127154157.ndjson new file mode 100644 index 0000000..6031d72 --- /dev/null +++ b/data/lobbies/2e22bb042f2f4bbe/wal_20260127154157.ndjson @@ -0,0 +1,22 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T15:41:57.4551593Z","actor":"f950d5da","eventType":"PlayerJoined","payload":{"clientUuid":"f950d5da","displayName":"Hr\u00E1\u010D807"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T15:42:07.7058647Z","actor":"c5654f74","eventType":"PlayerJoined","payload":{"clientUuid":"c5654f74","displayName":"Hr\u00E1\u010D437"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T15:42:10.6250376Z","actor":"03a78181","eventType":"PlayerJoined","payload":{"clientUuid":"03a78181","displayName":"Hr\u00E1\u010D551"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T15:42:12.2303748Z","actor":"ecd89d1a","eventType":"PlayerJoined","payload":{"clientUuid":"ecd89d1a","displayName":"Hr\u00E1\u010D18"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T15:42:13.7397778Z","actor":"f950d5da","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T15:42:18.3819363Z","actor":"f950d5da","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":112,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7741465,15.070948,50.7740958,15.0709872],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,4,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.7744712,15.0716784,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":112},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T15:42:18.4300581Z","actor":"c5654f74","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"c5654f74","displayName":"Hr\u00E1\u010D437","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T15:42:18.4386131Z","actor":"f950d5da","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"f950d5da","displayName":"Hr\u00E1\u010D807","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T15:42:18.44558Z","actor":"03a78181","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"03a78181","displayName":"Hr\u00E1\u010D551","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T15:42:18.4491438Z","actor":"ecd89d1a","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ecd89d1a","displayName":"Hr\u00E1\u010D18","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T15:42:18.4585554Z","actor":"f950d5da","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T15:42:18.4631941Z","actor":"f950d5da","eventType":"RoleAssigned","payload":{"clientUuid":"f950d5da","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":7149,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7727517,"lon":15.0713078},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7743857,"lon":15.0723828},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7738718,"lon":15.0726246},"type":"Progress","durationMs":6496,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7730823,"lon":15.071947},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T15:42:18.4760311Z","actor":"c5654f74","eventType":"RoleAssigned","payload":{"clientUuid":"c5654f74","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T15:42:18.4791868Z","actor":"03a78181","eventType":"RoleAssigned","payload":{"clientUuid":"03a78181","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7731933,"lon":15.0726196},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.772732,"lon":15.0728076},"type":"Progress","durationMs":9946,"steps":1},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7743766,"lon":15.0722922},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7738298,"lon":15.0716222},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T15:42:18.4830551Z","actor":"ecd89d1a","eventType":"RoleAssigned","payload":{"clientUuid":"ecd89d1a","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7730142,"lon":15.0715442},"type":"Progress","durationMs":8933,"steps":1},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.7738298,"lon":15.0716222},"type":"Progress","durationMs":8475,"steps":1},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.772732,"lon":15.0728076},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.7732768,"lon":15.0725856},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T15:43:03.6927961Z","actor":"c5654f74","eventType":"PlayerKilled","payload":{"victimId":"f950d5da","killerId":"c5654f74","bodyId":"62b4c155","location":{"lat":50.77313331657089,"lon":15.072188416646162}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T15:43:15.0183642Z","actor":"c5654f74","eventType":"BodyReported","payload":{"reporterId":"c5654f74","bodyId":"62b4c155","victimId":"f950d5da"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T15:43:15.0346454Z","actor":"c5654f74","eventType":"MeetingStarted","payload":{"meetingId":"d9b3408a","type":"BodyReport","meetingLocation":{"lat":50.77313331657089,"lon":15.072188416646162},"arrivalDeadline":"2026-01-27T15:43:18.5341106Z","discussionEndTime":"2026-01-27T15:43:21.0341106Z","votingEndTime":"2026-01-27T15:43:31.0341106Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T15:43:31.080595Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T15:44:49.8094811Z","actor":"03a78181","eventType":"EmergencyMeetingCalled","payload":{"callerId":"03a78181"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T15:44:49.8165054Z","actor":"03a78181","eventType":"MeetingStarted","payload":{"meetingId":"df8e1750","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T15:44:53.3164758Z","discussionEndTime":"2026-01-27T15:44:55.8164758Z","votingEndTime":"2026-01-27T15:45:05.8164758Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T15:45:05.8338205Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/39e4aedc405b4771/wal_20260127135040.ndjson b/data/lobbies/39e4aedc405b4771/wal_20260127135040.ndjson new file mode 100644 index 0000000..fc9d4e1 --- /dev/null +++ b/data/lobbies/39e4aedc405b4771/wal_20260127135040.ndjson @@ -0,0 +1,18 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T13:50:40.7980124Z","actor":"ea6af052","eventType":"PlayerJoined","payload":{"clientUuid":"ea6af052","displayName":"Hr\u00E1\u010D883"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T13:50:49.1153869Z","actor":"53074236","eventType":"PlayerJoined","payload":{"clientUuid":"53074236","displayName":"Hr\u00E1\u010D917"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T13:50:59.2546271Z","actor":"5ee2eccc","eventType":"PlayerJoined","payload":{"clientUuid":"5ee2eccc","displayName":"Hr\u00E1\u010D651"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T13:51:00.6250065Z","actor":"ea6af052","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T13:51:07.6514999Z","actor":"ea6af052","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T13:51:07.7259541Z","actor":"5ee2eccc","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"5ee2eccc","displayName":"Hr\u00E1\u010D651","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T13:51:07.7294196Z","actor":"ea6af052","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ea6af052","displayName":"Hr\u00E1\u010D883","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T13:51:07.7358472Z","actor":"53074236","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"53074236","displayName":"Hr\u00E1\u010D917","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T13:51:07.7915092Z","actor":"ea6af052","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T13:51:07.7950568Z","actor":"ea6af052","eventType":"RoleAssigned","payload":{"clientUuid":"ea6af052","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0856234,"lon":14.4229967},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0873433,"lon":14.4224184},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0873512,"lon":14.4226613},"type":"Progress","durationMs":9854,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0896073,"lon":14.4227123},"type":"Progress","durationMs":7831,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.089837,"lon":14.4206164},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T13:51:07.7982947Z","actor":"53074236","eventType":"RoleAssigned","payload":{"clientUuid":"53074236","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0856234,"lon":14.4229967},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0873433,"lon":14.4224184},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0873512,"lon":14.4226613},"type":"Progress","durationMs":9854,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0896073,"lon":14.4227123},"type":"Progress","durationMs":7831,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.089837,"lon":14.4206164},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T13:51:07.8014631Z","actor":"5ee2eccc","eventType":"RoleAssigned","payload":{"clientUuid":"5ee2eccc","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T13:51:29.6386945Z","actor":"ea6af052","eventType":"EmergencyMeetingCalled","payload":{"callerId":"ea6af052"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T13:51:29.6473639Z","actor":"ea6af052","eventType":"MeetingStarted","payload":{"meetingId":"583c918f","type":"Emergency","meetingLocation":{"lat":50.0875,"lon":14.4213},"arrivalDeadline":"2026-01-27T13:51:33.1473369Z","discussionEndTime":"2026-01-27T13:51:35.6473369Z","votingEndTime":"2026-01-27T13:51:45.6473369Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T13:51:45.650595Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T13:52:15.6885399Z","actor":"5ee2eccc","eventType":"PlayerLeft","payload":{"clientUuid":"5ee2eccc","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T13:52:17.3365943Z","actor":"53074236","eventType":"PlayerLeft","payload":{"clientUuid":"53074236","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T13:52:20.6821709Z","actor":"ea6af052","eventType":"PlayerLeft","payload":{"clientUuid":"ea6af052","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/39e6faa210eb434d/wal_20260127010951.ndjson b/data/lobbies/39e6faa210eb434d/wal_20260127010951.ndjson new file mode 100644 index 0000000..2fb5555 --- /dev/null +++ b/data/lobbies/39e6faa210eb434d/wal_20260127010951.ndjson @@ -0,0 +1,29 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T01:09:51.1941353Z","actor":"09158a35","eventType":"PlayerJoined","payload":{"clientUuid":"09158a35","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T01:09:51.2381211Z","actor":"52e8996c","eventType":"PlayerJoined","payload":{"clientUuid":"52e8996c","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T01:09:51.5692043Z","actor":"d4f76f15","eventType":"PlayerJoined","payload":{"clientUuid":"d4f76f15","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T01:09:51.8533416Z","actor":"ad2bf1f5","eventType":"PlayerJoined","payload":{"clientUuid":"ad2bf1f5","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T01:09:52.1604433Z","actor":"470a03a7","eventType":"PlayerJoined","payload":{"clientUuid":"470a03a7","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T01:09:52.4696536Z","actor":"48ffe11e","eventType":"PlayerJoined","payload":{"clientUuid":"48ffe11e","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T01:09:52.7793589Z","actor":"09158a35","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T01:09:52.7828063Z","actor":"09158a35","eventType":"RoleAssigned","payload":{"clientUuid":"09158a35","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T01:09:52.788878Z","actor":"52e8996c","eventType":"RoleAssigned","payload":{"clientUuid":"52e8996c","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0021498680585,"lon":14.003860056518342},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.001006197783234,"lon":13.998304838015512},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00059544941438,"lon":13.99981181384358},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T01:09:52.7914034Z","actor":"d4f76f15","eventType":"RoleAssigned","payload":{"clientUuid":"d4f76f15","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0021498680585,"lon":14.003860056518342},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.001006197783234,"lon":13.998304838015512},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00059544941438,"lon":13.99981181384358},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T01:09:52.7932174Z","actor":"ad2bf1f5","eventType":"RoleAssigned","payload":{"clientUuid":"ad2bf1f5","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0021498680585,"lon":14.003860056518342},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.001006197783234,"lon":13.998304838015512},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00059544941438,"lon":13.99981181384358},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T01:09:52.7950231Z","actor":"470a03a7","eventType":"RoleAssigned","payload":{"clientUuid":"470a03a7","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0021498680585,"lon":14.003860056518342},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.001006197783234,"lon":13.998304838015512},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00059544941438,"lon":13.99981181384358},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T01:09:52.7969688Z","actor":"48ffe11e","eventType":"RoleAssigned","payload":{"clientUuid":"48ffe11e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0021498680585,"lon":14.003860056518342},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.001006197783234,"lon":13.998304838015512},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00059544941438,"lon":13.99981181384358},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T01:09:54.4988606Z","actor":"09158a35","eventType":"PlayerKilled","payload":{"victimId":"52e8996c","killerId":"09158a35","bodyId":"a3e137ea","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T01:09:55.1021928Z","actor":"d4f76f15","eventType":"BodyReported","payload":{"reporterId":"d4f76f15","bodyId":"a3e137ea","victimId":"52e8996c"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T01:09:55.108828Z","actor":"d4f76f15","eventType":"MeetingStarted","payload":{"meetingId":"8109342e","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T01:09:58.6086077Z","votingEndTime":"2026-01-27T01:10:11.1086077Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T01:10:01.1345649Z","actor":"470a03a7","eventType":"PlayerVoted","payload":{"voterId":"470a03a7","targetId":"09158a35"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T01:10:01.4437714Z","actor":"48ffe11e","eventType":"PlayerVoted","payload":{"voterId":"48ffe11e","targetId":"09158a35"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T01:10:11.1191531Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"09158a35":2,"__SKIP__":0},"ejectedPlayerId":"09158a35","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T01:10:11.165862Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"09158a35","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T01:10:11.172077Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["52e8996c","d4f76f15","ad2bf1f5","470a03a7","48ffe11e"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T01:10:11.1926849Z","actor":"d4f76f15","eventType":"PlayerLeft","payload":{"clientUuid":"d4f76f15","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T01:10:11.1961314Z","actor":"ad2bf1f5","eventType":"PlayerLeft","payload":{"clientUuid":"ad2bf1f5","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T01:10:11.1988389Z","actor":"470a03a7","eventType":"PlayerLeft","payload":{"clientUuid":"470a03a7","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T01:10:11.2016046Z","actor":"09158a35","eventType":"PlayerLeft","payload":{"clientUuid":"09158a35","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T01:10:11.2060316Z","actor":"52e8996c","eventType":"HostChanged","payload":{"newHostId":"52e8996c","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T01:10:11.2097282Z","actor":"52e8996c","eventType":"PlayerLeft","payload":{"clientUuid":"52e8996c","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T01:10:11.2123977Z","actor":"48ffe11e","eventType":"HostChanged","payload":{"newHostId":"48ffe11e","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T01:10:11.2154441Z","actor":"48ffe11e","eventType":"PlayerLeft","payload":{"clientUuid":"48ffe11e","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/3b39783084b34b98/wal_20260127120223.ndjson b/data/lobbies/3b39783084b34b98/wal_20260127120223.ndjson new file mode 100644 index 0000000..299e0a2 --- /dev/null +++ b/data/lobbies/3b39783084b34b98/wal_20260127120223.ndjson @@ -0,0 +1,34 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:02:23.4896533Z","actor":"66421e07","eventType":"PlayerJoined","payload":{"clientUuid":"66421e07","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:02:23.5335378Z","actor":"dc06793c","eventType":"PlayerJoined","payload":{"clientUuid":"dc06793c","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:02:23.8610614Z","actor":"a6f5ec97","eventType":"PlayerJoined","payload":{"clientUuid":"a6f5ec97","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:02:24.1565744Z","actor":"9d4f2efa","eventType":"PlayerJoined","payload":{"clientUuid":"9d4f2efa","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:02:24.4827616Z","actor":"1ebe79ac","eventType":"PlayerJoined","payload":{"clientUuid":"1ebe79ac","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:02:24.7736974Z","actor":"aa58ab63","eventType":"PlayerJoined","payload":{"clientUuid":"aa58ab63","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:02:25.0790884Z","actor":"66421e07","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:02:25.0821174Z","actor":"66421e07","eventType":"RoleAssigned","payload":{"clientUuid":"66421e07","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9998905,"lon":14.0027825},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0004711,"lon":14.0066497},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:02:25.0843172Z","actor":"dc06793c","eventType":"RoleAssigned","payload":{"clientUuid":"dc06793c","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9998905,"lon":14.0027825},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0004711,"lon":14.0066497},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:02:25.0859111Z","actor":"a6f5ec97","eventType":"RoleAssigned","payload":{"clientUuid":"a6f5ec97","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:02:25.0875878Z","actor":"9d4f2efa","eventType":"RoleAssigned","payload":{"clientUuid":"9d4f2efa","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9998905,"lon":14.0027825},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0004711,"lon":14.0066497},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:02:25.0892835Z","actor":"1ebe79ac","eventType":"RoleAssigned","payload":{"clientUuid":"1ebe79ac","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9998905,"lon":14.0027825},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0004711,"lon":14.0066497},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T12:02:25.0909555Z","actor":"aa58ab63","eventType":"RoleAssigned","payload":{"clientUuid":"aa58ab63","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9998905,"lon":14.0027825},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0004711,"lon":14.0066497},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T12:02:32.3193168Z","actor":"66421e07","eventType":"TaskCompleted","payload":{"clientUuid":"66421e07","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T12:02:33.1014104Z","actor":"a6f5ec97","eventType":"SabotageStarted","payload":{"sabotageId":"a1e27fcd","type":"CommsBlackout","initiatorId":"a6f5ec97","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":49.9999983,"lon":14.0011406},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T12:02:36.2661858Z","actor":"66421e07","eventType":"RepairStarted","payload":{"sabotageId":"a1e27fcd","stationId":"comms_station","playerId":"66421e07"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T12:02:39.2915076Z","actor":"66421e07","eventType":"SabotageRepaired","payload":{"sabotageId":"a1e27fcd","type":"CommsBlackout","repairerIds":["66421e07"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T12:03:13.3735146Z","actor":"a6f5ec97","eventType":"SabotageStarted","payload":{"sabotageId":"9a5e3a2b","type":"CriticalMeltdown","initiatorId":"a6f5ec97","deadline":"2026-01-27T12:03:58.3734598Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":49.9999396,"lon":14.0023342},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":49.9991351,"lon":13.9977552},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T12:03:14.9900631Z","actor":"66421e07","eventType":"RepairStarted","payload":{"sabotageId":"9a5e3a2b","stationId":"reactor_alpha","playerId":"66421e07"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T12:03:34.1780397Z","actor":"a6f5ec97","eventType":"PlayerKilled","payload":{"victimId":"66421e07","killerId":"a6f5ec97","bodyId":"4c22aa8d","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T12:03:34.7850368Z","actor":"9d4f2efa","eventType":"BodyReported","payload":{"reporterId":"9d4f2efa","bodyId":"4c22aa8d","victimId":"66421e07"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T12:03:34.7885758Z","actor":"9d4f2efa","eventType":"MeetingStarted","payload":{"meetingId":"0cb0318b","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T12:03:38.2885627Z","discussionEndTime":"2026-01-27T12:03:40.7885627Z","votingEndTime":"2026-01-27T12:03:50.7885627Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T12:03:50.8035669Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T12:03:53.6776316Z","actor":"9d4f2efa","eventType":"TaskCompleted","payload":{"clientUuid":"9d4f2efa","taskId":"task_0","totalCompleted":2,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T12:03:55.0670849Z","actor":"66421e07","eventType":"PlayerLeft","payload":{"clientUuid":"66421e07","reason":"Anti-cheat kick"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T12:03:55.0698704Z","actor":"dc06793c","eventType":"HostChanged","payload":{"newHostId":"dc06793c","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T12:04:01.3592043Z","actor":"a6f5ec97","eventType":"PlayerKilled","payload":{"victimId":"dc06793c","killerId":"a6f5ec97","bodyId":"ae5fd565","location":{"lat":50,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T12:04:01.8420058Z","actor":"1ebe79ac","eventType":"BodyReported","payload":{"reporterId":"1ebe79ac","bodyId":"ae5fd565","victimId":"dc06793c"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T12:04:01.8447396Z","actor":"1ebe79ac","eventType":"MeetingStarted","payload":{"meetingId":"0c98cceb","type":"BodyReport","meetingLocation":{"lat":50,"lon":14},"arrivalDeadline":"2026-01-27T12:04:05.3447267Z","discussionEndTime":"2026-01-27T12:04:07.8447267Z","votingEndTime":"2026-01-27T12:04:17.8447267Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T12:04:17.8587891Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T12:04:25.8812375Z","actor":"9d4f2efa","eventType":"PlayerLeft","payload":{"clientUuid":"9d4f2efa","reason":"Anti-cheat kick"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T12:04:26.5966707Z","actor":"1ebe79ac","eventType":"PlayerLeft","payload":{"clientUuid":"1ebe79ac","reason":"Anti-cheat kick"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T12:04:26.5987267Z","actor":"aa58ab63","eventType":"PlayerLeft","payload":{"clientUuid":"aa58ab63","reason":"Anti-cheat kick"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T12:04:28.7703444Z","actor":"a6f5ec97","eventType":"PlayerLeft","payload":{"clientUuid":"a6f5ec97","reason":"Anti-cheat kick"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/43096db889274873/wal_20260127103134.ndjson b/data/lobbies/43096db889274873/wal_20260127103134.ndjson new file mode 100644 index 0000000..6470153 --- /dev/null +++ b/data/lobbies/43096db889274873/wal_20260127103134.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:31:34.8335659Z","actor":"6bcff940","eventType":"PlayerJoined","payload":{"clientUuid":"6bcff940","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:31:34.8522726Z","actor":"6bcff940","eventType":"PlayerLeft","payload":{"clientUuid":"6bcff940","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/4319728b4b5d45b3/wal_20260127013909.ndjson b/data/lobbies/4319728b4b5d45b3/wal_20260127013909.ndjson new file mode 100644 index 0000000..82ad90a --- /dev/null +++ b/data/lobbies/4319728b4b5d45b3/wal_20260127013909.ndjson @@ -0,0 +1,35 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T01:39:09.5028802Z","actor":"acd656b6","eventType":"PlayerJoined","payload":{"clientUuid":"acd656b6","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T01:39:09.544623Z","actor":"655f179b","eventType":"PlayerJoined","payload":{"clientUuid":"655f179b","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T01:39:09.8750694Z","actor":"a74ed76e","eventType":"PlayerJoined","payload":{"clientUuid":"a74ed76e","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T01:39:10.18571Z","actor":"37eb2ac7","eventType":"PlayerJoined","payload":{"clientUuid":"37eb2ac7","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T01:39:10.4728576Z","actor":"cd5db66c","eventType":"PlayerJoined","payload":{"clientUuid":"cd5db66c","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T01:39:10.7841943Z","actor":"e586e740","eventType":"PlayerJoined","payload":{"clientUuid":"e586e740","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T01:39:11.0902801Z","actor":"acd656b6","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T01:39:11.1085891Z","actor":"acd656b6","eventType":"RoleAssigned","payload":{"clientUuid":"acd656b6","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99984128301655,"lon":13.999918792115682},"type":"Progress","durationMs":5027,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.997718448844225,"lon":14.004038623561037},"type":"Progress","durationMs":5744,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000145535351194,"lon":13.998497724961751},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T01:39:11.1237271Z","actor":"655f179b","eventType":"RoleAssigned","payload":{"clientUuid":"655f179b","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T01:39:11.1288629Z","actor":"a74ed76e","eventType":"RoleAssigned","payload":{"clientUuid":"a74ed76e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99984128301655,"lon":13.999918792115682},"type":"Progress","durationMs":5027,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.997718448844225,"lon":14.004038623561037},"type":"Progress","durationMs":5744,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000145535351194,"lon":13.998497724961751},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T01:39:11.1347791Z","actor":"37eb2ac7","eventType":"RoleAssigned","payload":{"clientUuid":"37eb2ac7","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99984128301655,"lon":13.999918792115682},"type":"Progress","durationMs":5027,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.997718448844225,"lon":14.004038623561037},"type":"Progress","durationMs":5744,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000145535351194,"lon":13.998497724961751},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T01:39:11.1401868Z","actor":"cd5db66c","eventType":"RoleAssigned","payload":{"clientUuid":"cd5db66c","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99984128301655,"lon":13.999918792115682},"type":"Progress","durationMs":5027,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.997718448844225,"lon":14.004038623561037},"type":"Progress","durationMs":5744,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000145535351194,"lon":13.998497724961751},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T01:39:11.1445592Z","actor":"e586e740","eventType":"RoleAssigned","payload":{"clientUuid":"e586e740","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99984128301655,"lon":13.999918792115682},"type":"Progress","durationMs":5027,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.997718448844225,"lon":14.004038623561037},"type":"Progress","durationMs":5744,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000145535351194,"lon":13.998497724961751},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T01:39:18.4435754Z","actor":"acd656b6","eventType":"TaskCompleted","payload":{"clientUuid":"acd656b6","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T01:39:19.5760937Z","actor":"655f179b","eventType":"PlayerKilled","payload":{"victimId":"acd656b6","killerId":"655f179b","bodyId":"7cbb8395","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T01:39:20.1917972Z","actor":"a74ed76e","eventType":"BodyReported","payload":{"reporterId":"a74ed76e","bodyId":"7cbb8395","victimId":"acd656b6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T01:39:20.2022631Z","actor":"a74ed76e","eventType":"MeetingStarted","payload":{"meetingId":"7ea61aad","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T01:39:23.7020339Z","discussionEndTime":"2026-01-27T01:39:26.2020339Z","votingEndTime":"2026-01-27T01:39:36.2020339Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T01:39:26.2301958Z","actor":"655f179b","eventType":"PlayerVoted","payload":{"voterId":"655f179b","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T01:39:26.3527005Z","actor":"a74ed76e","eventType":"PlayerVoted","payload":{"voterId":"a74ed76e","targetId":"655f179b"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T01:39:26.4771415Z","actor":"37eb2ac7","eventType":"PlayerVoted","payload":{"voterId":"37eb2ac7","targetId":"655f179b"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T01:39:26.6008711Z","actor":"cd5db66c","eventType":"PlayerVoted","payload":{"voterId":"cd5db66c","targetId":"655f179b"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T01:39:26.7254168Z","actor":"e586e740","eventType":"PlayerVoted","payload":{"voterId":"e586e740","targetId":"655f179b"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T01:39:36.209662Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"655f179b":4,"__SKIP__":1},"ejectedPlayerId":"655f179b","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T01:39:36.2984671Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"655f179b","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T01:39:36.3025433Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["acd656b6","a74ed76e","37eb2ac7","cd5db66c","e586e740"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T01:39:36.412429Z","actor":"cd5db66c","eventType":"PlayerLeft","payload":{"clientUuid":"cd5db66c","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T01:39:36.4157417Z","actor":"acd656b6","eventType":"PlayerLeft","payload":{"clientUuid":"acd656b6","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T01:39:36.4195737Z","actor":"655f179b","eventType":"HostChanged","payload":{"newHostId":"655f179b","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T01:39:36.4225908Z","actor":"655f179b","eventType":"PlayerLeft","payload":{"clientUuid":"655f179b","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T01:39:36.4253593Z","actor":"a74ed76e","eventType":"HostChanged","payload":{"newHostId":"a74ed76e","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T01:39:36.432919Z","actor":"a74ed76e","eventType":"PlayerLeft","payload":{"clientUuid":"a74ed76e","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T01:39:36.4349121Z","actor":"37eb2ac7","eventType":"HostChanged","payload":{"newHostId":"37eb2ac7","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T01:39:36.4373311Z","actor":"37eb2ac7","eventType":"PlayerLeft","payload":{"clientUuid":"37eb2ac7","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T01:39:36.4397396Z","actor":"e586e740","eventType":"HostChanged","payload":{"newHostId":"e586e740","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T01:39:36.4421684Z","actor":"e586e740","eventType":"PlayerLeft","payload":{"clientUuid":"e586e740","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/467e72dc41404eeb/wal_20260127122219.ndjson b/data/lobbies/467e72dc41404eeb/wal_20260127122219.ndjson new file mode 100644 index 0000000..7614583 --- /dev/null +++ b/data/lobbies/467e72dc41404eeb/wal_20260127122219.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:22:19.5657832Z","actor":"8090c1be","eventType":"PlayerJoined","payload":{"clientUuid":"8090c1be","displayName":"Consist1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:22:35.0129214Z","actor":"8090c1be","eventType":"PlayerLeft","payload":{"clientUuid":"8090c1be","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/4aef5aedd543497f/wal_20260127102811.ndjson b/data/lobbies/4aef5aedd543497f/wal_20260127102811.ndjson new file mode 100644 index 0000000..58753b7 --- /dev/null +++ b/data/lobbies/4aef5aedd543497f/wal_20260127102811.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:28:11.7070254Z","actor":"8b5f5055","eventType":"PlayerJoined","payload":{"clientUuid":"8b5f5055","displayName":"BoundTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:28:12.785449Z","actor":"8b5f5055","eventType":"PlayerLeft","payload":{"clientUuid":"8b5f5055","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/50a6e94b83e646e7/wal_20260127120012.ndjson b/data/lobbies/50a6e94b83e646e7/wal_20260127120012.ndjson new file mode 100644 index 0000000..f49185f --- /dev/null +++ b/data/lobbies/50a6e94b83e646e7/wal_20260127120012.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:00:12.9842511Z","actor":"90f5599d","eventType":"PlayerJoined","payload":{"clientUuid":"90f5599d","displayName":"MapTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:00:12.9905886Z","actor":"90f5599d","eventType":"PlayerLeft","payload":{"clientUuid":"90f5599d","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/510d3f16ecd1488b/wal_20260127120155.ndjson b/data/lobbies/510d3f16ecd1488b/wal_20260127120155.ndjson new file mode 100644 index 0000000..58c597c --- /dev/null +++ b/data/lobbies/510d3f16ecd1488b/wal_20260127120155.ndjson @@ -0,0 +1,22 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:01:55.3004221Z","actor":"a9da182f","eventType":"PlayerJoined","payload":{"clientUuid":"a9da182f","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:01:55.3365842Z","actor":"c4e35efc","eventType":"PlayerJoined","payload":{"clientUuid":"c4e35efc","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:01:55.6607663Z","actor":"5e35ad45","eventType":"PlayerJoined","payload":{"clientUuid":"5e35ad45","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:01:55.9737619Z","actor":"41b4a65c","eventType":"PlayerJoined","payload":{"clientUuid":"41b4a65c","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:01:56.2673638Z","actor":"ac73fc2e","eventType":"PlayerJoined","payload":{"clientUuid":"ac73fc2e","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:01:56.5785267Z","actor":"3a727a4f","eventType":"PlayerJoined","payload":{"clientUuid":"3a727a4f","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:01:56.8826572Z","actor":"a9da182f","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:01:56.8968622Z","actor":"a9da182f","eventType":"RoleAssigned","payload":{"clientUuid":"a9da182f","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0002324,"lon":14.0028236},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0009308,"lon":14.0025683},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:01:56.9021032Z","actor":"c4e35efc","eventType":"RoleAssigned","payload":{"clientUuid":"c4e35efc","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0002324,"lon":14.0028236},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0009308,"lon":14.0025683},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:01:56.9071982Z","actor":"5e35ad45","eventType":"RoleAssigned","payload":{"clientUuid":"5e35ad45","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0002324,"lon":14.0028236},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0009308,"lon":14.0025683},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:01:56.9098968Z","actor":"41b4a65c","eventType":"RoleAssigned","payload":{"clientUuid":"41b4a65c","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:01:56.9125715Z","actor":"ac73fc2e","eventType":"RoleAssigned","payload":{"clientUuid":"ac73fc2e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0002324,"lon":14.0028236},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0009308,"lon":14.0025683},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T12:01:56.9153335Z","actor":"3a727a4f","eventType":"RoleAssigned","payload":{"clientUuid":"3a727a4f","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0002324,"lon":14.0028236},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0009308,"lon":14.0025683},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.002869687499995,"lon":14.00042415},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T12:02:03.6171466Z","actor":"a9da182f","eventType":"TaskCompleted","payload":{"clientUuid":"a9da182f","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T12:02:04.1660992Z","actor":"a9da182f","eventType":"PlayerLeft","payload":{"clientUuid":"a9da182f","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T12:02:04.1690839Z","actor":"c4e35efc","eventType":"HostChanged","payload":{"newHostId":"c4e35efc","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T12:02:04.1707252Z","actor":"c4e35efc","eventType":"PlayerLeft","payload":{"clientUuid":"c4e35efc","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T12:02:04.1722779Z","actor":"5e35ad45","eventType":"HostChanged","payload":{"newHostId":"5e35ad45","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T12:02:04.1741148Z","actor":"5e35ad45","eventType":"PlayerLeft","payload":{"clientUuid":"5e35ad45","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T12:02:04.1756821Z","actor":"41b4a65c","eventType":"HostChanged","payload":{"newHostId":"41b4a65c","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T12:02:04.177217Z","actor":"ac73fc2e","eventType":"PlayerLeft","payload":{"clientUuid":"ac73fc2e","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T12:02:04.1787326Z","actor":"3a727a4f","eventType":"PlayerLeft","payload":{"clientUuid":"3a727a4f","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/525fa8b4d76a42ed/snapshot_18.json b/data/lobbies/525fa8b4d76a42ed/snapshot_18.json new file mode 100644 index 0000000..dff7c31 --- /dev/null +++ b/data/lobbies/525fa8b4d76a42ed/snapshot_18.json @@ -0,0 +1,163 @@ +{ + "lobbyId": "525fa8b4d76a42ed", + "lastEventId": 18, + "timestamp": "2026-01-27T16:41:21.5644571Z", + "checksum": "f00d06dc1b92bc8cfdebcf3fc4ea33925e0fb24ca9ffc130f838f042c7d0fec7", + "phase": "Lobby", + "players": [ + { + "clientUuid": "a4b084ae", + "displayName": "Hr\u00E1\u010D49", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T16:35:21.4117891Z", + "lastPositionUpdate": "2026-01-27T16:40:04.8976091Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "e7432841", + "displayName": "Hr\u00E1\u010D952", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T16:35:34.1694493Z", + "lastPositionUpdate": "2026-01-27T16:40:04.8708739Z", + "lastKillTime": "2026-01-27T16:40:04.944272Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "a529c9bf", + "displayName": "Hr\u00E1\u010D887", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T16:35:34.6701344Z", + "lastPositionUpdate": "2026-01-27T16:40:04.8646587Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": "2026-01-27T16:38:42.7706296Z", + "emergencyMeetingsUsed": 1, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 100, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/525fa8b4d76a42ed/wal_20260127163521.ndjson b/data/lobbies/525fa8b4d76a42ed/wal_20260127163521.ndjson new file mode 100644 index 0000000..8978db7 --- /dev/null +++ b/data/lobbies/525fa8b4d76a42ed/wal_20260127163521.ndjson @@ -0,0 +1,43 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T16:35:21.4253557Z","actor":"a4b084ae","eventType":"PlayerJoined","payload":{"clientUuid":"a4b084ae","displayName":"Hr\u00E1\u010D49"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T16:35:34.1790176Z","actor":"e7432841","eventType":"PlayerJoined","payload":{"clientUuid":"e7432841","displayName":"Hr\u00E1\u010D952"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T16:35:34.705863Z","actor":"a529c9bf","eventType":"PlayerJoined","payload":{"clientUuid":"a529c9bf","displayName":"Hr\u00E1\u010D887"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T16:35:36.0787685Z","actor":"a4b084ae","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T16:35:40.5907496Z","actor":"a4b084ae","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":100,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":100},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T16:35:40.6218852Z","actor":"e7432841","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"e7432841","displayName":"Hr\u00E1\u010D952","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T16:35:40.6313973Z","actor":"a4b084ae","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a4b084ae","displayName":"Hr\u00E1\u010D49","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T16:35:40.6337111Z","actor":"a529c9bf","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a529c9bf","displayName":"Hr\u00E1\u010D887","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T16:35:40.6381955Z","actor":"a4b084ae","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T16:35:40.6415023Z","actor":"a4b084ae","eventType":"RoleAssigned","payload":{"clientUuid":"a4b084ae","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.773807,"lon":15.071876},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7731933,"lon":15.0726196},"type":"Progress","durationMs":5201,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7738661,"lon":15.0722328},"type":"Progress","durationMs":8806,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739109,"lon":15.0728539},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T16:35:40.6448125Z","actor":"e7432841","eventType":"RoleAssigned","payload":{"clientUuid":"e7432841","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T16:35:40.6478133Z","actor":"a529c9bf","eventType":"RoleAssigned","payload":{"clientUuid":"a529c9bf","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":8908,"steps":1},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7729336,"lon":15.0713619},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7738279,"lon":15.0724577},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7734252,"lon":15.0727178},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7739109,"lon":15.0728539},"type":"Progress","durationMs":6124,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T16:38:42.8053073Z","actor":"a529c9bf","eventType":"EmergencyMeetingCalled","payload":{"callerId":"a529c9bf"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T16:38:42.8123231Z","actor":"a529c9bf","eventType":"MeetingStarted","payload":{"meetingId":"2eb4d06c","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T16:39:05.8120002Z","discussionEndTime":"2026-01-27T16:39:17.8120002Z","votingEndTime":"2026-01-27T16:39:47.8120002Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T16:39:47.8187267Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T16:40:04.9950124Z","actor":"e7432841","eventType":"PlayerKilled","payload":{"victimId":"a4b084ae","killerId":"e7432841","bodyId":"2474f5ed","location":{"lat":50.773490758005295,"lon":15.072820076658182}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T16:40:04.9995881Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["e7432841"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T16:41:21.5465316Z","actor":"a4b084ae","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T16:41:23.0969085Z","actor":"a4b084ae","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T16:41:27.3343069Z","actor":"a4b084ae","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":100,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":100},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T16:41:27.3548706Z","actor":"a4b084ae","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a4b084ae","displayName":"Hr\u00E1\u010D49","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T16:41:27.3651249Z","actor":"e7432841","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"e7432841","displayName":"Hr\u00E1\u010D952","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T16:41:27.3707517Z","actor":"a529c9bf","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a529c9bf","displayName":"Hr\u00E1\u010D887","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T16:41:27.3741926Z","actor":"a4b084ae","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T16:41:27.3774453Z","actor":"a4b084ae","eventType":"RoleAssigned","payload":{"clientUuid":"a4b084ae","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T16:41:27.3811798Z","actor":"e7432841","eventType":"RoleAssigned","payload":{"clientUuid":"e7432841","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":8476,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7732806,"lon":15.0725075},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7733695,"lon":15.072243},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7729924,"lon":15.0714006},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7735894,"lon":15.0717216},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T16:41:27.3844135Z","actor":"a529c9bf","eventType":"RoleAssigned","payload":{"clientUuid":"a529c9bf","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7738298,"lon":15.0716222},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7741669,"lon":15.0718846},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7732768,"lon":15.0725856},"type":"Progress","durationMs":9606,"steps":1},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7730142,"lon":15.0715442},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T16:41:37.3770812Z","actor":"a4b084ae","eventType":"SabotageStarted","payload":{"sabotageId":"0815b127","type":"CommsBlackout","initiatorId":"a4b084ae","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.7739981,"lon":15.0714832},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T16:41:55.45445Z","actor":"a4b084ae","eventType":"PlayerKilled","payload":{"victimId":"a529c9bf","killerId":"a4b084ae","bodyId":"83b8db93","location":{"lat":50.7735892,"lon":15.0721653}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T16:41:55.4576111Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["a4b084ae"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T16:41:56.3623666Z","actor":"a4b084ae","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T16:42:47.2388057Z","actor":"a4b084ae","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T16:42:51.62502Z","actor":"a4b084ae","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":100,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":100},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T16:42:51.6365701Z","actor":"a4b084ae","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a4b084ae","displayName":"Hr\u00E1\u010D49","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T16:42:51.6399754Z","actor":"e7432841","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"e7432841","displayName":"Hr\u00E1\u010D952","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T16:42:51.6434274Z","actor":"a529c9bf","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a529c9bf","displayName":"Hr\u00E1\u010D887","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T16:42:51.6466762Z","actor":"a4b084ae","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T16:42:51.6498653Z","actor":"a4b084ae","eventType":"RoleAssigned","payload":{"clientUuid":"a4b084ae","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7730823,"lon":15.071947},"type":"Progress","durationMs":6782,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7729924,"lon":15.0714006},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7740799,"lon":15.0716977},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.773851,"lon":15.073075},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T16:42:51.6530586Z","actor":"e7432841","eventType":"RoleAssigned","payload":{"clientUuid":"e7432841","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T16:42:51.6561689Z","actor":"a529c9bf","eventType":"RoleAssigned","payload":{"clientUuid":"a529c9bf","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":9506,"steps":1},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7734516,"lon":15.0723155},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7735484,"lon":15.0720508},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7738958,"lon":15.0729918},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7732806,"lon":15.0725075},"type":"Progress","durationMs":7898,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T16:42:56.004648Z","actor":"e7432841","eventType":"SabotageStarted","payload":{"sabotageId":"c0732a8d","type":"CriticalMeltdown","initiatorId":"e7432841","deadline":"2026-01-27T16:43:41.0044866Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.7732768,"lon":15.0725856},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.7739109,"lon":15.0728539},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T16:43:13.8797013Z","actor":"a4b084ae","eventType":"EmergencyMeetingCalled","payload":{"callerId":"a4b084ae"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":43,"serverSeq":43,"timestamp":"2026-01-27T16:43:13.8826701Z","actor":"a4b084ae","eventType":"MeetingStarted","payload":{"meetingId":"596578de","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T16:43:36.882651Z","discussionEndTime":"2026-01-27T16:43:48.882651Z","votingEndTime":"2026-01-27T16:44:18.882651Z"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/54cfa76b4c34433c/wal_20260127134305.ndjson b/data/lobbies/54cfa76b4c34433c/wal_20260127134305.ndjson new file mode 100644 index 0000000..14e452d --- /dev/null +++ b/data/lobbies/54cfa76b4c34433c/wal_20260127134305.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T13:43:05.2869855Z","actor":"2d3725a9","eventType":"PlayerJoined","payload":{"clientUuid":"2d3725a9","displayName":"Hr\u00E1\u010D958"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T13:43:21.6267576Z","actor":"52e7c652","eventType":"PlayerJoined","payload":{"clientUuid":"52e7c652","displayName":"Hr\u00E1\u010D807"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T13:43:38.4377483Z","actor":"e41e1d41","eventType":"PlayerJoined","payload":{"clientUuid":"e41e1d41","displayName":"Hr\u00E1\u010D547"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T13:43:41.8523289Z","actor":"2d3725a9","eventType":"PlayerLeft","payload":{"clientUuid":"2d3725a9","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T13:43:41.8544206Z","actor":"52e7c652","eventType":"HostChanged","payload":{"newHostId":"52e7c652","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T13:44:44.205779Z","actor":"e41e1d41","eventType":"PlayerLeft","payload":{"clientUuid":"e41e1d41","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T13:44:45.5568667Z","actor":"52e7c652","eventType":"PlayerLeft","payload":{"clientUuid":"52e7c652","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/56cd712b5d2f46aa/wal_20260127023522.ndjson b/data/lobbies/56cd712b5d2f46aa/wal_20260127023522.ndjson new file mode 100644 index 0000000..de40bc8 --- /dev/null +++ b/data/lobbies/56cd712b5d2f46aa/wal_20260127023522.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T02:35:22.1501691Z","actor":"8845b933","eventType":"PlayerJoined","payload":{"clientUuid":"8845b933","displayName":"Player"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T02:36:08.1806709Z","actor":"8845b933","eventType":"PlayerLeft","payload":{"clientUuid":"8845b933","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/56f23f00208946fa/wal_20260127120609.ndjson b/data/lobbies/56f23f00208946fa/wal_20260127120609.ndjson new file mode 100644 index 0000000..e123f9e --- /dev/null +++ b/data/lobbies/56f23f00208946fa/wal_20260127120609.ndjson @@ -0,0 +1,8 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:06:09.7588644Z","actor":"2a39d009","eventType":"PlayerJoined","payload":{"clientUuid":"2a39d009","displayName":"TaskOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:06:11.9090441Z","actor":"6e062362","eventType":"PlayerJoined","payload":{"clientUuid":"6e062362","displayName":"TaskPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:06:12.5418103Z","actor":"2a39d009","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:06:12.5452405Z","actor":"2a39d009","eventType":"RoleAssigned","payload":{"clientUuid":"2a39d009","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0871887,"lon":14.4192966},"type":"Progress","durationMs":7929,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0864001,"lon":14.4215285},"type":"Progress","durationMs":7961,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.085945,"lon":14.4198782},"type":"Progress","durationMs":6476,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0872843,"lon":14.4246474},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.0874357,"lon":14.4179951},"type":"Progress","durationMs":7538,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:06:12.5478833Z","actor":"6e062362","eventType":"RoleAssigned","payload":{"clientUuid":"6e062362","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:06:22.8681672Z","actor":"2a39d009","eventType":"PlayerLeft","payload":{"clientUuid":"2a39d009","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:06:22.8700019Z","actor":"6e062362","eventType":"HostChanged","payload":{"newHostId":"6e062362","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:06:22.8714933Z","actor":"6e062362","eventType":"PlayerLeft","payload":{"clientUuid":"6e062362","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/578a2e6234924b7e/snapshot_8.json b/data/lobbies/578a2e6234924b7e/snapshot_8.json new file mode 100644 index 0000000..056ee36 --- /dev/null +++ b/data/lobbies/578a2e6234924b7e/snapshot_8.json @@ -0,0 +1,71 @@ +{ + "lobbyId": "578a2e6234924b7e", + "lastEventId": 8, + "timestamp": "2026-01-27T13:58:30.9653651Z", + "checksum": "903a6c6bed851b55cb00fdf3578463e6541556145374f6211fd60adbbdbfad13", + "phase": "Lobby", + "players": [ + { + "clientUuid": "39cc9c4a", + "displayName": "Hr\u00E1\u010D880", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T13:53:36.8705417Z", + "lastPositionUpdate": "2026-01-27T13:53:36.8705418Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [] + }, + { + "clientUuid": "e76cb534", + "displayName": "Hr\u00E1\u010D839", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T13:53:38.3550591Z", + "lastPositionUpdate": "2026-01-27T13:53:38.3550591Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/578a2e6234924b7e/wal_20260127135318.ndjson b/data/lobbies/578a2e6234924b7e/wal_20260127135318.ndjson new file mode 100644 index 0000000..7d0a4ed --- /dev/null +++ b/data/lobbies/578a2e6234924b7e/wal_20260127135318.ndjson @@ -0,0 +1,10 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T13:53:18.0481996Z","actor":"cc32b9d1","eventType":"PlayerJoined","payload":{"clientUuid":"cc32b9d1","displayName":"Hr\u00E1\u010D105"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T13:53:34.5030802Z","actor":"8b210bbf","eventType":"PlayerJoined","payload":{"clientUuid":"8b210bbf","displayName":"Hr\u00E1\u010D591"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T13:53:36.8827928Z","actor":"39cc9c4a","eventType":"PlayerJoined","payload":{"clientUuid":"39cc9c4a","displayName":"Hr\u00E1\u010D880"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T13:53:38.3808575Z","actor":"e76cb534","eventType":"PlayerJoined","payload":{"clientUuid":"e76cb534","displayName":"Hr\u00E1\u010D839"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T13:53:50.3619033Z","actor":"cc32b9d1","eventType":"PlayerLeft","payload":{"clientUuid":"cc32b9d1","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T13:53:50.3756205Z","actor":"8b210bbf","eventType":"HostChanged","payload":{"newHostId":"8b210bbf","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T13:58:30.9544283Z","actor":"8b210bbf","eventType":"PlayerLeft","payload":{"clientUuid":"8b210bbf","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T13:58:30.9615599Z","actor":"39cc9c4a","eventType":"HostChanged","payload":{"newHostId":"39cc9c4a","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T13:58:30.966574Z","actor":"e76cb534","eventType":"PlayerLeft","payload":{"clientUuid":"e76cb534","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T13:58:30.9692446Z","actor":"39cc9c4a","eventType":"PlayerLeft","payload":{"clientUuid":"39cc9c4a","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/585b74d4d8514788/wal_20260127140309.ndjson b/data/lobbies/585b74d4d8514788/wal_20260127140309.ndjson new file mode 100644 index 0000000..52aab5d --- /dev/null +++ b/data/lobbies/585b74d4d8514788/wal_20260127140309.ndjson @@ -0,0 +1,16 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T14:03:09.4100157Z","actor":"4b1da7ee","eventType":"PlayerJoined","payload":{"clientUuid":"4b1da7ee","displayName":"Hr\u00E1\u010D619"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T14:03:15.8953964Z","actor":"f0231911","eventType":"PlayerJoined","payload":{"clientUuid":"f0231911","displayName":"Hr\u00E1\u010D433"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T14:03:17.9023723Z","actor":"ccb65003","eventType":"PlayerJoined","payload":{"clientUuid":"ccb65003","displayName":"Hr\u00E1\u010D897"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T14:03:18.8142565Z","actor":"4b1da7ee","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T14:03:23.657003Z","actor":"4b1da7ee","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":300,"buildings":[[50.7745461,15.068435,50.7745442,15.0684319,50.7745427,15.0684282,50.7745418,15.0684242,50.7745414,15.0684199,50.7745416,15.0684156,50.7745424,15.0684115,50.7745436,15.0684076,50.7745325,15.0684021,50.7745114,15.0683361,50.7745265,15.0682651,50.7745687,15.0682323,50.7745794,15.0682386,50.7745799,15.0682342,50.7745809,15.06823,50.7745825,15.0682262,50.7745845,15.068223,50.7745868,15.0682205,50.7745894,15.0682187,50.7745922,15.0682178,50.7745902,15.0682115,50.7747555,15.0680808,50.7747568,15.0680849,50.7747999,15.0680509,50.7748009,15.068054,50.7748521,15.0680136,50.7748892,15.0681308,50.7748793,15.0681387,50.7749449,15.0683455,50.774878,15.0683975,50.7748685,15.0683671,50.7747463,15.0684635,50.7749105,15.0689829,50.7748218,15.0690522,50.7748401,15.06911,50.7748162,15.0691292,50.7748175,15.0691336,50.7748119,15.069138,50.7748105,15.0691336,50.7747865,15.0691526,50.7747888,15.0691596,50.774743,15.0691962,50.7747199,15.0691237,50.7747243,15.0691202,50.7747121,15.069082,50.7747093,15.0690841,50.7747062,15.0690744,50.774709,15.0690722,50.774697,15.0690349,50.7746942,15.0690371,50.774691,15.0690269,50.7746938,15.0690248,50.7746815,15.0689863,50.7746787,15.0689885,50.7746752,15.0689775,50.774678,15.0689753,50.7746594,15.0689171,50.7746476,15.0689265,50.7746447,15.0689406,50.7746371,15.0689371,50.7746403,15.0689213,50.7746221,15.0688631,50.7746152,15.0688687,50.7746114,15.0688568,50.7746184,15.0688513,50.7746011,15.0687979,50.7745942,15.0688035,50.7745905,15.0687918,50.7745975,15.0687862,50.7745802,15.0687324,50.7745732,15.068738,50.7745695,15.0687266,50.7745766,15.068721,50.7745579,15.0686635,50.7745476,15.068658,50.7745502,15.0686462,50.7745591,15.0686512,50.7745712,15.0686416,50.7745565,15.068596,50.7745853,15.068573,50.7745419,15.0684384,50.7745461,15.068435],[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7737609,15.0756722,50.7733592,15.0758264,50.7733283,15.0756269,50.7734115,15.075595,50.7737306,15.0754725,50.7737609,15.0756722],[50.7728164,15.0743732,50.7728485,15.0745747,50.7725941,15.0746753,50.7725605,15.0746887,50.77243,15.0747403,50.7723979,15.074539,50.7728164,15.0743732],[50.7725313,15.0749147,50.7726529,15.0756781,50.7727128,15.0756542,50.772748,15.0756402,50.7730037,15.0755384,50.7728821,15.0747749,50.7726287,15.0748818,50.7725942,15.0748893,50.7725313,15.0749147],[50.773066,15.0759402,50.7726476,15.076106,50.7726155,15.0759049,50.7727444,15.0758538,50.7727789,15.0758402,50.7730339,15.0757391,50.773066,15.0759402],[50.7730564,15.0742132,50.7730091,15.0742672,50.7729888,15.0743735,50.7729855,15.0744805,50.7730088,15.0745931,50.773075,15.0746995,50.7731352,15.0747229,50.7730564,15.0742132],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.7727444,15.0758538,50.7727789,15.0758402,50.772748,15.0756402,50.7727128,15.0756542,50.7727444,15.0758538],[50.7725942,15.0748893,50.7725605,15.0746887,50.7725941,15.0746753,50.7726287,15.0748818,50.7725942,15.0748893],[50.7730091,15.0742672,50.7729836,15.0743201,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7731352,15.0747229,50.773075,15.0746995,50.7730088,15.0745931,50.7729855,15.0744805,50.7729888,15.0743735,50.7730091,15.0742672],[50.771201,15.0731002,50.7712149,15.0730929,50.7712263,15.0731478,50.7712125,15.073155,50.7712242,15.0732104,50.7711429,15.0732526,50.7711139,15.0731131,50.7711203,15.0731097,50.7711183,15.0731004,50.7711487,15.0730845,50.7711506,15.073094,50.7711949,15.073071,50.771201,15.0731002],[50.7755317,15.0731221,50.7755497,15.0731082,50.7755709,15.0731759,50.7755529,15.0731898,50.7755682,15.0732392,50.7754771,15.07331,50.7754254,15.0731437,50.775516,15.0730717,50.7755317,15.0731221],[50.7758916,15.0731727,50.7759039,15.0731678,50.7758887,15.0730724,50.7759407,15.0730522,50.7759351,15.0730165,50.7759994,15.0729916,50.776005,15.0730275,50.7760455,15.0730118,50.7760655,15.073142,50.7760681,15.0731409,50.7760766,15.0731935,50.7760562,15.0732016,50.7760713,15.0732959,50.7760153,15.0733176,50.7760158,15.073321,50.7760086,15.0733238,50.7760107,15.0733366,50.7759703,15.0733523,50.7759684,15.0733399,50.7759615,15.0733426,50.7759586,15.0733242,50.7759295,15.0733354,50.7759169,15.0732559,50.7759057,15.0732603,50.7759034,15.0732456,50.7758833,15.0732536,50.7758741,15.0731953,50.775894,15.0731874,50.7758916,15.0731727],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7723782,15.0704051,50.7724179,15.0703895,50.7724196,15.0703994,50.7724249,15.0703973,50.7724371,15.0704083,50.7724617,15.0705635,50.7724001,15.0705882,50.7723991,15.0705819,50.7723733,15.0705922,50.7723705,15.0705752,50.772345,15.0705852,50.7723394,15.0705505,50.7722933,15.0705688,50.772276,15.0704604,50.7722947,15.0704531,50.7722899,15.070425,50.7723176,15.0704137,50.7723156,15.0704012,50.7723743,15.0703783,50.7723782,15.0704051],[50.7719392,15.069201,50.7719557,15.0692534,50.7719746,15.0692383,50.7720312,15.0694126,50.7719876,15.0694473,50.7719917,15.0694599,50.7719637,15.0694826,50.7719596,15.06947,50.7719351,15.0694894,50.771918,15.0694372,50.7719013,15.0694507,50.7718988,15.0694431,50.7718971,15.0694444,50.7718821,15.0693984,50.7719006,15.0693834,50.771886,15.0693386,50.7718902,15.0693352,50.7718828,15.0693125,50.7719044,15.0692954,50.7718872,15.0692425,50.7719392,15.069201],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7718969,15.070342,50.7717392,15.0704035,50.771738,15.0703959,50.7717168,15.0703753,50.7717125,15.0703768,50.7717008,15.0703037,50.7717466,15.0702859,50.7717422,15.070258,50.7717129,15.0702695,50.7717107,15.0702632,50.7717123,15.070262,50.7716835,15.0701797,50.7716816,15.0701804,50.7716801,15.0701694,50.7716857,15.0701674,50.7716867,15.0701745,50.7717862,15.0700924,50.7718536,15.0700661,50.7718969,15.070342],[50.7717661,15.0687683,50.7718048,15.0689889,50.7717493,15.0690135,50.7717104,15.0687914,50.7717661,15.0687683],[50.7716331,15.0694814,50.7716347,15.0694898,50.7716504,15.0694825,50.7716563,15.0695143,50.7717084,15.06949,50.7717301,15.0696051,50.7717215,15.069609,50.7717325,15.0696695,50.7716899,15.0696897,50.7716932,15.0697072,50.7716296,15.069737,50.7716288,15.0697331,50.7716091,15.0697428,50.7715967,15.0696765,50.771594,15.0696777,50.7715784,15.069595,50.7715812,15.0695937,50.7715721,15.0695444,50.7716168,15.0695236,50.7716109,15.0694918,50.7716331,15.0694814],[50.7716402,15.0692344,50.7716558,15.0692276,50.7716722,15.0693209,50.7716533,15.0693291,50.7716548,15.0693377,50.7716226,15.0693516,50.771628,15.0693827,50.7715952,15.0693971,50.7715944,15.0693925,50.7715918,15.0693936,50.7715874,15.0693685,50.7715447,15.0693872,50.7715412,15.0693669,50.7715385,15.069368,50.7715321,15.0693464,50.7715307,15.0693234,50.7715333,15.0693223,50.7715294,15.0693002,50.7715342,15.0692984,50.7715244,15.0692429,50.7715304,15.0692257,50.7716309,15.0691819,50.7716402,15.0692344],[50.7720818,15.0698367,50.772105,15.0699079,50.772122,15.0698938,50.772152,15.0699865,50.7721535,15.0699909,50.7721365,15.0700047,50.772137,15.0700063,50.7720541,15.0700728,50.7720501,15.0700601,50.772013,15.0700895,50.7719676,15.0699485,50.7719655,15.06995,50.7719594,15.0699311,50.7719689,15.0699235,50.7719698,15.0699266,50.772043,15.0698679,50.772048,15.0698457,50.7720609,15.0698353,50.7720728,15.0698439,50.7720818,15.0698367],[50.7723238,15.0696814,50.7723396,15.0696894,50.772346,15.0697092,50.7723402,15.0697316,50.7723347,15.069736,50.7723767,15.0698618,50.7723655,15.069871,50.7723664,15.0698737,50.772361,15.0698996,50.7723311,15.0699239,50.7723126,15.0699145,50.7723091,15.0699037,50.7722507,15.0699512,50.7722036,15.0698068,50.7722091,15.0698024,50.7721972,15.0697668,50.7722286,15.0697414,50.7722269,15.0697363,50.7722739,15.0696982,50.77228,15.069717,50.7723238,15.0696814],[50.7721996,15.0690288,50.7722045,15.0690511,50.7722264,15.0690392,50.7722394,15.0690979,50.7722351,15.0691002,50.7722512,15.0691727,50.7722554,15.0691704,50.7722655,15.0691768,50.7722709,15.0692007,50.7722657,15.0692166,50.7722615,15.0692189,50.7722652,15.0692358,50.7722176,15.0692626,50.7722168,15.0692592,50.7721607,15.0692901,50.772145,15.0692197,50.7721235,15.0692315,50.7721122,15.0691806,50.7721337,15.0691688,50.7721118,15.0690705,50.7721576,15.0690452,50.772159,15.0690514,50.7721996,15.0690288],[50.7726999,15.0698343,50.772729,15.0698615,50.7727152,15.0698967,50.7727324,15.0700044,50.7727307,15.0700051,50.7727353,15.0700342,50.7726769,15.0700574,50.7726809,15.0700825,50.772646,15.0700963,50.7726447,15.0700879,50.7726056,15.0701034,50.7726003,15.0700707,50.7725917,15.0700742,50.7725816,15.0700099,50.7725771,15.0700118,50.7725627,15.0699211,50.7725734,15.0699165,50.7725698,15.0698931,50.7726598,15.0698571,50.7726603,15.0698612,50.772695,15.0698471,50.7726999,15.0698343],[50.773142,15.069712,50.773132,15.069731,50.773141,15.069786,50.773051,15.069821,50.773027,15.069671,50.773074,15.069656,50.773066,15.069626,50.773114,15.069608,50.773125,15.069682,50.77314,15.069691,50.773142,15.069712],[50.7727178,15.0695693,50.7726282,15.0696411,50.7726029,15.0695624,50.7726109,15.069556,50.7725855,15.0694771,50.7726289,15.0694425,50.7726328,15.069455,50.7726712,15.0694243,50.7727178,15.0695693],[50.7730417,15.0690918,50.7730463,15.0691046,50.7730429,15.0691219,50.7730551,15.0691603,50.7730628,15.0691543,50.773084,15.0692213,50.7730762,15.069227,50.7730986,15.0693044,50.773047,15.0693451,50.7730505,15.069356,50.7730453,15.0693602,50.7730537,15.0693865,50.7730341,15.0694018,50.7730259,15.0693757,50.7730211,15.0693794,50.7730176,15.0693684,50.7729658,15.0694094,50.7729325,15.0693072,50.7729279,15.069311,50.7729036,15.0692366,50.7729082,15.0692328,50.7728972,15.069199,50.7729328,15.0691702,50.7729299,15.0691614,50.7729809,15.06912,50.7729837,15.0691289,50.7730122,15.0691058,50.7730157,15.0690888,50.773024,15.069082,50.7730247,15.069079,50.7730424,15.0690888,50.7730417,15.0690918],[50.7725168,15.0686991,50.772542,15.0687771,50.7725614,15.0687614,50.7725927,15.0688585,50.77259,15.0688649,50.7725759,15.0688212,50.7725603,15.0688337,50.7725853,15.0689114,50.7725438,15.0689446,50.7725462,15.0689522,50.7725445,15.0689535,50.772553,15.0689798,50.772495,15.0690263,50.7724865,15.069,50.7724849,15.0690013,50.7724824,15.068994,50.7724554,15.0690156,50.7724562,15.0690215,50.7724562,15.0690275,50.7724556,15.0690334,50.7724543,15.069039,50.7724523,15.0690442,50.7724498,15.0690487,50.7724468,15.0690523,50.7724434,15.0690551,50.7724398,15.0690568,50.772436,15.0690574,50.7724322,15.0690569,50.7724285,15.0690553,50.7724251,15.0690526,50.772422,15.069049,50.7724195,15.0690446,50.7724175,15.0690395,50.7724161,15.069034,50.7724154,15.0690281,50.7724154,15.0690221,50.7724161,15.0690162,50.7724175,15.0690106,50.7724195,15.0690055,50.772422,15.0690011,50.7724251,15.0689975,50.7723672,15.0688201,50.7724192,15.068778,50.7724205,15.068782,50.7724717,15.0687406,50.7724704,15.0687366,50.7725168,15.0686991],[50.7728276,15.0686055,50.772848,15.0685892,50.7728637,15.068638,50.7728376,15.0686589,50.7728639,15.0687407,50.7728516,15.0687505,50.7728528,15.0687546,50.7728491,15.0687715,50.7728304,15.0687864,50.7728199,15.0687808,50.7728186,15.0687769,50.7728062,15.0687869,50.7728021,15.0687743,50.7727319,15.0688305,50.7727097,15.0687615,50.7727016,15.0687681,50.7726805,15.0687028,50.7726887,15.0686963,50.7726712,15.0686419,50.7727204,15.0686025,50.7727268,15.0686225,50.7728114,15.0685551,50.7728276,15.0686055],[50.7730904,15.0685326,50.7730997,15.0685612,50.773081,15.0685761,50.7730788,15.0685694,50.7730584,15.0685857,50.7730617,15.0685958,50.773011,15.0686364,50.7730077,15.0686263,50.7729683,15.0686579,50.772935,15.0685549,50.7729655,15.0685304,50.7729481,15.0684762,50.773043,15.0684012,50.7730864,15.0685359,50.7730904,15.0685326],[50.7716696,15.0716616,50.7716897,15.0717914,50.771695,15.0717895,50.7717047,15.0718521,50.7716994,15.0718541,50.77172,15.0719862,50.7716258,15.0720225,50.7716232,15.0720236,50.7715726,15.071699,50.7715753,15.071698,50.7716696,15.0716616],[50.7712498,15.0720491,50.7712521,15.0720466,50.7712738,15.0720937,50.7712715,15.0720961,50.7713111,15.0721816,50.7712362,15.0722677,50.7712131,15.0722177,50.7712099,15.0722215,50.7711808,15.0721587,50.7711841,15.0721549,50.7711611,15.0721053,50.7712362,15.0720195,50.7712498,15.0720491],[50.7709567,15.0716121,50.7709553,15.0716138,50.7709942,15.0716881,50.770979,15.0717075,50.7709802,15.0717096,50.7709646,15.0717295,50.7709657,15.0717317,50.7709483,15.071754,50.7709547,15.0717665,50.7709307,15.0717973,50.7709242,15.0717847,50.7708805,15.0718369,50.7707819,15.0716451,50.770881,15.0715185,50.7708831,15.0715225,50.7708995,15.0715015,50.7709567,15.0716121],[50.77188,15.0705055,50.7719168,15.0707362,50.771912,15.070738,50.7719144,15.0707531,50.7718739,15.0707692,50.7718715,15.0707541,50.7717996,15.0707827,50.7718002,15.0707866,50.7717919,15.0707898,50.7717846,15.0707436,50.771787,15.0707426,50.7717741,15.0706612,50.7717619,15.070666,50.7717533,15.0706117,50.7717636,15.0706076,50.7717609,15.0705907,50.7717972,15.0705759,50.7717916,15.0705415,50.77188,15.0705055],[50.7716314,15.0714165,50.7716475,15.0715199,50.7716527,15.0715178,50.7716625,15.0715804,50.7716572,15.0715825,50.7716696,15.0716616,50.7715753,15.071698,50.7715372,15.0714534,50.7716314,15.0714165],[50.7715727,15.0711217,50.7715782,15.0711196,50.7715878,15.071183,50.7715824,15.0711849,50.7716025,15.0713169,50.7715079,15.071353,50.7714576,15.0710256,50.7715525,15.0709895,50.7715727,15.0711217],[50.7711492,15.0726848,50.771164,15.0726802,50.7711722,15.0727467,50.7711575,15.0727513,50.7711631,15.0727959,50.7711496,15.0728,50.7711552,15.0728455,50.7710943,15.0728643,50.7710886,15.0728186,50.7710747,15.072823,50.7710594,15.0726997,50.7710664,15.0726827,50.7711459,15.0726582,50.7711492,15.0726848],[50.77172,15.0719862,50.771732,15.0720637,50.7717372,15.0720616,50.7717469,15.0721238,50.7717416,15.0721259,50.7717577,15.0722293,50.7716638,15.0722668,50.7716258,15.0720225,50.77172,15.0719862],[50.7717616,15.0723435,50.77178,15.072462,50.7717849,15.0724602,50.7717946,15.0725231,50.7717899,15.0725249,50.7718084,15.0726443,50.7717139,15.0726808,50.7716669,15.0723802,50.7717616,15.0723435],[50.7715212,15.0729113,50.7715246,15.07291,50.7715314,15.0729541,50.7715281,15.0729555,50.7715397,15.0730301,50.7715026,15.0730444,50.7715058,15.0730649,50.7714458,15.0730881,50.7714119,15.0728744,50.7715097,15.0728371,50.7715212,15.0729113],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.7720045,15.0709227,50.772005,15.0709172,50.7720062,15.0709119,50.772008,15.0709071,50.7720104,15.070903,50.7720133,15.0708997,50.7720165,15.0708973,50.77202,15.0708961,50.7720235,15.0708959,50.772027,15.0708969,50.7720391,15.0709096,50.7720867,15.0708928,50.7720994,15.0709764,50.7721537,15.0709559,50.7721671,15.0710455,50.7719941,15.0711106,50.7719814,15.0711234,50.7719683,15.0711194,50.7719597,15.0710846,50.7719494,15.0710158,50.7719544,15.0710139,50.7719442,15.0709464,50.7720045,15.0709227],[50.7721196,15.0713084,50.7721221,15.0713249,50.7721299,15.0713219,50.7721291,15.0713171,50.7721603,15.0713049,50.772182,15.0714453,50.7720991,15.0714775,50.772103,15.0715023,50.7720736,15.0715137,50.7720696,15.0714889,50.7720121,15.0715115,50.7719909,15.071376,50.7721064,15.071331,50.7721039,15.0713145,50.7721196,15.0713084],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7761449,15.0703316,50.7761179,15.0703529,50.7761097,15.0703272,50.7760299,15.0703905,50.7760092,15.0703254,50.7760148,15.070321,50.7759932,15.0702533,50.7760409,15.0702155,50.7760316,15.0701866,50.7760979,15.0701337,50.7761302,15.0702348,50.7761173,15.070245,50.7761449,15.0703316],[50.7760443,15.0710321,50.7760576,15.071075,50.7760591,15.0710737,50.7760831,15.0711496,50.776066,15.0711629,50.7760924,15.071248,50.7760461,15.0712852,50.7760434,15.0712767,50.7760163,15.0712991,50.7760123,15.0713179,50.7759823,15.0713023,50.7759859,15.0712854,50.775964,15.0713026,50.7759458,15.0712452,50.7759573,15.0712362,50.7759333,15.0711603,50.7759433,15.0711525,50.7759323,15.0711179,50.7760102,15.0710566,50.7760108,15.0710586,50.7760443,15.0710321],[50.7751637,15.0704631,50.7751873,15.0704442,50.7752075,15.0705078,50.7751834,15.0705268,50.7752149,15.0706272,50.7751841,15.0706516,50.7751864,15.0706585,50.7751582,15.0706809,50.7751444,15.0706376,50.7751096,15.0706651,50.7750901,15.0706039,50.7750846,15.0706083,50.7750809,15.0705965,50.7750661,15.0706082,50.7750462,15.0705455,50.775061,15.0705338,50.7750569,15.0705212,50.7750624,15.0705168,50.775043,15.0704557,50.7750718,15.0704331,50.7750711,15.070431,50.7751024,15.0704062,50.7751031,15.0704085,50.7751379,15.0703814,50.7751637,15.0704631],[50.775839,15.0705962,50.7758489,15.0706274,50.7757856,15.0706776,50.7757351,15.0705194,50.7758088,15.070461,50.7758023,15.0704406,50.7758279,15.0704204,50.7758748,15.0705681,50.775839,15.0705962],[50.7737764,15.0696257,50.7737483,15.0695369,50.7737403,15.0695433,50.7737122,15.0694542,50.7737043,15.0694607,50.7736754,15.0693688,50.7736791,15.0693655,50.7736681,15.0693307,50.7737285,15.0693317,50.7737608,15.0693064,50.7737573,15.0692958,50.7738589,15.0692155,50.7738904,15.0693154,50.7738824,15.0693216,50.7739105,15.0694104,50.7739025,15.0694166,50.7739306,15.0695055,50.7739226,15.0695117,50.7739502,15.0695993,50.7738119,15.0697078,50.7737843,15.0696195,50.7737764,15.0696257],[50.7735638,15.0690008,50.7737809,15.0688307,50.7738792,15.0691536,50.7738473,15.0691787,50.7738589,15.0692155,50.7737573,15.0692958,50.7737608,15.0693064,50.7737285,15.0693317,50.7736675,15.0693285,50.7735638,15.0690008],[50.7740925,15.0690877,50.7740919,15.0690789,50.7740925,15.0690611,50.7740955,15.069044,50.7741009,15.0690283,50.7741043,15.0690213,50.7741083,15.0690149,50.7741099,15.0690161,50.7741376,15.0689945,50.7741376,15.0689916,50.7741405,15.0689882,50.7741438,15.0689856,50.7741473,15.0689841,50.7741509,15.0689836,50.7741546,15.0689842,50.774158,15.0689858,50.7741613,15.0689885,50.7741642,15.068992,50.7741666,15.0689963,50.7741662,15.0689991,50.7741822,15.0690097,50.7741853,15.069015,50.77419,15.069025,50.7741989,15.0690304,50.7742022,15.0690137,50.7742129,15.0690051,50.7742247,15.0690108,50.7742299,15.0690282,50.774226,15.0690463,50.7742234,15.0690483,50.7742388,15.0690966,50.7742455,15.0690912,50.7742471,15.069096,50.77425,15.0690937,50.7742794,15.0691858,50.7742765,15.0691881,50.7742778,15.0691927,50.7742711,15.0691981,50.7742945,15.0692721,50.7742469,15.0693098,50.774253,15.0693291,50.7742123,15.0693608,50.7742064,15.0693419,50.7741579,15.0693803,50.7741342,15.0693074,50.7741317,15.0693093,50.7740993,15.0692097,50.7741017,15.0692078,50.7740769,15.0691302,50.7740993,15.069112,50.7740943,15.0690882,50.7740925,15.0690877],[50.774568,15.0701178,50.7745736,15.0701133,50.7746048,15.0702115,50.7745992,15.0702159,50.7746189,15.0702782,50.7745738,15.070314,50.7745779,15.0703267,50.7745727,15.0703308,50.7745751,15.0703383,50.7745525,15.0703562,50.7745502,15.0703486,50.7745449,15.0703528,50.7745409,15.0703401,50.7744982,15.0703739,50.7744976,15.0703719,50.7744686,15.0703949,50.7744433,15.0703172,50.7744772,15.07029,50.7744786,15.0702948,50.7744946,15.0702822,50.7744707,15.0702074,50.7744388,15.0702327,50.7744158,15.0701606,50.7745481,15.070055,50.774568,15.0701178],[50.774455,15.0696524,50.7744653,15.0696852,50.7744434,15.0697027,50.7744451,15.0697083,50.7744415,15.0697112,50.7744645,15.0697834,50.7744193,15.0698193,50.7744298,15.0698521,50.7744243,15.0698565,50.7744257,15.0698609,50.7743991,15.0698822,50.7743977,15.0698778,50.7743919,15.0698824,50.7743814,15.0698496,50.7743365,15.0698853,50.7742538,15.0696254,50.7742964,15.0695919,50.7742911,15.0695754,50.774334,15.0695415,50.7743393,15.0695579,50.774382,15.0695239,50.774405,15.0695964,50.7744086,15.0695935,50.7744103,15.0695992,50.7744323,15.0695819,50.7744425,15.0696138,50.774445,15.0696122,50.7744477,15.0696115,50.7744504,15.0696116,50.774453,15.0696125,50.7744555,15.0696142,50.7744577,15.0696166,50.7744596,15.0696196,50.7744611,15.0696232,50.7744621,15.0696271,50.7744625,15.0696313,50.7744625,15.0696356,50.7744619,15.0696397,50.7744609,15.0696437,50.7744593,15.0696473,50.7744573,15.0696502,50.774455,15.0696524],[50.7759103,15.0699581,50.7759066,15.069961,50.7758897,15.0699506,50.7758818,15.0699259,50.7758869,15.0698981,50.7758906,15.0698954,50.7758845,15.069876,50.7758918,15.0698704,50.7758705,15.0698027,50.7758901,15.0697873,50.7758894,15.0697847,50.7759593,15.0697301,50.77596,15.0697326,50.77598,15.0697171,50.7760543,15.0699538,50.7760311,15.0699719,50.7760351,15.0699844,50.7760194,15.0699966,50.7760214,15.0700029,50.7759908,15.0700268,50.7759849,15.070008,50.7759448,15.0700393,50.7759236,15.0699717,50.7759163,15.0699775,50.7759103,15.0699581],[50.7755618,15.0695847,50.7754311,15.0696877,50.7753763,15.0695122,50.775415,15.0694824,50.7754142,15.0694798,50.7754681,15.0694379,50.7754688,15.0694404,50.7755073,15.0694106,50.7755618,15.0695847],[50.7757585,15.0702054,50.7757272,15.0702301,50.7757343,15.0702527,50.7757159,15.0702673,50.7757087,15.0702448,50.7756546,15.0702876,50.7756396,15.0702402,50.7756445,15.0702364,50.7756193,15.0701569,50.7756271,15.0701507,50.7756104,15.0700983,50.7756469,15.0700695,50.7756435,15.0700589,50.7756805,15.0700297,50.7756839,15.0700403,50.7757051,15.0700234,50.7757222,15.0700774,50.7757257,15.0700748,50.7757481,15.0701449,50.775741,15.0701504,50.7757585,15.0702054],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7756,15.070556,50.775557,15.070589,50.77557,15.070632,50.775611,15.070598,50.7756,15.070556],[50.7759381,15.0709403,50.7759471,15.0709679,50.7759188,15.0709911,50.77592,15.0709945,50.7758541,15.0710484,50.7758466,15.0710258,50.7758387,15.07102,50.7758338,15.0710051,50.7758334,15.0709853,50.7758282,15.0709695,50.7758497,15.0709518,50.7758277,15.0708853,50.7759452,15.0707891,50.7759829,15.0709036,50.7759381,15.0709403],[50.7755144,15.0714779,50.7755518,15.0715956,50.7755475,15.0715991,50.7755594,15.0716365,50.7755236,15.0716648,50.7755177,15.0716466,50.7754841,15.0716731,50.7754795,15.0716583,50.7754351,15.0716934,50.7754128,15.0716233,50.77541,15.0716256,50.7754073,15.071617,50.7753938,15.0716276,50.7753769,15.0715747,50.7753905,15.0715639,50.7753877,15.0715551,50.7753905,15.0715529,50.7753684,15.0714836,50.7754103,15.0714505,50.7754072,15.0714409,50.775441,15.0714141,50.7754441,15.0714238,50.7754838,15.0713932,50.7755115,15.0714802,50.7755144,15.0714779],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.775303,15.0708614,50.7753184,15.0709103,50.7753202,15.070909,50.7753624,15.0710422,50.7753529,15.0710495,50.7753654,15.0710889,50.7753131,15.0711301,50.7753107,15.0711226,50.7752656,15.071158,50.7752449,15.0710924,50.7752362,15.071099,50.7752326,15.0710873,50.7752269,15.0710917,50.775217,15.0710861,50.7752073,15.0710557,50.7752106,15.0710399,50.7752162,15.0710354,50.7752124,15.0710236,50.775221,15.071017,50.7752003,15.0709515,50.7752454,15.070916,50.7752431,15.0709085,50.775303,15.0708614],[50.7752185,15.0721634,50.7752173,15.0721699,50.7752377,15.0722341,50.7752458,15.0722278,50.7752745,15.0723183,50.7752722,15.0723202,50.7752824,15.0723534,50.7752432,15.0723848,50.775244,15.0723872,50.775166,15.0724485,50.7751263,15.0723232,50.7751352,15.0723161,50.7751014,15.0722114,50.7751542,15.0721689,50.7751574,15.0721791,50.7751886,15.0721541,50.7751895,15.0721481,50.7752005,15.0721393,50.775213,15.0721462,50.7752185,15.0721634],[50.7753236,15.072471,50.7753318,15.0724972,50.7753303,15.0724983,50.775344,15.0725419,50.7753489,15.072538,50.7753534,15.0725525,50.7753715,15.0725383,50.7753897,15.0725948,50.7753714,15.0726089,50.7753762,15.0726237,50.7753711,15.0726277,50.7753867,15.0726751,50.7752966,15.0727459,50.7752578,15.0726231,50.7752331,15.0725457,50.7752581,15.0725259,50.7752549,15.0725159,50.7753138,15.0724655,50.7753236,15.072471],[50.7754147,15.0727618,50.7754356,15.0728252,50.7754517,15.0728119,50.775474,15.0728795,50.7754576,15.0728929,50.7754817,15.0729652,50.7753703,15.0730554,50.7753603,15.073049,50.7753585,15.0730433,50.7753281,15.0730694,50.7753066,15.0730632,50.7752957,15.0730318,50.7753049,15.0730012,50.7752933,15.0729659,50.7753299,15.072936,50.7753148,15.0728901,50.7752913,15.0729095,50.7752681,15.0728393,50.7754049,15.0727269,50.7754161,15.0727608,50.7754147,15.0727618],[50.7758491,15.0725117,50.7759179,15.0727317,50.7758831,15.0727588,50.7758874,15.0727725,50.7758528,15.0727995,50.7758488,15.0727867,50.7758012,15.0728239,50.7758001,15.0728205,50.7757819,15.0728346,50.7757632,15.0727737,50.7757821,15.0727588,50.7757446,15.0726397,50.7757373,15.0726453,50.7757152,15.0725743,50.775768,15.0725333,50.7757642,15.0725208,50.7758156,15.0724807,50.7758299,15.0725266,50.7758491,15.0725117],[50.7757385,15.07206,50.7757616,15.0721328,50.7757632,15.0721316,50.7757897,15.0722151,50.7757422,15.0722534,50.7757469,15.0722678,50.7757104,15.0722973,50.7757057,15.0722826,50.7756555,15.072323,50.7756326,15.0722507,50.7756025,15.0722726,50.775573,15.0721801,50.7756022,15.0721554,50.7755793,15.0720833,50.7756277,15.0720443,50.7756266,15.0720408,50.7756313,15.0720192,50.7756559,15.0719993,50.7756699,15.072006,50.775671,15.0720094,50.7757135,15.0719752,50.7757401,15.0720588,50.7757385,15.07206],[50.7761693,15.0715,50.7762341,15.071702,50.7761378,15.0717789,50.7760978,15.0716552,50.7760761,15.0716534,50.7760621,15.0716103,50.7760729,15.0715776,50.7761159,15.071543,50.7761102,15.0715254,50.776135,15.0715054,50.7761408,15.0715229,50.7761693,15.0715],[50.7762676,15.0718614,50.7762846,15.0718485,50.7763221,15.0719677,50.7763052,15.071981,50.7763008,15.0720018,50.7762876,15.072012,50.7762727,15.0720045,50.7762343,15.0720346,50.7762194,15.0719873,50.7762138,15.0719917,50.7761911,15.0719254,50.7761926,15.0719244,50.7761735,15.0718696,50.776251,15.0718089,50.7762676,15.0718614],[50.7763811,15.0722623,50.7763783,15.0722648,50.7763753,15.0722665,50.7763721,15.0722673,50.7763688,15.0722674,50.7763657,15.0722665,50.7763626,15.0722649,50.7763598,15.0722625,50.7763294,15.0722865,50.7763195,15.072256,50.7763039,15.0722686,50.7762891,15.0722224,50.7762642,15.0722425,50.7762565,15.0722374,50.7762524,15.0722247,50.7762616,15.0722173,50.7762438,15.0721623,50.7762609,15.0721485,50.7762593,15.0721437,50.7763068,15.0721062,50.776306,15.0721038,50.7763519,15.0720674,50.7763682,15.0721183,50.7763786,15.07211,50.7763994,15.0721757,50.7763733,15.0721963,50.7763799,15.072217,50.7763825,15.0722202,50.7763848,15.0722242,50.7763865,15.0722288,50.7763876,15.0722339,50.7763881,15.0722391,50.7763879,15.0722444,50.7763871,15.0722496,50.7763856,15.0722544,50.7763836,15.0722587,50.7763811,15.0722623],[50.7761902,15.0728079,50.7762457,15.0727639,50.7762824,15.072881,50.7762273,15.0729245,50.7761902,15.0728079],[50.7713076,15.0736031,50.771316,15.0736021,50.7713204,15.0736845,50.7713121,15.0736856,50.7713128,15.0737002,50.7712233,15.0737121,50.7712221,15.0736886,50.7712109,15.0736902,50.7712072,15.0736209,50.7712184,15.0736194,50.7712141,15.07354,50.7713036,15.0735281,50.7713076,15.0736031],[50.7716205,15.0735307,50.7716231,15.0735323,50.7716243,15.0735362,50.7716245,15.0735549,50.7716256,15.073555,50.7716295,15.0735572,50.7716312,15.0735631,50.7716337,15.0737085,50.7716322,15.0737147,50.7716284,15.0737173,50.7715513,15.0737205,50.7715475,15.0737183,50.7715458,15.0737124,50.7715451,15.0736726,50.7715356,15.0736731,50.7715318,15.0736708,50.7715302,15.0736648,50.7715293,15.073616,50.7715307,15.0736098,50.7715345,15.0736072,50.771544,15.0736067,50.7715433,15.073567,50.7715448,15.0735608,50.7715486,15.0735582,50.7715771,15.0735569,50.7715766,15.0735326,50.7716205,15.0735307],[50.7717049,15.0740075,50.7717387,15.0742209,50.7716368,15.0742603,50.7716231,15.0741713,50.7716164,15.0741655,50.7716134,15.0741461,50.7716174,15.0741355,50.7716038,15.0740466,50.7717049,15.0740075],[50.7713128,15.0741365,50.7713483,15.0742015,50.7713595,15.0742004,50.7713739,15.0742263,50.7713713,15.0742454,50.7713894,15.0742795,50.7713384,15.0743479,50.7713338,15.0743394,50.7712982,15.0743872,50.7712259,15.0742531,50.7713128,15.0741365],[50.7760704,15.073696,50.7761098,15.0736807,50.7761323,15.0738207,50.7761353,15.0738195,50.7761405,15.0738231,50.7761473,15.0738658,50.7761446,15.0738745,50.7761411,15.0738758,50.7761589,15.0739866,50.7760742,15.0740191,50.7760675,15.0739757,50.7760242,15.0739925,50.77602,15.0739869,50.775995,15.0738272,50.7759898,15.0738293,50.7759878,15.0738173,50.7759791,15.0738209,50.7759674,15.0737499,50.7759755,15.0737467,50.7759734,15.0737337,50.7760234,15.0737133,50.7760223,15.0737069,50.7760691,15.0736878,50.7760704,15.073696],[50.7747953,15.0734128,50.7749794,15.0734047,50.7749886,15.0739546,50.7748051,15.0739635,50.774805,15.0739561,50.7747954,15.0734185,50.7747953,15.0734128],[50.7756061,15.0736962,50.775624,15.0736888,50.7756265,15.0737042,50.7756439,15.0737121,50.7756486,15.0737412,50.7756359,15.0737616,50.7756382,15.0737763,50.7755857,15.0737997,50.7755912,15.07383,50.7755649,15.0738409,50.7755676,15.0738569,50.7755396,15.0738682,50.775537,15.0738526,50.775514,15.0738621,50.7755186,15.0738892,50.7754923,15.0738998,50.775475,15.073798,50.7754816,15.0737954,50.7754741,15.07375,50.7754838,15.0737452,50.7754647,15.0736345,50.7755874,15.0735825,50.7756061,15.0736962],[50.775309,15.075513,50.775182,15.075528,50.775187,15.075621,50.77522,15.075616,50.775224,15.075639,50.775242,15.075636,50.775252,15.075654,50.77526,15.075636,50.775279,15.075632,50.775277,15.075608,50.775314,15.075607,50.775309,15.075513],[50.7755391,15.0745415,50.7755432,15.0745665,50.7755573,15.0745608,50.775565,15.0746086,50.775551,15.0746143,50.7755601,15.0746696,50.7755334,15.0746799,50.775536,15.0746962,50.7755284,15.0747165,50.775506,15.0747252,50.7754938,15.0747127,50.7754912,15.0746965,50.7754634,15.0747072,50.775442,15.0745792,50.7755391,15.0745415],[50.7750127,15.0741195,50.7750892,15.0741161,50.7750896,15.0741643,50.7751156,15.0741644,50.7751158,15.0742121,50.7751348,15.0742119,50.7751352,15.074264,50.775116,15.0742642,50.7751162,15.074331,50.7750807,15.0743318,50.7750811,15.0743552,50.7749926,15.0743583,50.7749916,15.0741455,50.7750131,15.0741446,50.7750127,15.0741195],[50.7754584,15.0741179,50.7754585,15.0741884,50.7754788,15.0741883,50.775479,15.0742421,50.7754587,15.0742422,50.7754589,15.0743284,50.7754073,15.0743283,50.7753995,15.0743413,50.7753807,15.0743414,50.7753727,15.0743284,50.7753207,15.0743291,50.7753205,15.0742767,50.7753227,15.0742767,50.7753222,15.0741179,50.7754584,15.0741179],[50.7757499,15.0745588,50.775748,15.0745467,50.7756382,15.0745923,50.7756262,15.0745157,50.7756088,15.0745225,50.7756028,15.0744849,50.7755872,15.0743868,50.7756148,15.0743756,50.7756929,15.0743439,50.7756903,15.0743282,50.7757124,15.0743191,50.7757144,15.074331,50.7757963,15.0742976,50.7758325,15.074524,50.7757499,15.0745588],[50.7761514,15.0735358,50.7761605,15.07359,50.776117,15.0736079,50.7761053,15.0735374,50.7760911,15.0735434,50.7760774,15.0734599,50.7761436,15.0734327,50.7761601,15.0735321,50.7761514,15.0735358],[50.7724145,15.0739846,50.7723917,15.0739931,50.7723939,15.0740069,50.7723162,15.0740362,50.7723103,15.0739967,50.7723059,15.0739983,50.772305,15.0739927,50.7723012,15.0739934,50.7722973,15.0739931,50.7722936,15.0739918,50.7722901,15.0739895,50.7722868,15.0739863,50.772284,15.0739822,50.7722816,15.0739775,50.7722798,15.0739721,50.7722786,15.0739664,50.7722781,15.0739604,50.7722782,15.0739544,50.7722789,15.0739485,50.7722803,15.0739428,50.7722823,15.0739377,50.7722848,15.0739331,50.7722877,15.0739293,50.7722911,15.0739263,50.7722947,15.0739243,50.7722937,15.0739182,50.7723984,15.0738786,50.7724145,15.0739846],[50.7731071,15.0682394,50.7730959,15.0682022,50.7731431,15.0681668,50.7731543,15.0682039,50.7731071,15.0682394],[50.7731289,15.0683117,50.773118,15.0682758,50.7731653,15.0682403,50.7731762,15.0682763,50.7731289,15.0683117],[50.7731313,15.0681276,50.7731431,15.0681668,50.7730959,15.0682022,50.7730841,15.068163,50.7731313,15.0681276],[50.7735348,15.0677797,50.7735711,15.0677507,50.7735139,15.0675722,50.7735064,15.0675783,50.7734664,15.0674564,50.7735423,15.0673948,50.7736022,15.0673463,50.7736133,15.0673812,50.7736597,15.0673442,50.7736877,15.0674316,50.7736853,15.0674335,50.7737682,15.0676928,50.7737758,15.0676867,50.7737767,15.0676895,50.7737949,15.0676752,50.7738706,15.0679124,50.7738526,15.0679269,50.7738534,15.0679298,50.773727,15.0680312,50.7737263,15.0680292,50.7735617,15.0681612,50.7735624,15.0681632,50.7735343,15.0681858,50.7735224,15.0681489,50.77351,15.0681545,50.773497,15.0681559,50.7734842,15.0681529,50.773478,15.0681498,50.7734665,15.0681406,50.7734612,15.0681346,50.7734521,15.0681201,50.7734451,15.0681029,50.7734424,15.0680934,50.7734391,15.0680735,50.7734386,15.068053,50.7734407,15.0680327,50.7734456,15.0680135,50.7734528,15.0679964,50.7734572,15.0679888,50.7734675,15.0679761,50.773455,15.0679372,50.7734582,15.0679378,50.7734233,15.0678292,50.7734209,15.0678311,50.7733708,15.0676757,50.7734764,15.0675917,50.7734987,15.0676613,50.7735164,15.0677162,50.7735267,15.0677481,50.773525,15.0677495,50.7735348,15.0677797],[50.7731762,15.0682763,50.7731883,15.0683165,50.773141,15.068352,50.7731289,15.0683117,50.7731762,15.0682763],[50.772921,15.0684145,50.7728692,15.0684574,50.7728547,15.0684114,50.7729068,15.0683676,50.772921,15.0684145],[50.7731543,15.0682039,50.7731653,15.0682403,50.773118,15.0682758,50.7731071,15.0682394,50.7731543,15.0682039],[50.7730214,15.0678406,50.773038,15.0678928,50.7730425,15.0678895,50.7730467,15.0679029,50.7730492,15.0679008,50.7730613,15.0679082,50.7730686,15.0679308,50.7730653,15.0679505,50.7730627,15.0679525,50.7730828,15.0680144,50.7730878,15.0680103,50.7730928,15.068026,50.7730828,15.0680345,50.7730802,15.0680268,50.7729788,15.0681075,50.7729192,15.0679237,50.7730214,15.0678406],[50.7747302,15.0764443,50.7741683,15.0766539,50.7740729,15.0760161,50.7746138,15.0758877,50.7747302,15.0764443],[50.7714067,15.0733041,50.7713938,15.0732216,50.7714225,15.0732102,50.7714354,15.0732931,50.7714067,15.0733041],[50.7714366,15.0722058,50.7714318,15.0721574,50.7714912,15.0721426,50.771496,15.0721916,50.7714366,15.0722058],[50.7713522,15.0715081,50.7713625,15.071504,50.7713693,15.0715473,50.771359,15.0715514,50.771373,15.0716401,50.7712809,15.0716768,50.771217,15.0712737,50.7712147,15.0712746,50.7711916,15.0711282,50.7712885,15.0710901,50.7713116,15.0712365,50.7713094,15.0712373,50.7713522,15.0715081],[50.7721604,15.0685744,50.7721066,15.0686022,50.7720972,15.0685567,50.7721509,15.0685289,50.7721604,15.0685744],[50.7716475,15.0731502,50.7716417,15.0731036,50.7716995,15.073085,50.7717056,15.0731318,50.7716475,15.0731502],[50.7715362,15.074508,50.7714841,15.0745663,50.7714669,15.0745277,50.7715191,15.0744696,50.7715362,15.074508],[50.7721886,15.0687103,50.7721347,15.0687379,50.7721255,15.0686934,50.7721793,15.0686656,50.7721886,15.0687103],[50.7711855,15.0717476,50.7712264,15.0718064,50.7712054,15.0718404,50.7711652,15.0717823,50.7711855,15.0717476],[50.771427,15.0721105,50.7714223,15.072063,50.7714819,15.072048,50.7714867,15.0720956,50.771427,15.0721105],[50.7711851,15.0718737,50.7711644,15.0719073,50.7711247,15.0718509,50.7711454,15.0718163,50.7711851,15.0718737],[50.7717663,15.0743958,50.7717479,15.0744346,50.7717256,15.0744054,50.7717005,15.0743787,50.7717188,15.07434,50.7717663,15.0743958],[50.7710011,15.0708314,50.7710056,15.0708508,50.7709923,15.0708585,50.7709984,15.070885,50.7710033,15.0708821,50.7710356,15.0710212,50.771033,15.0710303,50.7710108,15.0710431,50.7710119,15.071048,50.7709883,15.0710617,50.7709871,15.0710568,50.7709408,15.0710836,50.7708967,15.0708915,50.7709092,15.0708844,50.7710011,15.0708314],[50.7721982,15.0687566,50.7721444,15.0687843,50.7721347,15.0687379,50.7721886,15.0687103,50.7721982,15.0687566],[50.771991,15.073823,50.771874,15.073869,50.771865,15.073804,50.771851,15.073795,50.771846,15.073764,50.771855,15.073748,50.771845,15.073684,50.771961,15.073639,50.771991,15.073823],[50.7716543,15.0744827,50.7716366,15.0745273,50.7715974,15.074489,50.771615,15.0744442,50.7716543,15.0744827],[50.772116,15.0686476,50.7721698,15.06862,50.7721793,15.0686656,50.7721255,15.0686934,50.772116,15.0686476],[50.7717393,15.0742965,50.7717867,15.0743527,50.7717663,15.0743958,50.7717188,15.07434,50.7717393,15.0742965],[50.7712048,15.0717142,50.7712468,15.071773,50.7712264,15.0718064,50.7711855,15.0717476,50.7712048,15.0717142],[50.7721539,15.0688303,50.7721444,15.0687843,50.7721982,15.0687566,50.7722077,15.0688026,50.7721539,15.0688303],[50.7718387,15.072858,50.7718477,15.0729148,50.7718628,15.0729094,50.7718816,15.0730345,50.7718661,15.0730402,50.7718669,15.0730458,50.771816,15.0730647,50.7718181,15.073078,50.7717915,15.073088,50.7717899,15.073077,50.7717665,15.0730857,50.7717519,15.0729862,50.7717292,15.072994,50.7717152,15.0728992,50.7717449,15.0728885,50.7717455,15.0728925,50.7717936,15.0728747,50.7717936,15.0728685,50.7717943,15.0728623,50.7717956,15.0728565,50.7717977,15.0728511,50.7718003,15.0728464,50.7718033,15.0728426,50.7718068,15.0728396,50.7718106,15.0728377,50.7718145,15.0728368,50.7718184,15.072837,50.7718223,15.0728383,50.7718259,15.0728407,50.7718293,15.0728441,50.7718321,15.0728483,50.7718345,15.0728533,50.7718362,15.0728589,50.7718387,15.072858],[50.7715191,15.0744696,50.7714669,15.0745277,50.7714493,15.0744884,50.7715014,15.0744303,50.7715191,15.0744696],[50.771653,15.0731932,50.7717099,15.073176,50.7717102,15.0731779,50.7717114,15.0731775,50.7717056,15.0731318,50.7716475,15.0731502,50.771653,15.0731932],[50.7721698,15.06862,50.772116,15.0686476,50.7721066,15.0686022,50.7721604,15.0685744,50.7721698,15.06862],[50.7711454,15.0718163,50.7711652,15.0717823,50.7712054,15.0718404,50.7711851,15.0718737,50.7711454,15.0718163],[50.7714318,15.0721574,50.771427,15.0721105,50.7714867,15.0720956,50.7714912,15.0721426,50.7714318,15.0721574],[50.7714223,15.072063,50.7714175,15.0720145,50.7714771,15.0719998,50.7714819,15.072048,50.7714223,15.072063],[50.77456,15.0753452,50.7745574,15.075182,50.774801,15.075172,50.7748045,15.0753354,50.77456,15.0753452],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7751209,15.0744752,50.7751478,15.0744737,50.7751503,15.0745609,50.7751226,15.0745621,50.7751209,15.0744752],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7723625,15.0735165,50.7723669,15.073546,50.772422,15.0735251,50.7724486,15.0736994,50.772353,15.0737357,50.7723564,15.0737577,50.7723084,15.0737759,50.772305,15.0737538,50.7722439,15.0737771,50.7722173,15.073603,50.7723198,15.073564,50.7723153,15.0735343,50.7723625,15.0735165],[50.7720487,15.0718492,50.7720888,15.0718336,50.772094,15.0718652,50.7721081,15.0718597,50.7721123,15.0718876,50.7721144,15.0718868,50.7721282,15.0719749,50.7720491,15.0720053,50.7720577,15.0720612,50.7719949,15.0720857,50.7719839,15.0720149,50.7719743,15.0720185,50.7719635,15.0719491,50.7719731,15.0719452,50.7719647,15.071882,50.7720011,15.0718676,50.7719989,15.0718523,50.7720465,15.0718342,50.7720487,15.0718492],[50.7712476,15.0692965,50.7712761,15.0692791,50.7713173,15.0694147,50.771307,15.0694223,50.7713295,15.0695602,50.7713445,15.0695539,50.7713701,15.0697102,50.771366,15.0697119,50.7714043,15.0699461,50.7714153,15.0699419,50.7714252,15.0700032,50.7714311,15.0700007,50.7714491,15.0700977,50.7714541,15.0701415,50.7714482,15.070144,50.7714583,15.0702057,50.7714473,15.0702102,50.7714855,15.0704448,50.7714907,15.0704428,50.7715161,15.070596,50.7712976,15.0706829,50.7712988,15.0706906,50.7711216,15.0707627,50.7711203,15.0707545,50.771099,15.0707633,50.7710741,15.0706092,50.7710955,15.0706006,50.7710942,15.0705919,50.7712716,15.0705207,50.771273,15.0705296,50.7713877,15.0704824,50.7713538,15.0702735,50.7713409,15.0702788,50.7713369,15.0702548,50.7712895,15.070274,50.7712792,15.0702102,50.7712747,15.0702121,50.7712524,15.0700748,50.7712569,15.0700731,50.7712464,15.0700087,50.7713067,15.0699839,50.7712253,15.0694831,50.7711747,15.0695219,50.7711325,15.0693826,50.7711435,15.0693743,50.7711859,15.0693426,50.7711782,15.069317,50.771179,15.0693164,50.7712398,15.0692707,50.7712476,15.0692965],[50.772063,15.074283,50.771966,15.074318,50.771936,15.074119,50.772033,15.074081,50.772063,15.074283],[50.772139,15.074775,50.772041,15.074813,50.771993,15.074494,50.77209,15.074456,50.772139,15.074775],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7719259,15.0733898,50.7719361,15.0734576,50.7719335,15.0734586,50.7719372,15.0734834,50.7719073,15.0734946,50.7719036,15.0734698,50.7718392,15.073494,50.7718229,15.0733859,50.771799,15.0733947,50.7717888,15.0733272,50.7718127,15.0733182,50.771811,15.0733065,50.7718212,15.0733028,50.7718273,15.0732874,50.7718486,15.0732793,50.7718585,15.0732887,50.7719079,15.0732703,50.771918,15.0733378,50.7719208,15.0733367,50.7719287,15.0733887,50.7719259,15.0733898],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7751757,15.069743,50.7751839,15.0697366,50.7751654,15.0696776,50.7752004,15.0696503,50.7751982,15.0696435,50.7752493,15.0696041,50.7752513,15.0696105,50.7752848,15.0695843,50.7753064,15.0696531,50.7753108,15.0696496,50.7753404,15.0697437,50.775303,15.0697728,50.7753063,15.0697832,50.7752112,15.0698558,50.7751757,15.069743],[50.7749457,15.0698497,50.7749612,15.0698372,50.7749808,15.0698217,50.7750269,15.0699657,50.7750048,15.0699833,50.7750345,15.0700761,50.7749444,15.0701478,50.7749133,15.0700514,50.7749097,15.0700544,50.7748863,15.0699812,50.7748899,15.0699783,50.7748765,15.0699369,50.7748647,15.069931,50.7748729,15.0698913,50.7748852,15.0698978,50.7748909,15.0698934,50.7748799,15.0698582,50.7749345,15.0698148,50.7749357,15.0698185,50.7749457,15.0698497],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7754802,15.0700034,50.7754568,15.0699224,50.7755078,15.0698841,50.7755318,15.0699644,50.7754802,15.0700034],[50.7755729,15.0698217,50.7756268,15.0697811,50.7756388,15.0698203,50.775585,15.0698618,50.7755729,15.0698217],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7755464,15.0697349,50.7756002,15.0696945,50.7756135,15.0697378,50.7755597,15.0697782,50.7755464,15.0697349],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7755729,15.0698217,50.7755597,15.0697782,50.7756135,15.0697378,50.7756268,15.0697811,50.7755729,15.0698217],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7750917,15.0740684,50.7750446,15.0740687,50.7750446,15.0740646,50.7750446,15.0740255,50.7750914,15.0740253,50.7750916,15.0740637,50.7750917,15.0740684],[50.7752282,15.0698968,50.7752685,15.0698625,50.7752711,15.0698604,50.7752867,15.0699091,50.7752413,15.0699506,50.775225,15.0698993,50.7752282,15.0698968],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7749603,15.0691012,50.7749613,15.0691044,50.7749163,15.0691397,50.7749153,15.0691365,50.7748616,15.0691785,50.7748401,15.06911,50.7748218,15.0690522,50.7749105,15.0689829,50.7749733,15.0689339,50.775014,15.0690592,50.7749603,15.0691012],[50.7739711,15.0761319,50.7738446,15.0761819,50.7738343,15.0761154,50.7738088,15.0761255,50.7737169,15.0761618,50.7737224,15.0761963,50.7737301,15.0762455,50.7737604,15.0764368,50.773554,15.076518,50.7735537,15.0765142,50.7735481,15.076517,50.7735787,15.0767148,50.7735348,15.0767379,50.7734895,15.0767618,50.773491,15.0767745,50.7734697,15.076781,50.7734678,15.0767661,50.7734205,15.0767737,50.7733798,15.0767736,50.7733487,15.0767676,50.7733468,15.0767826,50.7733257,15.076777,50.7733276,15.0767626,50.7732819,15.0767419,50.7732389,15.0767224,50.7731961,15.0767112,50.7731617,15.0764947,50.7731586,15.076475,50.7731079,15.0764948,50.7730816,15.0765051,50.7730143,15.0765314,50.7728039,15.0766136,50.7728003,15.076615,50.7727861,15.0765238,50.7727185,15.0765508,50.7726806,15.0763094,50.7731032,15.0761443,50.773116,15.0761393,50.7731777,15.0761152,50.7737966,15.0758735,50.7738242,15.0760505,50.7739191,15.076014,50.7739532,15.0760867,50.7739711,15.0761319],[50.7761513,15.0730588,50.7761396,15.073011,50.7761923,15.0729796,50.7762038,15.073027,50.7761513,15.0730588],[50.7722268,15.0702958,50.7721707,15.070313,50.772161,15.0702337,50.7722152,15.0702171,50.7722268,15.0702958],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7761742,15.0731529,50.7762068,15.073133,50.7762157,15.0731699,50.7761833,15.073189,50.7761742,15.0731529],[50.7762038,15.073027,50.7762153,15.0730746,50.7761629,15.0731063,50.7761513,15.0730588,50.7762038,15.073027],[50.7728652,15.0699861,50.7728732,15.0700323,50.7728193,15.0700556,50.7728103,15.0700095,50.7728652,15.0699861],[50.7718716,15.0691948,50.7719229,15.0691532,50.7719392,15.069201,50.7718872,15.0692425,50.7718716,15.0691948],[50.771992,15.070692,50.7720069,15.0707766,50.7719748,15.0707914,50.7719598,15.070706,50.771992,15.070692],[50.7758015,15.0722067,50.7758574,15.0721629,50.7758802,15.0722351,50.7758243,15.0722789,50.7758015,15.0722067],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.776162,15.073267,50.7761779,15.073359,50.7761403,15.0733754,50.7761246,15.0732834,50.776162,15.073267],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7730944,15.0699634,50.7731272,15.0699618,50.7731289,15.0700443,50.7730725,15.0700473,50.773071,15.0699726,50.7730944,15.0699634],[50.7762261,15.0731208,50.7762068,15.073133,50.7761742,15.0731529,50.7761629,15.0731063,50.7762153,15.0730746,50.7762261,15.0731208],[50.7724605,15.0706468,50.7724735,15.0707292,50.7724148,15.070752,50.7724154,15.0707563,50.7724114,15.0707578,50.7723978,15.0706712,50.7724605,15.0706468],[50.7721698,15.0699582,50.7721542,15.0699706,50.7721581,15.0699811,50.772152,15.0699865,50.772122,15.0698938,50.7721531,15.0698664,50.7721612,15.0699006,50.7721698,15.0699582],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7728585,15.0746374,50.7727988,15.0746605,50.7727919,15.0746157,50.7728514,15.0745931,50.7728585,15.0746374],[50.7754474,15.0747899,50.7753918,15.0748091,50.7753852,15.0747609,50.7754407,15.0747417,50.7754474,15.0747899],[50.7730252,15.0756838,50.7730324,15.0757292,50.7729713,15.0757546,50.7729639,15.0757083,50.7730252,15.0756838],[50.7752578,15.0726231,50.7752262,15.0726483,50.7752015,15.0725718,50.7752331,15.0725457,50.7752578,15.0726231],[50.7737,15.0752819,50.7736634,15.0752963,50.773663,15.0752941,50.7736442,15.0753015,50.7736416,15.0752843,50.7735996,15.0753043,50.7735987,15.0753075,50.7735985,15.075311,50.7736003,15.0753246,50.7736,15.0753277,50.7735992,15.0753306,50.773598,15.0753331,50.7735963,15.0753349,50.7735945,15.075336,50.7734819,15.0753758,50.7734802,15.0753737,50.7734789,15.075371,50.7734781,15.0753679,50.7734771,15.0753608,50.7734764,15.075358,50.7734752,15.0753555,50.7734737,15.0753535,50.7734719,15.0753522,50.77347,15.0753517,50.773468,15.075352,50.7734319,15.0753659,50.7734345,15.0753831,50.7734157,15.0753903,50.7734161,15.0753928,50.7733818,15.0754061,50.7733791,15.0753883,50.7732956,15.0754181,50.7731776,15.074665,50.7732038,15.0746549,50.7731964,15.0746074,50.7731802,15.0746137,50.7731624,15.0744996,50.7731784,15.0744933,50.7731707,15.0744438,50.773228,15.0744221,50.7732604,15.0746333,50.7735766,15.0745127,50.7737,15.0752819],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7723274,15.0741104,50.7723162,15.0740362,50.7723939,15.0740069,50.7723948,15.0740127,50.7723877,15.0740153,50.7723914,15.0740399,50.7724625,15.0740131,50.7724722,15.0740768,50.7724569,15.0740826,50.7724654,15.0741383,50.7724262,15.074153,50.7724281,15.0741682,50.7724275,15.0741708,50.7724263,15.0741728,50.7724247,15.074174,50.7723821,15.074188,50.7723808,15.0741861,50.7723801,15.0741835,50.7723782,15.0741712,50.7723345,15.0741875,50.772334,15.074184,50.7723302,15.0741847,50.7723264,15.0741844,50.7723226,15.074183,50.7723191,15.0741807,50.7723158,15.0741774,50.772313,15.0741733,50.7723106,15.0741686,50.7723088,15.0741632,50.7723076,15.0741575,50.7723071,15.0741515,50.7723072,15.0741455,50.7723079,15.0741395,50.7723093,15.0741339,50.7723112,15.0741287,50.7723137,15.0741241,50.7723166,15.0741202,50.77232,15.0741172,50.7723236,15.0741151,50.7723231,15.074112,50.7723274,15.0741104],[50.7756028,15.0744849,50.7754221,15.0745546,50.7755188,15.0742609,50.7755324,15.0741885,50.7755417,15.0741161,50.7755477,15.0740732,50.7757614,15.0739833,50.7757775,15.0740879,50.7756147,15.0741563,50.7755943,15.0742368,50.7756148,15.0743756,50.7755872,15.0743868,50.7756028,15.0744849],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849],[50.7717099,15.073176,50.7717102,15.0731779,50.7717251,15.0732757,50.7716644,15.0732981,50.7716494,15.0731989,50.7716524,15.0731977,50.7716518,15.0731936,50.771653,15.0731932,50.7717099,15.073176],[50.7720571,15.0690614,50.7720871,15.0690447,50.7721037,15.0691176,50.772073,15.0691355,50.7720571,15.0690614]],"buildingTypes":["civic","yes","university","university","university","university","university","university","university","university","university","university","house","residential","residential","yes","yes","residential","residential","residential","civic","yes","residential","yes","residential","residential","residential","residential","yes","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","house","house","residential","house","yes","yes","civic","yes","residential","house","residential","house","residential","garage","house","house","house","yes","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","house","house","garage","residential","house","residential","house","residential","yes","residential","yes","residential","residential","yes","yes","house","residential","garage","garage","garage","civic","garage","garage","garage","residential","university","garage","garage","residential","garage","garage","garage","garage","garage","garage","garage","garage","residential","garage","yes","industrial","garage","garage","garage","garage","residential","garage","garage","garage","garage","garage","garage","civic","yes","garage","residential","residential","residential","school","yes","yes","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","residential","yes","garage","yes","garage","garage","garage","garage","garage","residential","yes","yes","yes","yes","civic","university","garage","garage","garage","yes","garage","garage","garage","garage","garage","garage","garage","industrial","garage","garage","garage","garage","yes","yes","garage","yes","yes","university","university","residential","yes","residential","residential","residential","garage","yes"],"pathways":[[50.7715459,15.0700709,50.771656,15.0699832,50.7723923,15.0693964,50.772695,15.0691552,50.7730954,15.068837,50.7733498,15.0686254,50.7734048,15.06858,50.7740134,15.0680991,50.7740728,15.0680574,50.7740879,15.0680453],[50.7716129,15.0797774,50.7716031,15.0796661,50.7716014,15.0796057,50.7716164,15.0795312,50.7716938,15.0793706,50.771781,15.0792223,50.7718397,15.0790894,50.771856,15.078991,50.7718582,15.078801,50.771778,15.0782997,50.7717808,15.0780215,50.7718767,15.0774542,50.7718859,15.07726,50.7718464,15.0765598,50.7719744,15.0759827,50.7719483,15.0753118,50.7719017,15.0750806,50.7718319,15.0747021,50.7717613,15.0745278,50.77168,15.0744196,50.7715864,15.0743525,50.7714745,15.0742406,50.7714122,15.0741301,50.7713819,15.0740077,50.77137,15.0734118,50.7712652,15.0728422],[50.7711332,15.0714264,50.771033,15.0714142,50.770947,15.0713776,50.7709048,15.071308,50.7708839,15.0712228,50.770714,15.0705472,50.7705945,15.0703433,50.7700624,15.0697128],[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7760072,15.0756735,50.7760409,15.0756266,50.7760694,15.075538,50.7760743,15.0754716,50.7760686,15.0753623,50.7760553,15.0752518,50.7758983,15.0742748],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7765517,15.0723103,50.7762383,15.0712693,50.7755564,15.0691771],[50.7753344,15.071967,50.7753517,15.0719544,50.7753804,15.0719323,50.7762383,15.0712693],[50.7723305,15.0668289,50.7723519,15.0668515,50.7730156,15.0675534,50.7733024,15.0684733],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.773066,15.0759402,50.7730339,15.0757391,50.7730324,15.0757292,50.7730252,15.0756838,50.7730037,15.0755384,50.7728821,15.0747749,50.7728585,15.0746374,50.7728514,15.0745931,50.7728485,15.0745747,50.7728164,15.0743732,50.7727895,15.0742394,50.7728744,15.0742161,50.7729429,15.0741972,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7732287,15.0751189,50.7733416,15.0758426,50.7731038,15.0759268,50.773066,15.0759402],[50.7738165,15.0757322,50.7737777,15.0757478,50.7733563,15.0759168,50.7731154,15.0760135],[50.7711332,15.0714264,50.7711324,15.0711608,50.7711535,15.0710184,50.771202,15.0709222,50.7715808,15.0707311,50.7716437,15.0707084],[50.7723217,15.0755726,50.7721356,15.0752059,50.7720841,15.0752515,50.7719744,15.0759827],[50.7739683,15.076005,50.7743953,15.0758402],[50.7713727,15.0753002,50.7715476,15.0752218,50.7716732,15.0751576,50.7719017,15.0750806],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7723923,15.0693964,50.7723561,15.069224,50.7720111,15.0675782],[50.7753777,15.0758812,50.7753356,15.075838,50.7752499,15.0757503,50.7750927,15.0755892],[50.7717613,15.0745278,50.7717041,15.074659,50.7716732,15.0751576],[50.7747787,15.0675679,50.7743396,15.0679369,50.7741922,15.0680561,50.7743099,15.0684176,50.7743908,15.068679,50.7746381,15.0694786,50.7747499,15.0698458],[50.7749559,15.0692244,50.7750732,15.0695777],[50.7747202,15.0694297,50.7746381,15.0694786],[50.7743949,15.0680923,50.7743396,15.0679369],[50.7750387,15.0683655,50.7748954,15.0684839,50.7751065,15.0690978],[50.7748725,15.0678604,50.7749106,15.0679816,50.7750387,15.0683655,50.7752927,15.0691174,50.7751065,15.0690978,50.7749559,15.0692244,50.7747202,15.0694297,50.7744933,15.0685831],[50.7741211,15.0678243,50.7741688,15.0679773,50.7741922,15.0680561],[50.7743099,15.0684176,50.7744227,15.0683162],[50.7744504,15.0682017,50.7744061,15.0681178],[50.7737778,15.0698608,50.773693,15.0697697,50.7736943,15.0697386,50.7736886,15.0697049,50.773571,15.0693442,50.773531,15.069168,50.7734981,15.0689719,50.7734977,15.0689399,50.7735128,15.0689055,50.7736997,15.0687658],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7726178,15.077,50.7724916,15.0762062,50.7724345,15.0758337,50.772214,15.0743908,50.7718091,15.0717795,50.7717093,15.0711425,50.7716437,15.0707084,50.7715836,15.0703009,50.7715459,15.0700709],[50.7755564,15.0691771,50.7754958,15.0692273,50.7750732,15.0695777,50.7747499,15.0698458,50.7746948,15.0698915,50.7746772,15.0699061],[50.7748971,15.067344,50.7747787,15.0675679,50.7748725,15.0678604,50.7746443,15.0680411,50.7744504,15.0682017,50.7744227,15.0683162,50.7744933,15.0685831],[50.7698151,15.0702249,50.7701993,15.0705427,50.7703241,15.070702,50.7704272,15.0709045,50.7706318,15.0716947,50.7707382,15.0719561,50.7708144,15.0720609,50.7709122,15.0720829,50.77099,15.0720804,50.7710765,15.0721508,50.7711376,15.0722365,50.7711779,15.0723353,50.7712134,15.0725567,50.7712652,15.0728422],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7708295,15.0727163,50.7708974,15.0726385,50.7709568,15.0726063,50.7710348,15.0725607,50.7711349,15.0725367,50.7712134,15.0725567],[50.7731154,15.0760135,50.7726758,15.0762043,50.7726598,15.07625,50.7726589,15.0763089,50.7726931,15.0765293],[50.7726758,15.0762043,50.7726398,15.0761601],[50.7730699,15.0766717,50.7731816,15.0769772,50.7732427,15.0770871,50.7733122,15.0771622,50.7733716,15.0771837,50.7734852,15.077181,50.7735683,15.0771247,50.7736786,15.0770067,50.7737617,15.0768672,50.7738703,15.0767009,50.7739669,15.0765105,50.7740593,15.076363],[50.7759677,15.0742358,50.7759191,15.0742639,50.7758983,15.0742748],[50.7731848,15.0676799,50.7733505,15.0684049],[50.7742114,15.0687462,50.7741565,15.0687932],[50.7741565,15.0687932,50.7738817,15.0690129],[50.7742925,15.0686768,50.774276,15.0686909,50.77425,15.0687132],[50.773693,15.0697697,50.7736867,15.069781,50.7736788,15.0697919,50.7736682,15.0697985,50.7736366,15.069801,50.7736109,15.0697856,50.7735708,15.0697393,50.7735531,15.0696834,50.773415,15.0690544,50.773355,15.0687429,50.7733545,15.0687308,50.7733498,15.0686254],[50.7740766,15.0699582,50.7739846,15.0696453,50.7738817,15.0690129,50.7737793,15.0687387,50.7737347,15.068768,50.7736997,15.0687658],[50.7752927,15.0691174,50.7754958,15.0692273],[50.7733505,15.0684049,50.7733597,15.0684339,50.7734048,15.06858],[50.774493,15.0757921,50.7745456,15.0757636,50.7747488,15.0756533],[50.7747488,15.0756533,50.7748029,15.0756269],[50.7743953,15.0758402,50.774493,15.0757921],[50.7748029,15.0756269,50.774918,15.0756289],[50.7749539,15.0756395,50.7750684,15.0756733],[50.774918,15.0756289,50.7749539,15.0756395],[50.7750684,15.0756733,50.7751112,15.0757077],[50.7712652,15.0728422,50.7713284,15.0727126,50.771394,15.0723563,50.7714013,15.0722316,50.7714013,15.0721689,50.7713909,15.072077,50.7713548,15.0719023,50.7713079,15.0717865,50.771231,15.0716655,50.7711332,15.0714264],[50.7758983,15.0742748,50.7758355,15.0738881,50.7758016,15.0736783,50.7757357,15.0732563,50.7757167,15.0731652,50.7756939,15.0730866,50.7756372,15.0729012,50.7756321,15.0728845,50.7755318,15.0725562,50.7753344,15.071967,50.77503,15.0710052,50.7746772,15.0699061,50.7746685,15.0698764,50.7743147,15.0687414,50.7742925,15.0686768,50.7740879,15.0680453],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731154,15.0760135,50.7731038,15.0759268,50.7728744,15.0742161,50.7728635,15.0741347],[50.7722811,15.0743641,50.7724322,15.0754314,50.7725526,15.076188],[50.7724322,15.0754314,50.7725489,15.0753746],[50.773116,15.0761393,50.7731079,15.0764948],[50.7731154,15.0760135,50.773116,15.0761393],[50.7723561,15.069224,50.7722533,15.0693217,50.7716141,15.0698396,50.7716066,15.0698438,50.7715884,15.069846,50.771572,15.0698333,50.7714947,15.0693786,50.7714275,15.0690023,50.771343,15.068509,50.7712399,15.0679127,50.7711974,15.067676,50.7710865,15.0670589,50.7710358,15.0667769,50.770959,15.0663327,50.770955,15.0662857,50.7709543,15.0659666,50.7709543,15.0658664,50.7709543,15.0657804],[50.7740879,15.0680453,50.7741022,15.068034,50.7741688,15.0679773,50.7748971,15.067344,50.7749488,15.0673038],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7740151,15.0746626,50.7740449,15.0745473,50.7740399,15.0744534],[50.7745456,15.0757636,50.7747511,15.076035,50.7748717,15.0759588,50.7750697,15.0760149,50.7751197,15.0760509,50.7751079,15.0762387,50.7751197,15.0762923,50.7751528,15.0762931],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7706436,15.0731123,50.7707549,15.0730542,50.7708042,15.0729497,50.7708295,15.0727163,50.7708703,15.0725421,50.7709276,15.0723567,50.7709653,15.0722763,50.7710107,15.0722508,50.7710363,15.072237,50.7710744,15.0722581,50.7711063,15.0723038,50.7711779,15.0723353],[50.7714013,15.0722316,50.7713583,15.0722828,50.7713092,15.0723414,50.7712733,15.0723577,50.7712316,15.0723563,50.7711779,15.0723353],[50.7715459,15.0700709,50.7714325,15.0693996,50.7714084,15.0692566,50.771381,15.0692035,50.7713338,15.0691419],[50.7740879,15.0680453,50.7740348,15.0678733,50.7738983,15.0674496,50.7737062,15.066848],[50.7746685,15.0698764,50.7746566,15.0698851,50.7744586,15.0700098,50.7742746,15.0700717,50.7741844,15.0700707],[50.7741844,15.0700707,50.7740766,15.0699582,50.7739733,15.0699259,50.7739407,15.0699098,50.7738653,15.0698945,50.7737778,15.0698608],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7735708,15.0697393,50.7734654,15.0699291],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7749533,15.0728495,50.7749634,15.0730713,50.7749421,15.0732859,50.774974,15.073339,50.7750239,15.0733565,50.7750812,15.0733641,50.7751475,15.0733291,50.7753573,15.0731141,50.7756188,15.0728955,50.7756321,15.0728845],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7744061,15.0681178,50.7743949,15.0680923],[50.7758355,15.0738881,50.7758193,15.0738958,50.7754356,15.0740837,50.7751453,15.0740909],[50.7759677,15.0742358,50.7759482,15.0741626,50.7759349,15.0741106],[50.7759482,15.0741626,50.7761574,15.074072,50.7764013,15.0739591,50.7766238,15.0738318,50.7769233,15.0736595,50.7769673,15.0736341,50.7770198,15.0736163,50.7770968,15.073578,50.7771959,15.0735287,50.7773889,15.0734382,50.7774336,15.0734172,50.7776657,15.0732977,50.7776906,15.0732844,50.7777965,15.0732221,50.7778857,15.0731683,50.7780718,15.073039,50.7780893,15.0730236,50.7782375,15.0728928,50.7782648,15.0728687,50.7783022,15.0728547],[50.7759349,15.0741106,50.7759016,15.074033,50.7757962,15.0733728,50.775742,15.0730658,50.7755817,15.0725688,50.775464,15.0721745],[50.775464,15.0721745,50.7753804,15.0719323,50.7752722,15.0716105,50.7751503,15.0712082,50.7750135,15.0707882,50.7748604,15.0703256,50.774761,15.0699766,50.7747499,15.0698458],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7744933,15.0685831,50.7743908,15.068679,50.7743249,15.068733,50.7743147,15.0687414],[50.77425,15.0687132,50.7742114,15.0687462],[50.7739677,15.0679441,50.7740134,15.0680991,50.7740383,15.0681862],[50.7740383,15.0681862,50.7740631,15.0681925,50.7740809,15.0682072,50.7740978,15.0682479,50.77425,15.0687132],[50.7733024,15.0684733,50.7733597,15.0684339,50.7739677,15.0679441],[50.7733024,15.0684733,50.7733498,15.0686254],[50.7726474,15.0690017,50.773097,15.0686402,50.7733024,15.0684733],[50.7725447,15.0686034,50.7724268,15.0686831,50.7724113,15.0686838,50.772382,15.0686522],[50.7725447,15.0686034,50.7725506,15.0686381,50.7726474,15.0690017],[50.7726225,15.0683118,50.7725431,15.0685027,50.7725373,15.0685595,50.7725447,15.0686034],[50.772695,15.0691552,50.7726474,15.0690017],[50.7723561,15.069224,50.7723988,15.0691799,50.7724206,15.0691778,50.7726474,15.0690017],[50.7715125,15.070326,50.7713687,15.0694249],[50.771643,15.0702755,50.7716341,15.0701891,50.7716346,15.0701449,50.7716439,15.0701084,50.7716616,15.070079,50.7716829,15.0700649,50.7723505,15.0695308,50.7723664,15.0695252,50.7723806,15.0695351,50.772412,15.0695239,50.7724508,15.0695112,50.772449,15.0694747,50.7724552,15.069448,50.7724667,15.069434,50.7730681,15.0689617,50.7730819,15.0689659,50.7731122,15.0689484,50.7731413,15.0689273,50.7731449,15.0688943,50.7731471,15.0688739,50.773156,15.0688606,50.7732918,15.0687624,50.7733002,15.0687603,50.7733078,15.0687631,50.7733158,15.0687624,50.7733545,15.0687308,50.773385,15.0687076,50.7733912,15.0686859,50.7733965,15.0686704,50.7737303,15.0684072,50.7740094,15.0682037,50.7740383,15.0681862],[50.7715125,15.070326,50.7715836,15.0703009,50.771643,15.0702755],[50.7715808,15.0707311,50.7715125,15.070326],[50.7724188,15.0743193,50.7724601,15.0743824,50.772512,15.0744154,50.7725462,15.0744147,50.7727832,15.0743235],[50.771643,15.0702755,50.7716807,15.0705127,50.7718715,15.0717545,50.7720176,15.0727114,50.7721849,15.0737642,50.7722811,15.0743641],[50.7723217,15.0755726,50.7720127,15.0735143,50.771734,15.0717429,50.7715808,15.0707311],[50.7724278,15.0762308,50.7723217,15.0755726],[50.7726398,15.0761601,50.7725526,15.076188],[50.7712426,15.0691399,50.7711978,15.0692242,50.771149,15.0692691,50.7711312,15.0692922,50.771121,15.0693252,50.7711157,15.0693617,50.771117,15.0694094,50.7712551,15.0703681,50.771264,15.0704039,50.7712773,15.0704207,50.7712964,15.0704256,50.7713376,15.070406],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7716141,15.0698396,50.771656,15.0699832,50.7716829,15.0700649],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,4,0,4,3,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,1,0,4,4,5,3,4,3,4,4,0,4,0,0,3,4,1,0,0,4,0,0,4,0,1,1,0,0,1,1,3,3,0,4,0,1,1,0,0,3,0,0,0,0,0,4,3,0,0,5,3,4,0,0,0,4,0,0,0,0,0,4,0,4,4,0,0,1,4,0,0,0,0,3,4,0,0,0,0,3,0,4,4,4,4,0,0,0,0,0,4,0,0,0,1,4,4,0,3],"areas":[[50.7731292,15.0785686,50.7734405,15.0785923,50.7736522,15.0784741,50.7737717,15.0782457,50.7739012,15.0776629,50.7739621,15.0772611,50.7740158,15.076828,50.7740485,15.0764449,50.7740061,15.0763347,50.7735162,15.0768301,50.7731364,15.076758,50.7730747,15.0771622,50.7730764,15.077291,50.7731292,15.0785686],[50.7749496,15.0675477,50.7748309,15.0676228,50.7749293,15.0679231,50.7748682,15.0680009,50.7749751,15.068347,50.7748546,15.068449,50.775048,15.0690684,50.7748733,15.0692107,50.7747495,15.0692188,50.7746341,15.0690041,50.7745154,15.0686582,50.7743543,15.0684329,50.7747698,15.0697579,50.7754941,15.0691624,50.7749496,15.0675477],[50.7739252,15.0690579,50.7737329,15.0684417,50.7740458,15.0682042,50.7742114,15.0687462,50.7742458,15.0688487,50.7739515,15.0690739,50.7739252,15.0690579],[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0,0,0,0],"poIs":[50.77119566363637,15.070085936363636,3,50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77357498000001,15.068754180000003,4,50.77401203333332,15.076621266666667,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.77338352,15.069208979999999,4,50.77362052,15.068302840000001,4,50.77320282,15.06863664,4,50.77347004,15.0691,4,50.77368628,15.06951072,4,50.7737409,15.0690773,0,50.7719988,15.0719208,0,50.7758355,15.0744028,0,50.7748387,15.0688781,3,50.7728491,15.0752552,0,50.773681,15.0692301,0,50.7710655,15.0712995,7,50.7735053,15.0755027,7,50.7726458,15.0751113,1,50.7760294,15.073928,0,50.7731232,15.075444,6,50.7731309,15.0755035,6,50.7731735,15.0755976,6,50.7732104,15.0755042,6,50.7740297,15.0744936,6,50.7723383,15.075738,7,50.7745187,15.0701967,7,50.7742687,15.0684062,7,50.7739087,15.0680313,7,50.773738,15.0696539,7,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.7747665,15.0752581,0,50.7730244,15.0744971,0,50.7738714,15.0698715,7,50.7743404,15.0686409,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T14:03:23.7048269Z","actor":"f0231911","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"f0231911","displayName":"Hr\u00E1\u010D433","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T14:03:23.7270191Z","actor":"4b1da7ee","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"4b1da7ee","displayName":"Hr\u00E1\u010D619","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T14:03:23.7304163Z","actor":"ccb65003","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ccb65003","displayName":"Hr\u00E1\u010D897","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T14:03:23.7351499Z","actor":"4b1da7ee","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T14:03:23.7381666Z","actor":"4b1da7ee","eventType":"RoleAssigned","payload":{"clientUuid":"4b1da7ee","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7739087,"lon":15.0680313},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.773738,"lon":15.0696539},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7741443,"lon":15.0702437},"type":"Progress","durationMs":9513,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7710655,"lon":15.0712995},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7744712,"lon":15.0716784},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T14:03:23.7411886Z","actor":"f0231911","eventType":"RoleAssigned","payload":{"clientUuid":"f0231911","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T14:03:23.7442137Z","actor":"ccb65003","eventType":"RoleAssigned","payload":{"clientUuid":"ccb65003","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7739087,"lon":15.0680313},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.773738,"lon":15.0696539},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7741443,"lon":15.0702437},"type":"Progress","durationMs":9513,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7710655,"lon":15.0712995},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7744712,"lon":15.0716784},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T14:03:46.1616209Z","actor":"4b1da7ee","eventType":"PlayerLeft","payload":{"clientUuid":"4b1da7ee","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T14:03:46.1702838Z","actor":"f0231911","eventType":"HostChanged","payload":{"newHostId":"f0231911","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T14:03:47.5285453Z","actor":"ccb65003","eventType":"PlayerLeft","payload":{"clientUuid":"ccb65003","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T14:03:48.6106062Z","actor":"f0231911","eventType":"PlayerLeft","payload":{"clientUuid":"f0231911","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/5a5de962e600445e/wal_20260127120606.ndjson b/data/lobbies/5a5de962e600445e/wal_20260127120606.ndjson new file mode 100644 index 0000000..898b08c --- /dev/null +++ b/data/lobbies/5a5de962e600445e/wal_20260127120606.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:06:06.565381Z","actor":"e8f0de6f","eventType":"PlayerJoined","payload":{"clientUuid":"e8f0de6f","displayName":"StructTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:06:06.6629565Z","actor":"e8f0de6f","eventType":"PlayerLeft","payload":{"clientUuid":"e8f0de6f","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/5ab612a08ed047c7/wal_20260127004420.ndjson b/data/lobbies/5ab612a08ed047c7/wal_20260127004420.ndjson new file mode 100644 index 0000000..63dd8f2 --- /dev/null +++ b/data/lobbies/5ab612a08ed047c7/wal_20260127004420.ndjson @@ -0,0 +1,21 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T00:44:20.4082659Z","actor":"f6b2406b","eventType":"PlayerJoined","payload":{"clientUuid":"f6b2406b","displayName":"Bot1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T00:44:20.5242975Z","actor":"e9c451da","eventType":"PlayerJoined","payload":{"clientUuid":"e9c451da","displayName":"Bot2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T00:44:21.1045097Z","actor":"247437ba","eventType":"PlayerJoined","payload":{"clientUuid":"247437ba","displayName":"Bot3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T00:44:21.6360914Z","actor":"9768426a","eventType":"PlayerJoined","payload":{"clientUuid":"9768426a","displayName":"Bot4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T00:44:22.1920636Z","actor":"fd4b6187","eventType":"PlayerJoined","payload":{"clientUuid":"fd4b6187","displayName":"Bot5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T00:44:23.8011924Z","actor":"f6b2406b","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T00:44:23.8209095Z","actor":"f6b2406b","eventType":"RoleAssigned","payload":{"clientUuid":"f6b2406b","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99864771261062,"lon":14.000772275923719},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.000447093539606,"lon":14.000580834154508},"type":"Progress","durationMs":9934,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00154911822125,"lon":14.003840950941354},"type":"Progress","durationMs":9084,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":49.99997064805621,"lon":14.001539773542872},"type":"Progress","durationMs":5282,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":49.999629174540196,"lon":13.997636458716608},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T00:44:23.8360525Z","actor":"e9c451da","eventType":"RoleAssigned","payload":{"clientUuid":"e9c451da","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T00:44:23.8418816Z","actor":"247437ba","eventType":"RoleAssigned","payload":{"clientUuid":"247437ba","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99864771261062,"lon":14.000772275923719},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.000447093539606,"lon":14.000580834154508},"type":"Progress","durationMs":9934,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00154911822125,"lon":14.003840950941354},"type":"Progress","durationMs":9084,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":49.99997064805621,"lon":14.001539773542872},"type":"Progress","durationMs":5282,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":49.999629174540196,"lon":13.997636458716608},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T00:44:23.8446644Z","actor":"9768426a","eventType":"RoleAssigned","payload":{"clientUuid":"9768426a","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99864771261062,"lon":14.000772275923719},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.000447093539606,"lon":14.000580834154508},"type":"Progress","durationMs":9934,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00154911822125,"lon":14.003840950941354},"type":"Progress","durationMs":9084,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":49.99997064805621,"lon":14.001539773542872},"type":"Progress","durationMs":5282,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":49.999629174540196,"lon":13.997636458716608},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T00:44:23.8473304Z","actor":"fd4b6187","eventType":"RoleAssigned","payload":{"clientUuid":"fd4b6187","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99864771261062,"lon":14.000772275923719},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.000447093539606,"lon":14.000580834154508},"type":"Progress","durationMs":9934,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00154911822125,"lon":14.003840950941354},"type":"Progress","durationMs":9084,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":49.99997064805621,"lon":14.001539773542872},"type":"Progress","durationMs":5282,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":49.999629174540196,"lon":13.997636458716608},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T00:44:25.8905584Z","actor":"e9c451da","eventType":"PlayerKilled","payload":{"victimId":"f6b2406b","killerId":"e9c451da","bodyId":"0020c9bb","location":{"lat":50.000007418465664,"lon":14.000033018904839}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T00:44:55.8945014Z","actor":"f6b2406b","eventType":"PlayerLeft","payload":{"clientUuid":"f6b2406b","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T00:44:55.8988032Z","actor":"e9c451da","eventType":"HostChanged","payload":{"newHostId":"e9c451da","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T00:44:55.9020264Z","actor":"e9c451da","eventType":"PlayerLeft","payload":{"clientUuid":"e9c451da","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T00:44:55.9044189Z","actor":"247437ba","eventType":"HostChanged","payload":{"newHostId":"247437ba","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T00:44:55.906857Z","actor":"247437ba","eventType":"PlayerLeft","payload":{"clientUuid":"247437ba","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T00:44:55.9092825Z","actor":"9768426a","eventType":"HostChanged","payload":{"newHostId":"9768426a","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T00:44:55.911912Z","actor":"9768426a","eventType":"PlayerLeft","payload":{"clientUuid":"9768426a","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T00:44:55.9144387Z","actor":"fd4b6187","eventType":"HostChanged","payload":{"newHostId":"fd4b6187","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T00:44:55.9174371Z","actor":"fd4b6187","eventType":"PlayerLeft","payload":{"clientUuid":"fd4b6187","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/5e244bf39f4044d0/wal_20260127135957.ndjson b/data/lobbies/5e244bf39f4044d0/wal_20260127135957.ndjson new file mode 100644 index 0000000..0586931 --- /dev/null +++ b/data/lobbies/5e244bf39f4044d0/wal_20260127135957.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T13:59:57.5674103Z","actor":"9b3462f1","eventType":"PlayerJoined","payload":{"clientUuid":"9b3462f1","displayName":"Hr\u00E1\u010D468"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T14:00:00.8892708Z","actor":"9b3462f1","eventType":"PlayerLeft","payload":{"clientUuid":"9b3462f1","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/5e6dc2f6267b4a23/snapshot_49.json b/data/lobbies/5e6dc2f6267b4a23/snapshot_49.json new file mode 100644 index 0000000..c09e34c --- /dev/null +++ b/data/lobbies/5e6dc2f6267b4a23/snapshot_49.json @@ -0,0 +1,207 @@ +{ + "lobbyId": "5e6dc2f6267b4a23", + "lastEventId": 49, + "timestamp": "2026-01-27T17:23:51.9496141Z", + "checksum": "a076881d1a0cea6a2b39fdfeb1fb2041927e6b0a4351c1871422900729eac9f6", + "phase": "Lobby", + "players": [ + { + "clientUuid": "ac74a0a6", + "displayName": "Hr\u00E1\u010D229", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:18:51.5675805Z", + "lastPositionUpdate": "2026-01-27T17:23:44.7477804Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "beb07c52", + "displayName": "Hr\u00E1\u010D623", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:28.7165473Z", + "lastPositionUpdate": "2026-01-27T17:23:49.0892842Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "8505d1ed", + "displayName": "Hr\u00E1\u010D976", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:32.3214433Z", + "lastPositionUpdate": "2026-01-27T17:23:49.0984457Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "55d92428", + "displayName": "Hr\u00E1\u010D172", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:35.2884502Z", + "lastPositionUpdate": "2026-01-27T17:23:49.2130304Z", + "lastKillTime": "2026-01-27T17:23:49.4098068Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 116, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/5e6dc2f6267b4a23/snapshot_97.json b/data/lobbies/5e6dc2f6267b4a23/snapshot_97.json new file mode 100644 index 0000000..286e942 --- /dev/null +++ b/data/lobbies/5e6dc2f6267b4a23/snapshot_97.json @@ -0,0 +1,518 @@ +{ + "lobbyId": "5e6dc2f6267b4a23", + "lastEventId": 97, + "timestamp": "2026-01-27T17:28:52.5626512Z", + "checksum": "f67d29a0cbd24da5e340bdb8d725233366ff81b97e13488d09de13477f5291ce", + "phase": "Meeting", + "players": [ + { + "clientUuid": "ac74a0a6", + "displayName": "Hr\u00E1\u010D229", + "position": { + "lat": 50.77361640940255, + "lon": 15.072599356266377 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:18:51.5675805Z", + "lastPositionUpdate": "2026-01-27T17:28:17.854293Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "type": "Instant" + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Instant" + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "type": "Instant" + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "type": "Instant" + } + ], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "beb07c52", + "displayName": "Hr\u00E1\u010D623", + "position": { + "lat": 50.77365433872294, + "lon": 15.07261560623589 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:28.7165473Z", + "lastPositionUpdate": "2026-01-27T17:28:17.8661244Z", + "lastKillTime": "2026-01-27T17:27:45.615597Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "8505d1ed", + "displayName": "Hr\u00E1\u010D976", + "position": { + "lat": 50.77364810754672, + "lon": 15.072627464770637 + }, + "role": "Crew", + "state": "Dead", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:32.3214433Z", + "lastPositionUpdate": "2026-01-27T17:27:45.7426596Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7739109, + "lon": 15.0728539 + }, + "type": "Instant" + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7734516, + "lon": 15.0723155 + }, + "type": "Instant" + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "type": "Instant" + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "type": "Instant" + } + ], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "55d92428", + "displayName": "Hr\u00E1\u010D172", + "position": { + "lat": 50.77365944629486, + "lon": 15.07263119340305 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:19:35.2884502Z", + "lastPositionUpdate": "2026-01-27T17:28:17.7087384Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7732768, + "lon": 15.0725856 + }, + "type": "Instant" + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Instant" + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "type": "Instant" + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7728733, + "lon": 15.0713562 + }, + "type": "Instant" + } + ], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [ + { + "bodyId": "a0d004c6", + "victimId": "8505d1ed", + "killerId": "beb07c52", + "location": { + "lat": 50.77364810754672, + "lon": 15.072627464770637 + }, + "killedAt": "2026-01-27T17:27:45.6156674Z", + "reported": true, + "reportedBy": "beb07c52" + } + ], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "type": "Instant" + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738298, + "lon": 15.0716222 + }, + "type": "Instant" + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "type": "Instant" + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "type": "Instant" + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7739109, + "lon": 15.0728539 + }, + "type": "Instant" + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7734516, + "lon": 15.0723155 + }, + "type": "Instant" + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "type": "Instant" + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "type": "Instant" + }, + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7732768, + "lon": 15.0725856 + }, + "type": "Instant" + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.772732, + "lon": 15.0728076 + }, + "type": "Instant" + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "type": "Instant" + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7728733, + "lon": 15.0713562 + }, + "type": "Instant" + } + ], + "currentMeeting": { + "meetingId": "0b48d4b8", + "type": "BodyReport", + "reportedBodyId": "a0d004c6", + "callerId": "beb07c52", + "meetingLocation": { + "lat": 50.77364810754672, + "lon": 15.072627464770637 + }, + "startTime": "2026-01-27T17:27:54.9995201Z", + "arrivalDeadline": "2026-01-27T17:28:17.9995201Z", + "discussionEndTime": "2026-01-27T17:28:29.9995201Z", + "votingEndTime": "2026-01-27T17:28:59.9995201Z", + "arrivedPlayers": [ + "beb07c52", + "55d92428", + "ac74a0a6" + ], + "votes": { + "55d92428": "beb07c52", + "ac74a0a6": "beb07c52", + "beb07c52": "55d92428" + }, + "lastVoteChangeTime": "2026-01-27T17:28:52.5435833Z" + }, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 116, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/5e6dc2f6267b4a23/wal_20260127171851.ndjson b/data/lobbies/5e6dc2f6267b4a23/wal_20260127171851.ndjson new file mode 100644 index 0000000..fc27d8f --- /dev/null +++ b/data/lobbies/5e6dc2f6267b4a23/wal_20260127171851.ndjson @@ -0,0 +1,103 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T17:18:51.5760871Z","actor":"ac74a0a6","eventType":"PlayerJoined","payload":{"clientUuid":"ac74a0a6","displayName":"Hr\u00E1\u010D229"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T17:19:28.7521783Z","actor":"beb07c52","eventType":"PlayerJoined","payload":{"clientUuid":"beb07c52","displayName":"Hr\u00E1\u010D623"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T17:19:32.3445686Z","actor":"8505d1ed","eventType":"PlayerJoined","payload":{"clientUuid":"8505d1ed","displayName":"Hr\u00E1\u010D976"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T17:19:35.2954528Z","actor":"55d92428","eventType":"PlayerJoined","payload":{"clientUuid":"55d92428","displayName":"Hr\u00E1\u010D172"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T17:19:37.2748463Z","actor":"ac74a0a6","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T17:19:41.9311882Z","actor":"ac74a0a6","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":116,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","yes","yes","residential","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7741465,15.070948,50.7740958,15.0709872],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,4,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.7744712,15.0716784,6,50.7739942,15.0706985,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":116},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T17:19:41.9792975Z","actor":"8505d1ed","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"8505d1ed","displayName":"Hr\u00E1\u010D976","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T17:19:41.9903385Z","actor":"ac74a0a6","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ac74a0a6","displayName":"Hr\u00E1\u010D229","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T17:19:41.9973515Z","actor":"beb07c52","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"beb07c52","displayName":"Hr\u00E1\u010D623","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T17:19:42.003962Z","actor":"55d92428","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"55d92428","displayName":"Hr\u00E1\u010D172","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T17:19:42.014573Z","actor":"ac74a0a6","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T17:19:42.0195362Z","actor":"ac74a0a6","eventType":"RoleAssigned","payload":{"clientUuid":"ac74a0a6","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T17:19:42.0321798Z","actor":"beb07c52","eventType":"RoleAssigned","payload":{"clientUuid":"beb07c52","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7738298,"lon":15.0716222},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.773851,"lon":15.073075},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7735484,"lon":15.0720508},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7741669,"lon":15.0718846},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T17:19:42.0367464Z","actor":"8505d1ed","eventType":"RoleAssigned","payload":{"clientUuid":"8505d1ed","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7743857,"lon":15.0723828},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7738718,"lon":15.0726246},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7738899,"lon":15.0720892},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7735484,"lon":15.0720508},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T17:19:42.0400369Z","actor":"55d92428","eventType":"RoleAssigned","payload":{"clientUuid":"55d92428","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7741669,"lon":15.0718846},"type":"Instant"},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.7738958,"lon":15.0729918},"type":"Instant"},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.7738661,"lon":15.0722328},"type":"Instant"},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.7735004,"lon":15.0728728},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T17:19:50.5798325Z","actor":"beb07c52","eventType":"TaskCompleted","payload":{"clientUuid":"beb07c52","taskId":"task_3","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T17:19:56.8257763Z","actor":"beb07c52","eventType":"TaskCompleted","payload":{"clientUuid":"beb07c52","taskId":"task_1","totalCompleted":2,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T17:20:02.5546724Z","actor":"beb07c52","eventType":"TaskCompleted","payload":{"clientUuid":"beb07c52","taskId":"task_4","totalCompleted":3,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T17:20:12.9476431Z","actor":"beb07c52","eventType":"TaskCompleted","payload":{"clientUuid":"beb07c52","taskId":"task_2","totalCompleted":4,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T17:20:17.6489986Z","actor":"beb07c52","eventType":"TaskCompleted","payload":{"clientUuid":"beb07c52","taskId":"task_0","totalCompleted":5,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T17:20:29.4232075Z","actor":"8505d1ed","eventType":"TaskCompleted","payload":{"clientUuid":"8505d1ed","taskId":"task_8","totalCompleted":6,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T17:20:35.4707413Z","actor":"8505d1ed","eventType":"TaskCompleted","payload":{"clientUuid":"8505d1ed","taskId":"task_7","totalCompleted":7,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T17:20:42.529184Z","actor":"8505d1ed","eventType":"TaskCompleted","payload":{"clientUuid":"8505d1ed","taskId":"task_9","totalCompleted":8,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T17:20:55.715395Z","actor":"8505d1ed","eventType":"TaskCompleted","payload":{"clientUuid":"8505d1ed","taskId":"task_5","totalCompleted":9,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T17:21:02.0512107Z","actor":"55d92428","eventType":"TaskCompleted","payload":{"clientUuid":"55d92428","taskId":"task_13","totalCompleted":10,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T17:21:06.2597464Z","actor":"55d92428","eventType":"TaskCompleted","payload":{"clientUuid":"55d92428","taskId":"task_11","totalCompleted":11,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T17:21:15.640067Z","actor":"55d92428","eventType":"TaskCompleted","payload":{"clientUuid":"55d92428","taskId":"task_12","totalCompleted":12,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T17:21:21.2016652Z","actor":"55d92428","eventType":"TaskCompleted","payload":{"clientUuid":"55d92428","taskId":"task_14","totalCompleted":13,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T17:21:25.8869841Z","actor":"55d92428","eventType":"TaskCompleted","payload":{"clientUuid":"55d92428","taskId":"task_10","totalCompleted":14,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T17:21:40.2529983Z","actor":"8505d1ed","eventType":"TaskCompleted","payload":{"clientUuid":"8505d1ed","taskId":"task_6","totalCompleted":15,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T17:21:40.2577943Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161echny tasky dokon\u010Deny","winners":["beb07c52","8505d1ed","55d92428"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T17:22:49.877444Z","actor":"ac74a0a6","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T17:22:50.7104282Z","actor":"ac74a0a6","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T17:22:54.9682165Z","actor":"ac74a0a6","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":116,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","yes","yes","residential","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7741465,15.070948,50.7740958,15.0709872],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,4,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.7744712,15.0716784,6,50.7739942,15.0706985,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":116},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T17:22:54.9771053Z","actor":"ac74a0a6","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ac74a0a6","displayName":"Hr\u00E1\u010D229","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T17:22:54.9803231Z","actor":"8505d1ed","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"8505d1ed","displayName":"Hr\u00E1\u010D976","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T17:22:54.9835607Z","actor":"beb07c52","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"beb07c52","displayName":"Hr\u00E1\u010D623","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T17:22:54.9871586Z","actor":"55d92428","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"55d92428","displayName":"Hr\u00E1\u010D172","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T17:22:54.9909151Z","actor":"ac74a0a6","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T17:22:54.9947465Z","actor":"ac74a0a6","eventType":"RoleAssigned","payload":{"clientUuid":"ac74a0a6","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7729924,"lon":15.0714006},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7737495,"lon":15.0715106},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.773851,"lon":15.073075},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7741669,"lon":15.0718846},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T17:22:54.9979901Z","actor":"beb07c52","eventType":"RoleAssigned","payload":{"clientUuid":"beb07c52","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7735484,"lon":15.0720508},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7733695,"lon":15.072243},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7738279,"lon":15.0724577},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7738958,"lon":15.0729918},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T17:22:55.0009584Z","actor":"8505d1ed","eventType":"RoleAssigned","payload":{"clientUuid":"8505d1ed","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7734516,"lon":15.0723155},"type":"Instant"},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.7738298,"lon":15.0716222},"type":"Instant"},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.7731305,"lon":15.072217},"type":"Instant"},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.7735484,"lon":15.0720508},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":43,"serverSeq":43,"timestamp":"2026-01-27T17:22:55.0045347Z","actor":"55d92428","eventType":"RoleAssigned","payload":{"clientUuid":"55d92428","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":44,"serverSeq":44,"timestamp":"2026-01-27T17:23:05.043842Z","actor":"55d92428","eventType":"SabotageStarted","payload":{"sabotageId":"5947aade","type":"CommsBlackout","initiatorId":"55d92428","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.7728182,"lon":15.0713485},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":45,"serverSeq":45,"timestamp":"2026-01-27T17:23:35.0841963Z","actor":"system","eventType":"SabotageExpired","payload":{"sabotageId":"5947aade","type":"CommsBlackout","repairerIds":[]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":46,"serverSeq":46,"timestamp":"2026-01-27T17:23:44.3230853Z","actor":"55d92428","eventType":"PlayerKilled","payload":{"victimId":"ac74a0a6","killerId":"55d92428","bodyId":"0bacf05d","location":{"lat":50.773576341271315,"lon":15.072164687750583}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":47,"serverSeq":47,"timestamp":"2026-01-27T17:23:49.4222406Z","actor":"55d92428","eventType":"PlayerKilled","payload":{"victimId":"beb07c52","killerId":"55d92428","bodyId":"f7a6657f","location":{"lat":50.7735892,"lon":15.0721653}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":48,"serverSeq":48,"timestamp":"2026-01-27T17:23:49.4251398Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["55d92428"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":49,"serverSeq":49,"timestamp":"2026-01-27T17:23:51.939378Z","actor":"ac74a0a6","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":50,"serverSeq":50,"timestamp":"2026-01-27T17:23:53.3673353Z","actor":"ac74a0a6","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":51,"serverSeq":51,"timestamp":"2026-01-27T17:23:57.7191994Z","actor":"ac74a0a6","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":116,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","yes","yes","residential","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7741465,15.070948,50.7740958,15.0709872],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,4,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.7744712,15.0716784,6,50.7739942,15.0706985,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":116},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":52,"serverSeq":52,"timestamp":"2026-01-27T17:23:57.7308281Z","actor":"ac74a0a6","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ac74a0a6","displayName":"Hr\u00E1\u010D229","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":53,"serverSeq":53,"timestamp":"2026-01-27T17:23:57.7369585Z","actor":"beb07c52","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"beb07c52","displayName":"Hr\u00E1\u010D623","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":54,"serverSeq":54,"timestamp":"2026-01-27T17:23:57.7415882Z","actor":"8505d1ed","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"8505d1ed","displayName":"Hr\u00E1\u010D976","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":55,"serverSeq":55,"timestamp":"2026-01-27T17:23:57.745315Z","actor":"55d92428","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"55d92428","displayName":"Hr\u00E1\u010D172","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":56,"serverSeq":56,"timestamp":"2026-01-27T17:23:57.748983Z","actor":"ac74a0a6","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":57,"serverSeq":57,"timestamp":"2026-01-27T17:23:57.753706Z","actor":"ac74a0a6","eventType":"RoleAssigned","payload":{"clientUuid":"ac74a0a6","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7729336,"lon":15.0713619},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7738718,"lon":15.0726246},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7730823,"lon":15.071947},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7743857,"lon":15.0723828},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":58,"serverSeq":58,"timestamp":"2026-01-27T17:23:57.7567424Z","actor":"beb07c52","eventType":"RoleAssigned","payload":{"clientUuid":"beb07c52","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7741669,"lon":15.0718846},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7738958,"lon":15.0729918},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7733695,"lon":15.072243},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7731305,"lon":15.072217},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":59,"serverSeq":59,"timestamp":"2026-01-27T17:23:57.7597129Z","actor":"8505d1ed","eventType":"RoleAssigned","payload":{"clientUuid":"8505d1ed","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7739981,"lon":15.0714832},"type":"Instant"},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.7739852,"lon":15.072001},"type":"Instant"},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.7734252,"lon":15.0727178},"type":"Instant"},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.7730823,"lon":15.071947},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":60,"serverSeq":60,"timestamp":"2026-01-27T17:23:57.7630359Z","actor":"55d92428","eventType":"RoleAssigned","payload":{"clientUuid":"55d92428","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":61,"serverSeq":61,"timestamp":"2026-01-27T17:24:18.3321811Z","actor":"ac74a0a6","eventType":"EmergencyMeetingCalled","payload":{"callerId":"ac74a0a6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":62,"serverSeq":62,"timestamp":"2026-01-27T17:24:18.3371463Z","actor":"ac74a0a6","eventType":"MeetingStarted","payload":{"meetingId":"dc87d8ec","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T17:24:41.3367829Z","discussionEndTime":"2026-01-27T17:24:53.3367829Z","votingEndTime":"2026-01-27T17:25:23.3367829Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":63,"serverSeq":63,"timestamp":"2026-01-27T17:24:18.3440193Z","actor":"ac74a0a6","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"ac74a0a6","meetingId":"dc87d8ec"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":64,"serverSeq":64,"timestamp":"2026-01-27T17:24:18.3478097Z","actor":"beb07c52","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"beb07c52","meetingId":"dc87d8ec"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":65,"serverSeq":65,"timestamp":"2026-01-27T17:24:18.3512086Z","actor":"8505d1ed","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"8505d1ed","meetingId":"dc87d8ec"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":66,"serverSeq":66,"timestamp":"2026-01-27T17:24:20.7906177Z","actor":"55d92428","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"55d92428","meetingId":"dc87d8ec"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":67,"serverSeq":67,"timestamp":"2026-01-27T17:25:00.0516162Z","actor":"55d92428","eventType":"PlayerVoted","payload":{"voterId":"55d92428","targetId":"beb07c52"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":68,"serverSeq":68,"timestamp":"2026-01-27T17:25:01.4404222Z","actor":"beb07c52","eventType":"PlayerVoted","payload":{"voterId":"beb07c52","targetId":"ac74a0a6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":69,"serverSeq":69,"timestamp":"2026-01-27T17:25:06.000727Z","actor":"ac74a0a6","eventType":"PlayerVoted","payload":{"voterId":"ac74a0a6","targetId":"beb07c52"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":70,"serverSeq":70,"timestamp":"2026-01-27T17:25:11.3053945Z","actor":"8505d1ed","eventType":"PlayerVoted","payload":{"voterId":"8505d1ed","targetId":"beb07c52"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":71,"serverSeq":71,"timestamp":"2026-01-27T17:25:23.3548426Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"beb07c52":3,"ac74a0a6":1,"__SKIP__":0},"ejectedPlayerId":"beb07c52","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":72,"serverSeq":72,"timestamp":"2026-01-27T17:25:23.3886224Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"beb07c52","role":"Crew"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":73,"serverSeq":73,"timestamp":"2026-01-27T17:25:50.3894758Z","actor":"ac74a0a6","eventType":"TaskCompleted","payload":{"clientUuid":"ac74a0a6","taskId":"task_2","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":74,"serverSeq":74,"timestamp":"2026-01-27T17:26:15.9593694Z","actor":"8505d1ed","eventType":"TaskCompleted","payload":{"clientUuid":"8505d1ed","taskId":"task_12","totalCompleted":2,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":75,"serverSeq":75,"timestamp":"2026-01-27T17:27:13.3959624Z","actor":"55d92428","eventType":"PlayerKilled","payload":{"victimId":"ac74a0a6","killerId":"55d92428","bodyId":"b1ce3bb5","location":{"lat":50.77357761312263,"lon":15.072797890187175}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":76,"serverSeq":76,"timestamp":"2026-01-27T17:27:13.3998517Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["55d92428"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":77,"serverSeq":77,"timestamp":"2026-01-27T17:27:19.6276867Z","actor":"ac74a0a6","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":78,"serverSeq":78,"timestamp":"2026-01-27T17:27:20.6805979Z","actor":"ac74a0a6","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":79,"serverSeq":79,"timestamp":"2026-01-27T17:27:25.076246Z","actor":"ac74a0a6","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":116,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","yes","yes","residential","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7741465,15.070948,50.7740958,15.0709872],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,4,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.7744712,15.0716784,6,50.7739942,15.0706985,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":116},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":80,"serverSeq":80,"timestamp":"2026-01-27T17:27:25.0865006Z","actor":"ac74a0a6","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ac74a0a6","displayName":"Hr\u00E1\u010D229","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":81,"serverSeq":81,"timestamp":"2026-01-27T17:27:25.0903863Z","actor":"beb07c52","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"beb07c52","displayName":"Hr\u00E1\u010D623","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":82,"serverSeq":82,"timestamp":"2026-01-27T17:27:25.0939353Z","actor":"55d92428","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"55d92428","displayName":"Hr\u00E1\u010D172","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":83,"serverSeq":83,"timestamp":"2026-01-27T17:27:25.0977114Z","actor":"8505d1ed","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"8505d1ed","displayName":"Hr\u00E1\u010D976","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":84,"serverSeq":84,"timestamp":"2026-01-27T17:27:25.1019079Z","actor":"ac74a0a6","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":85,"serverSeq":85,"timestamp":"2026-01-27T17:27:25.1058596Z","actor":"ac74a0a6","eventType":"RoleAssigned","payload":{"clientUuid":"ac74a0a6","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7735493,"lon":15.0730608},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7738298,"lon":15.0716222},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7738661,"lon":15.0722328},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7733695,"lon":15.072243},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":86,"serverSeq":86,"timestamp":"2026-01-27T17:27:25.1095401Z","actor":"beb07c52","eventType":"RoleAssigned","payload":{"clientUuid":"beb07c52","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":87,"serverSeq":87,"timestamp":"2026-01-27T17:27:25.113125Z","actor":"8505d1ed","eventType":"RoleAssigned","payload":{"clientUuid":"8505d1ed","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7739109,"lon":15.0728539},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7734516,"lon":15.0723155},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7729336,"lon":15.0713619},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.773807,"lon":15.071876},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":88,"serverSeq":88,"timestamp":"2026-01-27T17:27:25.1169739Z","actor":"55d92428","eventType":"RoleAssigned","payload":{"clientUuid":"55d92428","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7732768,"lon":15.0725856},"type":"Instant"},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.772732,"lon":15.0728076},"type":"Instant"},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.7733695,"lon":15.072243},"type":"Instant"},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.7728733,"lon":15.0713562},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":89,"serverSeq":89,"timestamp":"2026-01-27T17:27:45.6356675Z","actor":"beb07c52","eventType":"PlayerKilled","payload":{"victimId":"8505d1ed","killerId":"beb07c52","bodyId":"a0d004c6","location":{"lat":50.77364810754672,"lon":15.072627464770637}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":90,"serverSeq":90,"timestamp":"2026-01-27T17:27:54.9947735Z","actor":"beb07c52","eventType":"BodyReported","payload":{"reporterId":"beb07c52","bodyId":"a0d004c6","victimId":"8505d1ed"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":91,"serverSeq":91,"timestamp":"2026-01-27T17:27:54.9995404Z","actor":"beb07c52","eventType":"MeetingStarted","payload":{"meetingId":"0b48d4b8","type":"BodyReport","meetingLocation":{"lat":50.77364810754672,"lon":15.072627464770637},"arrivalDeadline":"2026-01-27T17:28:17.9995201Z","discussionEndTime":"2026-01-27T17:28:29.9995201Z","votingEndTime":"2026-01-27T17:28:59.9995201Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":92,"serverSeq":92,"timestamp":"2026-01-27T17:27:55.0028736Z","actor":"beb07c52","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"beb07c52","meetingId":"0b48d4b8"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":93,"serverSeq":93,"timestamp":"2026-01-27T17:28:05.1832391Z","actor":"55d92428","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"55d92428","meetingId":"0b48d4b8"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":94,"serverSeq":94,"timestamp":"2026-01-27T17:28:11.8369594Z","actor":"ac74a0a6","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"ac74a0a6","meetingId":"0b48d4b8"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":95,"serverSeq":95,"timestamp":"2026-01-27T17:28:43.3169333Z","actor":"55d92428","eventType":"PlayerVoted","payload":{"voterId":"55d92428","targetId":"beb07c52"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":96,"serverSeq":96,"timestamp":"2026-01-27T17:28:44.8744622Z","actor":"ac74a0a6","eventType":"PlayerVoted","payload":{"voterId":"ac74a0a6","targetId":"beb07c52"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":97,"serverSeq":97,"timestamp":"2026-01-27T17:28:52.5435913Z","actor":"beb07c52","eventType":"PlayerVoted","payload":{"voterId":"beb07c52","targetId":"55d92428"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":98,"serverSeq":98,"timestamp":"2026-01-27T17:29:00.013505Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"beb07c52":2,"55d92428":1,"__SKIP__":0},"ejectedPlayerId":"beb07c52","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":99,"serverSeq":99,"timestamp":"2026-01-27T17:29:00.0693435Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"beb07c52","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":100,"serverSeq":100,"timestamp":"2026-01-27T17:29:00.0730261Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["ac74a0a6","8505d1ed","55d92428"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":101,"serverSeq":101,"timestamp":"2026-01-27T17:29:05.2124852Z","actor":"ac74a0a6","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":102,"serverSeq":102,"timestamp":"2026-01-27T17:29:32.4371834Z","actor":"ac74a0a6","eventType":"PlayerLeft","payload":{"clientUuid":"ac74a0a6","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":103,"serverSeq":103,"timestamp":"2026-01-27T17:29:32.460568Z","actor":"beb07c52","eventType":"HostChanged","payload":{"newHostId":"beb07c52","previousHostId":"none"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/61acb18774534df6/wal_20260127102801.ndjson b/data/lobbies/61acb18774534df6/wal_20260127102801.ndjson new file mode 100644 index 0000000..acd0ef4 --- /dev/null +++ b/data/lobbies/61acb18774534df6/wal_20260127102801.ndjson @@ -0,0 +1,11 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:28:01.1997743Z","actor":"60a019f2","eventType":"PlayerJoined","payload":{"clientUuid":"60a019f2","displayName":"SabOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:28:03.8544722Z","actor":"2ef95622","eventType":"PlayerJoined","payload":{"clientUuid":"2ef95622","displayName":"SabPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T10:28:04.5191432Z","actor":"60a019f2","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T10:28:04.5218628Z","actor":"60a019f2","eventType":"RoleAssigned","payload":{"clientUuid":"60a019f2","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.085041839999995,"lon":14.42178266},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0890353,"lon":14.4243006},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0875663,"lon":14.4204366},"type":"Progress","durationMs":8859,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T10:28:04.523891Z","actor":"2ef95622","eventType":"RoleAssigned","payload":{"clientUuid":"2ef95622","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T10:28:07.1045145Z","actor":"2ef95622","eventType":"SabotageStarted","payload":{"sabotageId":"fa186dc5","type":"CriticalMeltdown","initiatorId":"2ef95622","deadline":"2026-01-27T10:28:52.1044483Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.0870079,"lon":14.4208543},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.0865366,"lon":14.4215843},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T10:28:09.6254983Z","actor":"60a019f2","eventType":"PlayerLeft","payload":{"clientUuid":"60a019f2","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T10:28:09.632627Z","actor":"2ef95622","eventType":"HostChanged","payload":{"newHostId":"2ef95622","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T10:28:09.6380182Z","actor":"2ef95622","eventType":"PlayerLeft","payload":{"clientUuid":"2ef95622","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T10:28:52.106977Z","actor":"2ef95622","eventType":"SabotageMeltdown","payload":{"sabotageId":"fa186dc5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T10:28:52.1237417Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Kritick\u00E1 sabot\u00E1\u017E - meltdown","winners":[]},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/624f1cc473514921/wal_20260127102747.ndjson b/data/lobbies/624f1cc473514921/wal_20260127102747.ndjson new file mode 100644 index 0000000..9807007 --- /dev/null +++ b/data/lobbies/624f1cc473514921/wal_20260127102747.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:27:47.981401Z","actor":"2772c35e","eventType":"PlayerJoined","payload":{"clientUuid":"2772c35e","displayName":"MapTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:27:48.9960703Z","actor":"2772c35e","eventType":"PlayerLeft","payload":{"clientUuid":"2772c35e","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/63c7db940cfc4b1c/wal_20260127122116.ndjson b/data/lobbies/63c7db940cfc4b1c/wal_20260127122116.ndjson new file mode 100644 index 0000000..657f8b5 --- /dev/null +++ b/data/lobbies/63c7db940cfc4b1c/wal_20260127122116.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:21:16.7009418Z","actor":"b4e3c4f4","eventType":"PlayerJoined","payload":{"clientUuid":"b4e3c4f4","displayName":"SabOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:21:34.2546799Z","actor":"8f84bc6d","eventType":"PlayerJoined","payload":{"clientUuid":"8f84bc6d","displayName":"SabPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:21:34.6453691Z","actor":"b4e3c4f4","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:21:41.6642206Z","actor":"b4e3c4f4","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:21:41.6849002Z","actor":"b4e3c4f4","eventType":"PlayerLeft","payload":{"clientUuid":"b4e3c4f4","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:21:41.6900918Z","actor":"8f84bc6d","eventType":"HostChanged","payload":{"newHostId":"8f84bc6d","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:21:41.6936268Z","actor":"8f84bc6d","eventType":"PlayerLeft","payload":{"clientUuid":"8f84bc6d","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/63e927d3866048e3/wal_20260127151334.ndjson b/data/lobbies/63e927d3866048e3/wal_20260127151334.ndjson new file mode 100644 index 0000000..31e1428 --- /dev/null +++ b/data/lobbies/63e927d3866048e3/wal_20260127151334.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T15:13:34.7779962Z","actor":"3cf2ce1c","eventType":"PlayerJoined","payload":{"clientUuid":"3cf2ce1c","displayName":"Hr\u00E1\u010D136"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T15:13:36.8087454Z","actor":"3cf2ce1c","eventType":"PlayerLeft","payload":{"clientUuid":"3cf2ce1c","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/6ae2ddc195bb40d3/wal_20260127122031.ndjson b/data/lobbies/6ae2ddc195bb40d3/wal_20260127122031.ndjson new file mode 100644 index 0000000..af3172e --- /dev/null +++ b/data/lobbies/6ae2ddc195bb40d3/wal_20260127122031.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:20:31.5136166Z","actor":"ed17a933","eventType":"PlayerJoined","payload":{"clientUuid":"ed17a933","displayName":"StructTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:20:46.9532678Z","actor":"ed17a933","eventType":"PlayerLeft","payload":{"clientUuid":"ed17a933","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/6dc0701887224f6c/snapshot_29.json b/data/lobbies/6dc0701887224f6c/snapshot_29.json new file mode 100644 index 0000000..3454d4b --- /dev/null +++ b/data/lobbies/6dc0701887224f6c/snapshot_29.json @@ -0,0 +1,843 @@ +{ + "lobbyId": "6dc0701887224f6c", + "lastEventId": 29, + "timestamp": "2026-01-27T17:08:04.9544682Z", + "checksum": "35e22951c680f0a9dc2e4dcf31e203e75e9bc3601ff3d2654d925857ca3d9e11", + "phase": "Playing", + "players": [ + { + "clientUuid": "0cabd196", + "displayName": "Hr\u00E1\u010D308", + "position": { + "lat": 50.77360619739959, + "lon": 15.072054196830372 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:03:04.9405525Z", + "lastPositionUpdate": "2026-01-27T17:08:04.8139149Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "currentWaypointIndex": 1, + "taskStartTime": "2026-01-27T17:06:22.6362862Z", + "lastTaskProgressTime": "2026-01-27T17:06:22.636287Z", + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "70d9764e", + "displayName": "Hr\u00E1\u010D467", + "position": { + "lat": 50.773608029754094, + "lon": 15.072135796821454 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:03:12.3441902Z", + "lastPositionUpdate": "2026-01-27T17:08:04.9533762Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "waypoints": [ + { + "waypointId": "task_0_wp0", + "name": "Opravit kabel - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "order": 0 + }, + { + "waypointId": "task_0_wp1", + "name": "Opravit kabel - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7738727, + "lon": 15.0724211 + }, + "order": 1 + }, + { + "waypointId": "task_0_wp2", + "name": "Opravit kabel - Potvrdit", + "location": { + "lat": 50.7735894, + "lon": 15.0717216 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "waypoints": [ + { + "waypointId": "task_1_wp0", + "name": "Zkalibrovat senzor - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "order": 0 + }, + { + "waypointId": "task_1_wp1", + "name": "Zkalibrovat senzor - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "waypoints": [ + { + "waypointId": "task_2_wp0", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "order": 0 + } + ], + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7736218, + "lon": 15.0734419 + }, + "waypoints": [ + { + "waypointId": "task_3_wp0", + "name": "Nab\u00EDt baterii - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7736218, + "lon": 15.0734419 + }, + "order": 0 + }, + { + "waypointId": "task_3_wp1", + "name": "Nab\u00EDt baterii - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "waypoints": [ + { + "waypointId": "task_4_wp0", + "name": "Vy\u010Distit filtr - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "order": 0 + }, + { + "waypointId": "task_4_wp1", + "name": "Vy\u010Distit filtr - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7735484, + "lon": 15.0720508 + }, + "order": 1 + }, + { + "waypointId": "task_4_wp2", + "name": "Vy\u010Distit filtr - Potvrdit", + "location": { + "lat": 50.7741669, + "lon": 15.0718846 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + } + ], + "currentTaskId": null, + "currentWaypointIndex": 0, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "47c5062e", + "displayName": "Hr\u00E1\u010D283", + "position": { + "lat": 50.77362533873519, + "lon": 15.072083787211199 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T17:03:20.2284988Z", + "lastPositionUpdate": "2026-01-27T17:08:04.7240844Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "waypoints": [ + { + "waypointId": "task_5_wp0", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "order": 0 + } + ], + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "waypoints": [ + { + "waypointId": "task_6_wp0", + "name": "Opravit antenu - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "order": 0 + }, + { + "waypointId": "task_6_wp1", + "name": "Opravit antenu - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "order": 1 + }, + { + "waypointId": "task_6_wp2", + "name": "Opravit antenu - Potvrdit", + "location": { + "lat": 50.773902, + "lon": 15.0727669 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7739852, + "lon": 15.072001 + }, + "waypoints": [ + { + "waypointId": "task_7_wp0", + "name": "Zkontrolovat z\u00E1soby - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7739852, + "lon": 15.072001 + }, + "order": 0 + }, + { + "waypointId": "task_7_wp1", + "name": "Zkontrolovat z\u00E1soby - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7735939, + "lon": 15.0732437 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7735004, + "lon": 15.0728728 + }, + "waypoints": [ + { + "waypointId": "task_8_wp0", + "name": "Otestovat reaktor - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7735004, + "lon": 15.0728728 + }, + "order": 0 + }, + { + "waypointId": "task_8_wp1", + "name": "Otestovat reaktor - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "order": 1 + }, + { + "waypointId": "task_8_wp2", + "name": "Otestovat reaktor - Potvrdit", + "location": { + "lat": 50.7735894, + "lon": 15.0717216 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "waypoints": [ + { + "waypointId": "task_9_wp0", + "name": "Opravit kabel - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "order": 0 + }, + { + "waypointId": "task_9_wp1", + "name": "Opravit kabel - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "order": 1 + }, + { + "waypointId": "task_9_wp2", + "name": "Opravit kabel - Potvrdit", + "location": { + "lat": 50.7734588, + "lon": 15.0719916 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + } + ], + "currentTaskId": null, + "currentWaypointIndex": 1, + "taskStartTime": null, + "lastTaskProgressTime": "2026-01-27T17:06:50.8371719Z", + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "waypoints": [ + { + "waypointId": "task_0_wp0", + "name": "Opravit kabel - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "order": 0 + }, + { + "waypointId": "task_0_wp1", + "name": "Opravit kabel - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7738727, + "lon": 15.0724211 + }, + "order": 1 + }, + { + "waypointId": "task_0_wp2", + "name": "Opravit kabel - Potvrdit", + "location": { + "lat": 50.7735894, + "lon": 15.0717216 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "waypoints": [ + { + "waypointId": "task_1_wp0", + "name": "Zkalibrovat senzor - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "order": 0 + }, + { + "waypointId": "task_1_wp1", + "name": "Zkalibrovat senzor - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "waypoints": [ + { + "waypointId": "task_2_wp0", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7735493, + "lon": 15.0730608 + }, + "order": 0 + } + ], + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7736218, + "lon": 15.0734419 + }, + "waypoints": [ + { + "waypointId": "task_3_wp0", + "name": "Nab\u00EDt baterii - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7736218, + "lon": 15.0734419 + }, + "order": 0 + }, + { + "waypointId": "task_3_wp1", + "name": "Nab\u00EDt baterii - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "waypoints": [ + { + "waypointId": "task_4_wp0", + "name": "Vy\u010Distit filtr - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "order": 0 + }, + { + "waypointId": "task_4_wp1", + "name": "Vy\u010Distit filtr - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7735484, + "lon": 15.0720508 + }, + "order": 1 + }, + { + "waypointId": "task_4_wp2", + "name": "Vy\u010Distit filtr - Potvrdit", + "location": { + "lat": 50.7741669, + "lon": 15.0718846 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "waypoints": [ + { + "waypointId": "task_5_wp0", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "order": 0 + } + ], + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "waypoints": [ + { + "waypointId": "task_6_wp0", + "name": "Opravit antenu - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7738661, + "lon": 15.0722328 + }, + "order": 0 + }, + { + "waypointId": "task_6_wp1", + "name": "Opravit antenu - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7730823, + "lon": 15.071947 + }, + "order": 1 + }, + { + "waypointId": "task_6_wp2", + "name": "Opravit antenu - Potvrdit", + "location": { + "lat": 50.773902, + "lon": 15.0727669 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7739852, + "lon": 15.072001 + }, + "waypoints": [ + { + "waypointId": "task_7_wp0", + "name": "Zkontrolovat z\u00E1soby - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7739852, + "lon": 15.072001 + }, + "order": 0 + }, + { + "waypointId": "task_7_wp1", + "name": "Zkontrolovat z\u00E1soby - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7735939, + "lon": 15.0732437 + }, + "order": 1 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7735004, + "lon": 15.0728728 + }, + "waypoints": [ + { + "waypointId": "task_8_wp0", + "name": "Otestovat reaktor - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.7735004, + "lon": 15.0728728 + }, + "order": 0 + }, + { + "waypointId": "task_8_wp1", + "name": "Otestovat reaktor - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7729336, + "lon": 15.0713619 + }, + "order": 1 + }, + { + "waypointId": "task_8_wp2", + "name": "Otestovat reaktor - Potvrdit", + "location": { + "lat": 50.7735894, + "lon": 15.0717216 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "waypoints": [ + { + "waypointId": "task_9_wp0", + "name": "Opravit kabel - P\u0159ij\u00EDt sem", + "location": { + "lat": 50.773807, + "lon": 15.071876 + }, + "order": 0 + }, + { + "waypointId": "task_9_wp1", + "name": "Opravit kabel - Aktivovat termin\u00E1l", + "location": { + "lat": 50.7733695, + "lon": 15.072243 + }, + "order": 1 + }, + { + "waypointId": "task_9_wp2", + "name": "Opravit kabel - Potvrdit", + "location": { + "lat": 50.7734588, + "lon": 15.0719916 + }, + "order": 2 + } + ], + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 100, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/6dc0701887224f6c/wal_20260127170304.ndjson b/data/lobbies/6dc0701887224f6c/wal_20260127170304.ndjson new file mode 100644 index 0000000..a0b2ffc --- /dev/null +++ b/data/lobbies/6dc0701887224f6c/wal_20260127170304.ndjson @@ -0,0 +1,30 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T17:03:04.9494468Z","actor":"0cabd196","eventType":"PlayerJoined","payload":{"clientUuid":"0cabd196","displayName":"Hr\u00E1\u010D308"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T17:03:12.3478797Z","actor":"70d9764e","eventType":"PlayerJoined","payload":{"clientUuid":"70d9764e","displayName":"Hr\u00E1\u010D467"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T17:03:20.2422031Z","actor":"47c5062e","eventType":"PlayerJoined","payload":{"clientUuid":"47c5062e","displayName":"Hr\u00E1\u010D283"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T17:03:22.7625271Z","actor":"0cabd196","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T17:03:27.1995757Z","actor":"0cabd196","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":100,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":100},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T17:03:27.2251937Z","actor":"70d9764e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"70d9764e","displayName":"Hr\u00E1\u010D467","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T17:03:27.228293Z","actor":"47c5062e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"47c5062e","displayName":"Hr\u00E1\u010D283","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T17:03:27.2296338Z","actor":"0cabd196","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"0cabd196","displayName":"Hr\u00E1\u010D308","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T17:03:27.2364263Z","actor":"0cabd196","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T17:03:27.2391067Z","actor":"0cabd196","eventType":"RoleAssigned","payload":{"clientUuid":"0cabd196","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"waypoints":[{"waypointId":"task_0_wp0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"order":0}],"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7731933,"lon":15.0726196},"waypoints":[{"waypointId":"task_1_wp0","name":"Zkalibrovat senzor","location":{"lat":50.7731933,"lon":15.0726196},"order":0}],"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7734588,"lon":15.0719916},"waypoints":[{"waypointId":"task_2_wp0","name":"St\u00E1hnout data - P\u0159ij\u00EDt sem","location":{"lat":50.7734588,"lon":15.0719916},"order":0},{"waypointId":"task_2_wp1","name":"St\u00E1hnout data - Aktivovat termin\u00E1l","location":{"lat":50.7739109,"lon":15.0728539},"order":1}],"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7735004,"lon":15.0728728},"waypoints":[{"waypointId":"task_3_wp0","name":"Nab\u00EDt baterii","location":{"lat":50.7735004,"lon":15.0728728},"order":0}],"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739981,"lon":15.0714832},"waypoints":[{"waypointId":"task_4_wp0","name":"Vy\u010Distit filtr - P\u0159ij\u00EDt sem","location":{"lat":50.7739981,"lon":15.0714832},"order":0},{"waypointId":"task_4_wp1","name":"Vy\u010Distit filtr - Aktivovat termin\u00E1l","location":{"lat":50.7743857,"lon":15.0723828},"order":1},{"waypointId":"task_4_wp2","name":"Vy\u010Distit filtr - Potvrdit","location":{"lat":50.7738661,"lon":15.0722328},"order":2}],"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T17:03:27.2511377Z","actor":"70d9764e","eventType":"RoleAssigned","payload":{"clientUuid":"70d9764e","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T17:03:27.2524432Z","actor":"47c5062e","eventType":"RoleAssigned","payload":{"clientUuid":"47c5062e","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"waypoints":[{"waypointId":"task_5_wp0","name":"Nastavit kompas - P\u0159ij\u00EDt sem","location":{"lat":50.77358,"lon":15.07339},"order":0},{"waypointId":"task_5_wp1","name":"Nastavit kompas - Aktivovat termin\u00E1l","location":{"lat":50.7741669,"lon":15.0718846},"order":1},{"waypointId":"task_5_wp2","name":"Nastavit kompas - Potvrdit","location":{"lat":50.7738899,"lon":15.0720892},"order":2}],"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.773902,"lon":15.0727669},"waypoints":[{"waypointId":"task_6_wp0","name":"Opravit antenu - P\u0159ij\u00EDt sem","location":{"lat":50.773902,"lon":15.0727669},"order":0},{"waypointId":"task_6_wp1","name":"Opravit antenu - Aktivovat termin\u00E1l","location":{"lat":50.7729336,"lon":15.0713619},"order":1},{"waypointId":"task_6_wp2","name":"Opravit antenu - Potvrdit","location":{"lat":50.7739135,"lon":15.0723859},"order":2}],"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7735484,"lon":15.0720508},"waypoints":[{"waypointId":"task_7_wp0","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7735484,"lon":15.0720508},"order":0}],"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7738298,"lon":15.0716222},"waypoints":[{"waypointId":"task_8_wp0","name":"Otestovat reaktor - P\u0159ij\u00EDt sem","location":{"lat":50.7738298,"lon":15.0716222},"order":0},{"waypointId":"task_8_wp1","name":"Otestovat reaktor - Aktivovat termin\u00E1l","location":{"lat":50.7735493,"lon":15.0730608},"order":1}],"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7732806,"lon":15.0725075},"waypoints":[{"waypointId":"task_9_wp0","name":"Opravit kabel - P\u0159ij\u00EDt sem","location":{"lat":50.7732806,"lon":15.0725075},"order":0},{"waypointId":"task_9_wp1","name":"Opravit kabel - Aktivovat termin\u00E1l","location":{"lat":50.773851,"lon":15.073075},"order":1}],"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T17:03:42.9691918Z","actor":"0cabd196","eventType":"TaskCompleted","payload":{"clientUuid":"0cabd196","taskId":"task_3","totalCompleted":1,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T17:04:09.9633707Z","actor":"47c5062e","eventType":"TaskCompleted","payload":{"clientUuid":"47c5062e","taskId":"task_7","totalCompleted":2,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T17:06:09.6381824Z","actor":"70d9764e","eventType":"SabotageStarted","payload":{"sabotageId":"70a2236b","type":"CommsBlackout","initiatorId":"70d9764e","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.7735894,"lon":15.0717216},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T17:06:39.6637629Z","actor":"system","eventType":"SabotageExpired","payload":{"sabotageId":"70a2236b","type":"CommsBlackout","repairerIds":[]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T17:07:16.464433Z","actor":"70d9764e","eventType":"PlayerKilled","payload":{"victimId":"47c5062e","killerId":"70d9764e","bodyId":"221123ad","location":{"lat":50.77361041505359,"lon":15.072490057955008}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T17:07:16.4698184Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["70d9764e"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T17:07:18.7196075Z","actor":"0cabd196","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T17:07:19.3684561Z","actor":"0cabd196","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T17:07:23.6205192Z","actor":"0cabd196","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":100,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":100},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T17:07:23.6292743Z","actor":"0cabd196","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"0cabd196","displayName":"Hr\u00E1\u010D308","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T17:07:23.6334551Z","actor":"47c5062e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"47c5062e","displayName":"Hr\u00E1\u010D283","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T17:07:23.637139Z","actor":"70d9764e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"70d9764e","displayName":"Hr\u00E1\u010D467","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T17:07:23.6414823Z","actor":"0cabd196","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T17:07:23.645383Z","actor":"0cabd196","eventType":"RoleAssigned","payload":{"clientUuid":"0cabd196","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T17:07:23.6488729Z","actor":"70d9764e","eventType":"RoleAssigned","payload":{"clientUuid":"70d9764e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"waypoints":[{"waypointId":"task_0_wp0","name":"Opravit kabel - P\u0159ij\u00EDt sem","location":{"lat":50.77358,"lon":15.07339},"order":0},{"waypointId":"task_0_wp1","name":"Opravit kabel - Aktivovat termin\u00E1l","location":{"lat":50.7738727,"lon":15.0724211},"order":1},{"waypointId":"task_0_wp2","name":"Opravit kabel - Potvrdit","location":{"lat":50.7735894,"lon":15.0717216},"order":2}],"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7733695,"lon":15.072243},"waypoints":[{"waypointId":"task_1_wp0","name":"Zkalibrovat senzor - P\u0159ij\u00EDt sem","location":{"lat":50.7733695,"lon":15.072243},"order":0},{"waypointId":"task_1_wp1","name":"Zkalibrovat senzor - Aktivovat termin\u00E1l","location":{"lat":50.7729336,"lon":15.0713619},"order":1}],"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7735493,"lon":15.0730608},"waypoints":[{"waypointId":"task_2_wp0","name":"St\u00E1hnout data","location":{"lat":50.7735493,"lon":15.0730608},"order":0}],"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7736218,"lon":15.0734419},"waypoints":[{"waypointId":"task_3_wp0","name":"Nab\u00EDt baterii - P\u0159ij\u00EDt sem","location":{"lat":50.7736218,"lon":15.0734419},"order":0},{"waypointId":"task_3_wp1","name":"Nab\u00EDt baterii - Aktivovat termin\u00E1l","location":{"lat":50.7730823,"lon":15.071947},"order":1}],"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739981,"lon":15.0714832},"waypoints":[{"waypointId":"task_4_wp0","name":"Vy\u010Distit filtr - P\u0159ij\u00EDt sem","location":{"lat":50.7739981,"lon":15.0714832},"order":0},{"waypointId":"task_4_wp1","name":"Vy\u010Distit filtr - Aktivovat termin\u00E1l","location":{"lat":50.7735484,"lon":15.0720508},"order":1},{"waypointId":"task_4_wp2","name":"Vy\u010Distit filtr - Potvrdit","location":{"lat":50.7741669,"lon":15.0718846},"order":2}],"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T17:07:23.6522308Z","actor":"47c5062e","eventType":"RoleAssigned","payload":{"clientUuid":"47c5062e","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"waypoints":[{"waypointId":"task_5_wp0","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"order":0}],"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7738661,"lon":15.0722328},"waypoints":[{"waypointId":"task_6_wp0","name":"Opravit antenu - P\u0159ij\u00EDt sem","location":{"lat":50.7738661,"lon":15.0722328},"order":0},{"waypointId":"task_6_wp1","name":"Opravit antenu - Aktivovat termin\u00E1l","location":{"lat":50.7730823,"lon":15.071947},"order":1},{"waypointId":"task_6_wp2","name":"Opravit antenu - Potvrdit","location":{"lat":50.773902,"lon":15.0727669},"order":2}],"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7739852,"lon":15.072001},"waypoints":[{"waypointId":"task_7_wp0","name":"Zkontrolovat z\u00E1soby - P\u0159ij\u00EDt sem","location":{"lat":50.7739852,"lon":15.072001},"order":0},{"waypointId":"task_7_wp1","name":"Zkontrolovat z\u00E1soby - Aktivovat termin\u00E1l","location":{"lat":50.7735939,"lon":15.0732437},"order":1}],"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7735004,"lon":15.0728728},"waypoints":[{"waypointId":"task_8_wp0","name":"Otestovat reaktor - P\u0159ij\u00EDt sem","location":{"lat":50.7735004,"lon":15.0728728},"order":0},{"waypointId":"task_8_wp1","name":"Otestovat reaktor - Aktivovat termin\u00E1l","location":{"lat":50.7729336,"lon":15.0713619},"order":1},{"waypointId":"task_8_wp2","name":"Otestovat reaktor - Potvrdit","location":{"lat":50.7735894,"lon":15.0717216},"order":2}],"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.773807,"lon":15.071876},"waypoints":[{"waypointId":"task_9_wp0","name":"Opravit kabel - P\u0159ij\u00EDt sem","location":{"lat":50.773807,"lon":15.071876},"order":0},{"waypointId":"task_9_wp1","name":"Opravit kabel - Aktivovat termin\u00E1l","location":{"lat":50.7733695,"lon":15.072243},"order":1},{"waypointId":"task_9_wp2","name":"Opravit kabel - Potvrdit","location":{"lat":50.7734588,"lon":15.0719916},"order":2}],"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T17:07:59.928531Z","actor":"0cabd196","eventType":"SabotageStarted","payload":{"sabotageId":"235ca4da","type":"CommsBlackout","initiatorId":"0cabd196","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.7731305,"lon":15.072217},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T17:08:29.9531434Z","actor":"system","eventType":"SabotageExpired","payload":{"sabotageId":"235ca4da","type":"CommsBlackout","repairerIds":[]},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/76557fab29884651/wal_20260127020957.ndjson b/data/lobbies/76557fab29884651/wal_20260127020957.ndjson new file mode 100644 index 0000000..07562c3 --- /dev/null +++ b/data/lobbies/76557fab29884651/wal_20260127020957.ndjson @@ -0,0 +1,41 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T02:09:57.3701587Z","actor":"d69ee73f","eventType":"PlayerJoined","payload":{"clientUuid":"d69ee73f","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T02:09:57.4060451Z","actor":"662b97af","eventType":"PlayerJoined","payload":{"clientUuid":"662b97af","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T02:09:57.7132787Z","actor":"2d8948a6","eventType":"PlayerJoined","payload":{"clientUuid":"2d8948a6","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T02:09:58.0266344Z","actor":"513fddbf","eventType":"PlayerJoined","payload":{"clientUuid":"513fddbf","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T02:09:58.36494Z","actor":"8777443e","eventType":"PlayerJoined","payload":{"clientUuid":"8777443e","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T02:09:58.6510593Z","actor":"f679208e","eventType":"PlayerJoined","payload":{"clientUuid":"f679208e","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T02:09:58.954166Z","actor":"d69ee73f","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T02:09:58.9730209Z","actor":"d69ee73f","eventType":"RoleAssigned","payload":{"clientUuid":"d69ee73f","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.000328867880675,"lon":14.001726901038442},"type":"Progress","durationMs":7582,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00345622868695,"lon":13.999777520647735},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000018312077614,"lon":13.999360168229936},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T02:09:58.9873939Z","actor":"662b97af","eventType":"RoleAssigned","payload":{"clientUuid":"662b97af","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.000328867880675,"lon":14.001726901038442},"type":"Progress","durationMs":7582,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00345622868695,"lon":13.999777520647735},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000018312077614,"lon":13.999360168229936},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T02:09:58.9927342Z","actor":"2d8948a6","eventType":"RoleAssigned","payload":{"clientUuid":"2d8948a6","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.000328867880675,"lon":14.001726901038442},"type":"Progress","durationMs":7582,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00345622868695,"lon":13.999777520647735},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000018312077614,"lon":13.999360168229936},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T02:09:58.9980123Z","actor":"513fddbf","eventType":"RoleAssigned","payload":{"clientUuid":"513fddbf","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.000328867880675,"lon":14.001726901038442},"type":"Progress","durationMs":7582,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00345622868695,"lon":13.999777520647735},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000018312077614,"lon":13.999360168229936},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T02:09:59.0014348Z","actor":"8777443e","eventType":"RoleAssigned","payload":{"clientUuid":"8777443e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.000328867880675,"lon":14.001726901038442},"type":"Progress","durationMs":7582,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00345622868695,"lon":13.999777520647735},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.000018312077614,"lon":13.999360168229936},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T02:09:59.0041084Z","actor":"f679208e","eventType":"RoleAssigned","payload":{"clientUuid":"f679208e","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T02:10:08.8165821Z","actor":"d69ee73f","eventType":"TaskCompleted","payload":{"clientUuid":"d69ee73f","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T02:10:09.3471725Z","actor":"f679208e","eventType":"SabotageStarted","payload":{"sabotageId":"62d90f8b","type":"CommsBlackout","initiatorId":"f679208e","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":49.99821598505542,"lon":14.002817877417288},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T02:10:12.5110187Z","actor":"d69ee73f","eventType":"RepairStarted","payload":{"sabotageId":"62d90f8b","stationId":"comms_station","playerId":"d69ee73f"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T02:10:15.524945Z","actor":"d69ee73f","eventType":"SabotageRepaired","payload":{"sabotageId":"62d90f8b","type":"CommsBlackout","repairerIds":["d69ee73f"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T02:10:49.6217796Z","actor":"f679208e","eventType":"SabotageStarted","payload":{"sabotageId":"c6d2be25","type":"CriticalMeltdown","initiatorId":"f679208e","deadline":"2026-01-27T02:11:34.6217352Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.00315315315315,"lon":14},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":49.99684684684685,"lon":14},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T02:10:51.2400728Z","actor":"d69ee73f","eventType":"RepairStarted","payload":{"sabotageId":"c6d2be25","stationId":"reactor_alpha","playerId":"d69ee73f"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T02:10:51.2422767Z","actor":"662b97af","eventType":"RepairStarted","payload":{"sabotageId":"c6d2be25","stationId":"reactor_beta","playerId":"662b97af"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T02:10:54.2574175Z","actor":"d69ee73f","eventType":"SabotageRepaired","payload":{"sabotageId":"c6d2be25","type":"CriticalMeltdown","repairerIds":["d69ee73f","662b97af"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T02:11:00.4171033Z","actor":"f679208e","eventType":"PlayerKilled","payload":{"victimId":"d69ee73f","killerId":"f679208e","bodyId":"0bfbb7d9","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T02:11:01.0111059Z","actor":"662b97af","eventType":"BodyReported","payload":{"reporterId":"662b97af","bodyId":"0bfbb7d9","victimId":"d69ee73f"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T02:11:01.0148454Z","actor":"662b97af","eventType":"MeetingStarted","payload":{"meetingId":"5fe1c860","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T02:11:04.5146231Z","discussionEndTime":"2026-01-27T02:11:07.0146231Z","votingEndTime":"2026-01-27T02:11:17.0146231Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T02:11:07.0243619Z","actor":"662b97af","eventType":"PlayerVoted","payload":{"voterId":"662b97af","targetId":"f679208e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T02:11:07.1460591Z","actor":"2d8948a6","eventType":"PlayerVoted","payload":{"voterId":"2d8948a6","targetId":"f679208e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T02:11:07.2701884Z","actor":"513fddbf","eventType":"PlayerVoted","payload":{"voterId":"513fddbf","targetId":"f679208e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T02:11:07.3940619Z","actor":"8777443e","eventType":"PlayerVoted","payload":{"voterId":"8777443e","targetId":"f679208e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T02:11:07.5185914Z","actor":"f679208e","eventType":"PlayerVoted","payload":{"voterId":"f679208e","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T02:11:17.0235356Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"f679208e":4,"__SKIP__":1},"ejectedPlayerId":"f679208e","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T02:11:17.0531523Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"f679208e","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T02:11:17.0561061Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["d69ee73f","662b97af","2d8948a6","513fddbf","8777443e"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T02:11:17.1645035Z","actor":"d69ee73f","eventType":"PlayerLeft","payload":{"clientUuid":"d69ee73f","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T02:11:17.1724227Z","actor":"662b97af","eventType":"HostChanged","payload":{"newHostId":"662b97af","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T02:11:17.1743131Z","actor":"513fddbf","eventType":"PlayerLeft","payload":{"clientUuid":"513fddbf","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T02:11:17.1758506Z","actor":"2d8948a6","eventType":"PlayerLeft","payload":{"clientUuid":"2d8948a6","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T02:11:17.177524Z","actor":"662b97af","eventType":"PlayerLeft","payload":{"clientUuid":"662b97af","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T02:11:17.1792285Z","actor":"8777443e","eventType":"HostChanged","payload":{"newHostId":"8777443e","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T02:11:17.1808973Z","actor":"8777443e","eventType":"PlayerLeft","payload":{"clientUuid":"8777443e","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T02:11:17.182534Z","actor":"f679208e","eventType":"HostChanged","payload":{"newHostId":"f679208e","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T02:11:17.1840868Z","actor":"f679208e","eventType":"PlayerLeft","payload":{"clientUuid":"f679208e","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/78e1d9f3097d4fa0/wal_20260127012021.ndjson b/data/lobbies/78e1d9f3097d4fa0/wal_20260127012021.ndjson new file mode 100644 index 0000000..1968edf --- /dev/null +++ b/data/lobbies/78e1d9f3097d4fa0/wal_20260127012021.ndjson @@ -0,0 +1,32 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T01:20:21.132039Z","actor":"68b3e661","eventType":"PlayerJoined","payload":{"clientUuid":"68b3e661","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T01:20:21.1824989Z","actor":"e103d91d","eventType":"PlayerJoined","payload":{"clientUuid":"e103d91d","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T01:20:21.4849523Z","actor":"013df611","eventType":"PlayerJoined","payload":{"clientUuid":"013df611","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T01:20:21.795758Z","actor":"5b840647","eventType":"PlayerJoined","payload":{"clientUuid":"5b840647","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T01:20:22.1049895Z","actor":"7b8b6408","eventType":"PlayerJoined","payload":{"clientUuid":"7b8b6408","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T01:20:22.4159071Z","actor":"6f103f4e","eventType":"PlayerJoined","payload":{"clientUuid":"6f103f4e","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T01:20:22.7229067Z","actor":"68b3e661","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T01:20:22.726398Z","actor":"68b3e661","eventType":"RoleAssigned","payload":{"clientUuid":"68b3e661","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99789011811208,"lon":13.99727894803869},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.999469486925214,"lon":14.003871662990889},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99967350572525,"lon":13.996989014035892},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T01:20:22.733024Z","actor":"e103d91d","eventType":"RoleAssigned","payload":{"clientUuid":"e103d91d","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T01:20:22.7347673Z","actor":"013df611","eventType":"RoleAssigned","payload":{"clientUuid":"013df611","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99789011811208,"lon":13.99727894803869},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.999469486925214,"lon":14.003871662990889},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99967350572525,"lon":13.996989014035892},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T01:20:22.7366279Z","actor":"5b840647","eventType":"RoleAssigned","payload":{"clientUuid":"5b840647","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99789011811208,"lon":13.99727894803869},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.999469486925214,"lon":14.003871662990889},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99967350572525,"lon":13.996989014035892},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T01:20:22.7383012Z","actor":"7b8b6408","eventType":"RoleAssigned","payload":{"clientUuid":"7b8b6408","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99789011811208,"lon":13.99727894803869},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.999469486925214,"lon":14.003871662990889},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99967350572525,"lon":13.996989014035892},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T01:20:22.7412468Z","actor":"6f103f4e","eventType":"RoleAssigned","payload":{"clientUuid":"6f103f4e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.99789011811208,"lon":13.99727894803869},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.999469486925214,"lon":14.003871662990889},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99967350572525,"lon":13.996989014035892},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T01:20:24.4952599Z","actor":"68b3e661","eventType":"TaskCompleted","payload":{"clientUuid":"68b3e661","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T01:20:25.5889809Z","actor":"e103d91d","eventType":"PlayerKilled","payload":{"victimId":"68b3e661","killerId":"e103d91d","bodyId":"12d62e05","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T01:20:26.2383892Z","actor":"013df611","eventType":"BodyReported","payload":{"reporterId":"013df611","bodyId":"12d62e05","victimId":"68b3e661"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T01:20:26.2423261Z","actor":"013df611","eventType":"MeetingStarted","payload":{"meetingId":"97bc67a1","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T01:20:29.742107Z","discussionEndTime":"2026-01-27T01:20:32.242107Z","votingEndTime":"2026-01-27T01:20:42.242107Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T01:20:32.2756598Z","actor":"e103d91d","eventType":"PlayerVoted","payload":{"voterId":"e103d91d","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T01:20:32.3982598Z","actor":"013df611","eventType":"PlayerVoted","payload":{"voterId":"013df611","targetId":"e103d91d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T01:20:32.5227239Z","actor":"5b840647","eventType":"PlayerVoted","payload":{"voterId":"5b840647","targetId":"e103d91d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T01:20:32.6464154Z","actor":"7b8b6408","eventType":"PlayerVoted","payload":{"voterId":"7b8b6408","targetId":"e103d91d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T01:20:32.7704623Z","actor":"6f103f4e","eventType":"PlayerVoted","payload":{"voterId":"6f103f4e","targetId":"e103d91d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T01:20:42.2599385Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"e103d91d":4,"__SKIP__":1},"ejectedPlayerId":"e103d91d","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T01:20:42.3447456Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"e103d91d","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T01:20:42.3487415Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["68b3e661","013df611","5b840647","7b8b6408","6f103f4e"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T01:20:42.446273Z","actor":"6f103f4e","eventType":"PlayerLeft","payload":{"clientUuid":"6f103f4e","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T01:20:42.4500442Z","actor":"5b840647","eventType":"PlayerLeft","payload":{"clientUuid":"5b840647","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T01:20:42.452657Z","actor":"013df611","eventType":"PlayerLeft","payload":{"clientUuid":"013df611","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T01:20:42.4551721Z","actor":"7b8b6408","eventType":"PlayerLeft","payload":{"clientUuid":"7b8b6408","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T01:20:42.4576694Z","actor":"68b3e661","eventType":"PlayerLeft","payload":{"clientUuid":"68b3e661","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T01:20:42.4615766Z","actor":"e103d91d","eventType":"HostChanged","payload":{"newHostId":"e103d91d","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T01:20:42.4646279Z","actor":"e103d91d","eventType":"PlayerLeft","payload":{"clientUuid":"e103d91d","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/79b0a3695df748e9/snapshot_15.json b/data/lobbies/79b0a3695df748e9/snapshot_15.json new file mode 100644 index 0000000..803fdb7 --- /dev/null +++ b/data/lobbies/79b0a3695df748e9/snapshot_15.json @@ -0,0 +1,263 @@ +{ + "lobbyId": "79b0a3695df748e9", + "lastEventId": 15, + "timestamp": "2026-01-27T14:09:32.6436672Z", + "checksum": "c5ed7252657435f2394fb45ea57a0a9a55580f67ce1fa47c8d3d57133b8b4ec3", + "phase": "Playing", + "players": [ + { + "clientUuid": "0a2becd5", + "displayName": "Hr\u00E1\u010D663", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:04:32.409501Z", + "lastPositionUpdate": "2026-01-27T14:09:32.251747Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "7ddc8c89", + "displayName": "Hr\u00E1\u010D774", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:04:49.0930502Z", + "lastPositionUpdate": "2026-01-27T14:09:32.1675785Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "7f1e49f6", + "displayName": "Hr\u00E1\u010D409", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:04:50.9443623Z", + "lastPositionUpdate": "2026-01-27T14:09:32.6433769Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "1c0c235a", + "displayName": "Hr\u00E1\u010D643", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:04:52.5855743Z", + "lastPositionUpdate": "2026-01-27T14:09:32.3222919Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.773738, + "lon": 15.0696539 + }, + "type": "Progress", + "durationMs": 7376, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7742687, + "lon": 15.0684062 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739087, + "lon": 15.0680313 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/79b0a3695df748e9/wal_20260127140432.ndjson b/data/lobbies/79b0a3695df748e9/wal_20260127140432.ndjson new file mode 100644 index 0000000..6086b73 --- /dev/null +++ b/data/lobbies/79b0a3695df748e9/wal_20260127140432.ndjson @@ -0,0 +1,22 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T14:04:32.4168803Z","actor":"0a2becd5","eventType":"PlayerJoined","payload":{"clientUuid":"0a2becd5","displayName":"Hr\u00E1\u010D663"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T14:04:49.1137737Z","actor":"7ddc8c89","eventType":"PlayerJoined","payload":{"clientUuid":"7ddc8c89","displayName":"Hr\u00E1\u010D774"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T14:04:50.952119Z","actor":"7f1e49f6","eventType":"PlayerJoined","payload":{"clientUuid":"7f1e49f6","displayName":"Hr\u00E1\u010D409"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T14:04:52.5947667Z","actor":"1c0c235a","eventType":"PlayerJoined","payload":{"clientUuid":"1c0c235a","displayName":"Hr\u00E1\u010D643"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T14:04:59.5487623Z","actor":"0a2becd5","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T14:05:04.1023558Z","actor":"0a2becd5","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":300,"buildings":[[50.7745461,15.068435,50.7745442,15.0684319,50.7745427,15.0684282,50.7745418,15.0684242,50.7745414,15.0684199,50.7745416,15.0684156,50.7745424,15.0684115,50.7745436,15.0684076,50.7745325,15.0684021,50.7745114,15.0683361,50.7745265,15.0682651,50.7745687,15.0682323,50.7745794,15.0682386,50.7745799,15.0682342,50.7745809,15.06823,50.7745825,15.0682262,50.7745845,15.068223,50.7745868,15.0682205,50.7745894,15.0682187,50.7745922,15.0682178,50.7745902,15.0682115,50.7747555,15.0680808,50.7747568,15.0680849,50.7747999,15.0680509,50.7748009,15.068054,50.7748521,15.0680136,50.7748892,15.0681308,50.7748793,15.0681387,50.7749449,15.0683455,50.774878,15.0683975,50.7748685,15.0683671,50.7747463,15.0684635,50.7749105,15.0689829,50.7748218,15.0690522,50.7748401,15.06911,50.7748162,15.0691292,50.7748175,15.0691336,50.7748119,15.069138,50.7748105,15.0691336,50.7747865,15.0691526,50.7747888,15.0691596,50.774743,15.0691962,50.7747199,15.0691237,50.7747243,15.0691202,50.7747121,15.069082,50.7747093,15.0690841,50.7747062,15.0690744,50.774709,15.0690722,50.774697,15.0690349,50.7746942,15.0690371,50.774691,15.0690269,50.7746938,15.0690248,50.7746815,15.0689863,50.7746787,15.0689885,50.7746752,15.0689775,50.774678,15.0689753,50.7746594,15.0689171,50.7746476,15.0689265,50.7746447,15.0689406,50.7746371,15.0689371,50.7746403,15.0689213,50.7746221,15.0688631,50.7746152,15.0688687,50.7746114,15.0688568,50.7746184,15.0688513,50.7746011,15.0687979,50.7745942,15.0688035,50.7745905,15.0687918,50.7745975,15.0687862,50.7745802,15.0687324,50.7745732,15.068738,50.7745695,15.0687266,50.7745766,15.068721,50.7745579,15.0686635,50.7745476,15.068658,50.7745502,15.0686462,50.7745591,15.0686512,50.7745712,15.0686416,50.7745565,15.068596,50.7745853,15.068573,50.7745419,15.0684384,50.7745461,15.068435],[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7737609,15.0756722,50.7733592,15.0758264,50.7733283,15.0756269,50.7734115,15.075595,50.7737306,15.0754725,50.7737609,15.0756722],[50.7728164,15.0743732,50.7728485,15.0745747,50.7725941,15.0746753,50.7725605,15.0746887,50.77243,15.0747403,50.7723979,15.074539,50.7728164,15.0743732],[50.7725313,15.0749147,50.7726529,15.0756781,50.7727128,15.0756542,50.772748,15.0756402,50.7730037,15.0755384,50.7728821,15.0747749,50.7726287,15.0748818,50.7725942,15.0748893,50.7725313,15.0749147],[50.773066,15.0759402,50.7726476,15.076106,50.7726155,15.0759049,50.7727444,15.0758538,50.7727789,15.0758402,50.7730339,15.0757391,50.773066,15.0759402],[50.7730564,15.0742132,50.7730091,15.0742672,50.7729888,15.0743735,50.7729855,15.0744805,50.7730088,15.0745931,50.773075,15.0746995,50.7731352,15.0747229,50.7730564,15.0742132],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.7727444,15.0758538,50.7727789,15.0758402,50.772748,15.0756402,50.7727128,15.0756542,50.7727444,15.0758538],[50.7725942,15.0748893,50.7725605,15.0746887,50.7725941,15.0746753,50.7726287,15.0748818,50.7725942,15.0748893],[50.7730091,15.0742672,50.7729836,15.0743201,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7731352,15.0747229,50.773075,15.0746995,50.7730088,15.0745931,50.7729855,15.0744805,50.7729888,15.0743735,50.7730091,15.0742672],[50.771201,15.0731002,50.7712149,15.0730929,50.7712263,15.0731478,50.7712125,15.073155,50.7712242,15.0732104,50.7711429,15.0732526,50.7711139,15.0731131,50.7711203,15.0731097,50.7711183,15.0731004,50.7711487,15.0730845,50.7711506,15.073094,50.7711949,15.073071,50.771201,15.0731002],[50.7755317,15.0731221,50.7755497,15.0731082,50.7755709,15.0731759,50.7755529,15.0731898,50.7755682,15.0732392,50.7754771,15.07331,50.7754254,15.0731437,50.775516,15.0730717,50.7755317,15.0731221],[50.7758916,15.0731727,50.7759039,15.0731678,50.7758887,15.0730724,50.7759407,15.0730522,50.7759351,15.0730165,50.7759994,15.0729916,50.776005,15.0730275,50.7760455,15.0730118,50.7760655,15.073142,50.7760681,15.0731409,50.7760766,15.0731935,50.7760562,15.0732016,50.7760713,15.0732959,50.7760153,15.0733176,50.7760158,15.073321,50.7760086,15.0733238,50.7760107,15.0733366,50.7759703,15.0733523,50.7759684,15.0733399,50.7759615,15.0733426,50.7759586,15.0733242,50.7759295,15.0733354,50.7759169,15.0732559,50.7759057,15.0732603,50.7759034,15.0732456,50.7758833,15.0732536,50.7758741,15.0731953,50.775894,15.0731874,50.7758916,15.0731727],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7723782,15.0704051,50.7724179,15.0703895,50.7724196,15.0703994,50.7724249,15.0703973,50.7724371,15.0704083,50.7724617,15.0705635,50.7724001,15.0705882,50.7723991,15.0705819,50.7723733,15.0705922,50.7723705,15.0705752,50.772345,15.0705852,50.7723394,15.0705505,50.7722933,15.0705688,50.772276,15.0704604,50.7722947,15.0704531,50.7722899,15.070425,50.7723176,15.0704137,50.7723156,15.0704012,50.7723743,15.0703783,50.7723782,15.0704051],[50.7719392,15.069201,50.7719557,15.0692534,50.7719746,15.0692383,50.7720312,15.0694126,50.7719876,15.0694473,50.7719917,15.0694599,50.7719637,15.0694826,50.7719596,15.06947,50.7719351,15.0694894,50.771918,15.0694372,50.7719013,15.0694507,50.7718988,15.0694431,50.7718971,15.0694444,50.7718821,15.0693984,50.7719006,15.0693834,50.771886,15.0693386,50.7718902,15.0693352,50.7718828,15.0693125,50.7719044,15.0692954,50.7718872,15.0692425,50.7719392,15.069201],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7718969,15.070342,50.7717392,15.0704035,50.771738,15.0703959,50.7717168,15.0703753,50.7717125,15.0703768,50.7717008,15.0703037,50.7717466,15.0702859,50.7717422,15.070258,50.7717129,15.0702695,50.7717107,15.0702632,50.7717123,15.070262,50.7716835,15.0701797,50.7716816,15.0701804,50.7716801,15.0701694,50.7716857,15.0701674,50.7716867,15.0701745,50.7717862,15.0700924,50.7718536,15.0700661,50.7718969,15.070342],[50.7717661,15.0687683,50.7718048,15.0689889,50.7717493,15.0690135,50.7717104,15.0687914,50.7717661,15.0687683],[50.7716331,15.0694814,50.7716347,15.0694898,50.7716504,15.0694825,50.7716563,15.0695143,50.7717084,15.06949,50.7717301,15.0696051,50.7717215,15.069609,50.7717325,15.0696695,50.7716899,15.0696897,50.7716932,15.0697072,50.7716296,15.069737,50.7716288,15.0697331,50.7716091,15.0697428,50.7715967,15.0696765,50.771594,15.0696777,50.7715784,15.069595,50.7715812,15.0695937,50.7715721,15.0695444,50.7716168,15.0695236,50.7716109,15.0694918,50.7716331,15.0694814],[50.7716402,15.0692344,50.7716558,15.0692276,50.7716722,15.0693209,50.7716533,15.0693291,50.7716548,15.0693377,50.7716226,15.0693516,50.771628,15.0693827,50.7715952,15.0693971,50.7715944,15.0693925,50.7715918,15.0693936,50.7715874,15.0693685,50.7715447,15.0693872,50.7715412,15.0693669,50.7715385,15.069368,50.7715321,15.0693464,50.7715307,15.0693234,50.7715333,15.0693223,50.7715294,15.0693002,50.7715342,15.0692984,50.7715244,15.0692429,50.7715304,15.0692257,50.7716309,15.0691819,50.7716402,15.0692344],[50.7720818,15.0698367,50.772105,15.0699079,50.772122,15.0698938,50.772152,15.0699865,50.7721535,15.0699909,50.7721365,15.0700047,50.772137,15.0700063,50.7720541,15.0700728,50.7720501,15.0700601,50.772013,15.0700895,50.7719676,15.0699485,50.7719655,15.06995,50.7719594,15.0699311,50.7719689,15.0699235,50.7719698,15.0699266,50.772043,15.0698679,50.772048,15.0698457,50.7720609,15.0698353,50.7720728,15.0698439,50.7720818,15.0698367],[50.7723238,15.0696814,50.7723396,15.0696894,50.772346,15.0697092,50.7723402,15.0697316,50.7723347,15.069736,50.7723767,15.0698618,50.7723655,15.069871,50.7723664,15.0698737,50.772361,15.0698996,50.7723311,15.0699239,50.7723126,15.0699145,50.7723091,15.0699037,50.7722507,15.0699512,50.7722036,15.0698068,50.7722091,15.0698024,50.7721972,15.0697668,50.7722286,15.0697414,50.7722269,15.0697363,50.7722739,15.0696982,50.77228,15.069717,50.7723238,15.0696814],[50.7721996,15.0690288,50.7722045,15.0690511,50.7722264,15.0690392,50.7722394,15.0690979,50.7722351,15.0691002,50.7722512,15.0691727,50.7722554,15.0691704,50.7722655,15.0691768,50.7722709,15.0692007,50.7722657,15.0692166,50.7722615,15.0692189,50.7722652,15.0692358,50.7722176,15.0692626,50.7722168,15.0692592,50.7721607,15.0692901,50.772145,15.0692197,50.7721235,15.0692315,50.7721122,15.0691806,50.7721337,15.0691688,50.7721118,15.0690705,50.7721576,15.0690452,50.772159,15.0690514,50.7721996,15.0690288],[50.7726999,15.0698343,50.772729,15.0698615,50.7727152,15.0698967,50.7727324,15.0700044,50.7727307,15.0700051,50.7727353,15.0700342,50.7726769,15.0700574,50.7726809,15.0700825,50.772646,15.0700963,50.7726447,15.0700879,50.7726056,15.0701034,50.7726003,15.0700707,50.7725917,15.0700742,50.7725816,15.0700099,50.7725771,15.0700118,50.7725627,15.0699211,50.7725734,15.0699165,50.7725698,15.0698931,50.7726598,15.0698571,50.7726603,15.0698612,50.772695,15.0698471,50.7726999,15.0698343],[50.773142,15.069712,50.773132,15.069731,50.773141,15.069786,50.773051,15.069821,50.773027,15.069671,50.773074,15.069656,50.773066,15.069626,50.773114,15.069608,50.773125,15.069682,50.77314,15.069691,50.773142,15.069712],[50.7727178,15.0695693,50.7726282,15.0696411,50.7726029,15.0695624,50.7726109,15.069556,50.7725855,15.0694771,50.7726289,15.0694425,50.7726328,15.069455,50.7726712,15.0694243,50.7727178,15.0695693],[50.7730417,15.0690918,50.7730463,15.0691046,50.7730429,15.0691219,50.7730551,15.0691603,50.7730628,15.0691543,50.773084,15.0692213,50.7730762,15.069227,50.7730986,15.0693044,50.773047,15.0693451,50.7730505,15.069356,50.7730453,15.0693602,50.7730537,15.0693865,50.7730341,15.0694018,50.7730259,15.0693757,50.7730211,15.0693794,50.7730176,15.0693684,50.7729658,15.0694094,50.7729325,15.0693072,50.7729279,15.069311,50.7729036,15.0692366,50.7729082,15.0692328,50.7728972,15.069199,50.7729328,15.0691702,50.7729299,15.0691614,50.7729809,15.06912,50.7729837,15.0691289,50.7730122,15.0691058,50.7730157,15.0690888,50.773024,15.069082,50.7730247,15.069079,50.7730424,15.0690888,50.7730417,15.0690918],[50.7725168,15.0686991,50.772542,15.0687771,50.7725614,15.0687614,50.7725927,15.0688585,50.77259,15.0688649,50.7725759,15.0688212,50.7725603,15.0688337,50.7725853,15.0689114,50.7725438,15.0689446,50.7725462,15.0689522,50.7725445,15.0689535,50.772553,15.0689798,50.772495,15.0690263,50.7724865,15.069,50.7724849,15.0690013,50.7724824,15.068994,50.7724554,15.0690156,50.7724562,15.0690215,50.7724562,15.0690275,50.7724556,15.0690334,50.7724543,15.069039,50.7724523,15.0690442,50.7724498,15.0690487,50.7724468,15.0690523,50.7724434,15.0690551,50.7724398,15.0690568,50.772436,15.0690574,50.7724322,15.0690569,50.7724285,15.0690553,50.7724251,15.0690526,50.772422,15.069049,50.7724195,15.0690446,50.7724175,15.0690395,50.7724161,15.069034,50.7724154,15.0690281,50.7724154,15.0690221,50.7724161,15.0690162,50.7724175,15.0690106,50.7724195,15.0690055,50.772422,15.0690011,50.7724251,15.0689975,50.7723672,15.0688201,50.7724192,15.068778,50.7724205,15.068782,50.7724717,15.0687406,50.7724704,15.0687366,50.7725168,15.0686991],[50.7728276,15.0686055,50.772848,15.0685892,50.7728637,15.068638,50.7728376,15.0686589,50.7728639,15.0687407,50.7728516,15.0687505,50.7728528,15.0687546,50.7728491,15.0687715,50.7728304,15.0687864,50.7728199,15.0687808,50.7728186,15.0687769,50.7728062,15.0687869,50.7728021,15.0687743,50.7727319,15.0688305,50.7727097,15.0687615,50.7727016,15.0687681,50.7726805,15.0687028,50.7726887,15.0686963,50.7726712,15.0686419,50.7727204,15.0686025,50.7727268,15.0686225,50.7728114,15.0685551,50.7728276,15.0686055],[50.7730904,15.0685326,50.7730997,15.0685612,50.773081,15.0685761,50.7730788,15.0685694,50.7730584,15.0685857,50.7730617,15.0685958,50.773011,15.0686364,50.7730077,15.0686263,50.7729683,15.0686579,50.772935,15.0685549,50.7729655,15.0685304,50.7729481,15.0684762,50.773043,15.0684012,50.7730864,15.0685359,50.7730904,15.0685326],[50.7716696,15.0716616,50.7716897,15.0717914,50.771695,15.0717895,50.7717047,15.0718521,50.7716994,15.0718541,50.77172,15.0719862,50.7716258,15.0720225,50.7716232,15.0720236,50.7715726,15.071699,50.7715753,15.071698,50.7716696,15.0716616],[50.7712498,15.0720491,50.7712521,15.0720466,50.7712738,15.0720937,50.7712715,15.0720961,50.7713111,15.0721816,50.7712362,15.0722677,50.7712131,15.0722177,50.7712099,15.0722215,50.7711808,15.0721587,50.7711841,15.0721549,50.7711611,15.0721053,50.7712362,15.0720195,50.7712498,15.0720491],[50.7709567,15.0716121,50.7709553,15.0716138,50.7709942,15.0716881,50.770979,15.0717075,50.7709802,15.0717096,50.7709646,15.0717295,50.7709657,15.0717317,50.7709483,15.071754,50.7709547,15.0717665,50.7709307,15.0717973,50.7709242,15.0717847,50.7708805,15.0718369,50.7707819,15.0716451,50.770881,15.0715185,50.7708831,15.0715225,50.7708995,15.0715015,50.7709567,15.0716121],[50.77188,15.0705055,50.7719168,15.0707362,50.771912,15.070738,50.7719144,15.0707531,50.7718739,15.0707692,50.7718715,15.0707541,50.7717996,15.0707827,50.7718002,15.0707866,50.7717919,15.0707898,50.7717846,15.0707436,50.771787,15.0707426,50.7717741,15.0706612,50.7717619,15.070666,50.7717533,15.0706117,50.7717636,15.0706076,50.7717609,15.0705907,50.7717972,15.0705759,50.7717916,15.0705415,50.77188,15.0705055],[50.7716314,15.0714165,50.7716475,15.0715199,50.7716527,15.0715178,50.7716625,15.0715804,50.7716572,15.0715825,50.7716696,15.0716616,50.7715753,15.071698,50.7715372,15.0714534,50.7716314,15.0714165],[50.7715727,15.0711217,50.7715782,15.0711196,50.7715878,15.071183,50.7715824,15.0711849,50.7716025,15.0713169,50.7715079,15.071353,50.7714576,15.0710256,50.7715525,15.0709895,50.7715727,15.0711217],[50.7711492,15.0726848,50.771164,15.0726802,50.7711722,15.0727467,50.7711575,15.0727513,50.7711631,15.0727959,50.7711496,15.0728,50.7711552,15.0728455,50.7710943,15.0728643,50.7710886,15.0728186,50.7710747,15.072823,50.7710594,15.0726997,50.7710664,15.0726827,50.7711459,15.0726582,50.7711492,15.0726848],[50.77172,15.0719862,50.771732,15.0720637,50.7717372,15.0720616,50.7717469,15.0721238,50.7717416,15.0721259,50.7717577,15.0722293,50.7716638,15.0722668,50.7716258,15.0720225,50.77172,15.0719862],[50.7717616,15.0723435,50.77178,15.072462,50.7717849,15.0724602,50.7717946,15.0725231,50.7717899,15.0725249,50.7718084,15.0726443,50.7717139,15.0726808,50.7716669,15.0723802,50.7717616,15.0723435],[50.7715212,15.0729113,50.7715246,15.07291,50.7715314,15.0729541,50.7715281,15.0729555,50.7715397,15.0730301,50.7715026,15.0730444,50.7715058,15.0730649,50.7714458,15.0730881,50.7714119,15.0728744,50.7715097,15.0728371,50.7715212,15.0729113],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.7720045,15.0709227,50.772005,15.0709172,50.7720062,15.0709119,50.772008,15.0709071,50.7720104,15.070903,50.7720133,15.0708997,50.7720165,15.0708973,50.77202,15.0708961,50.7720235,15.0708959,50.772027,15.0708969,50.7720391,15.0709096,50.7720867,15.0708928,50.7720994,15.0709764,50.7721537,15.0709559,50.7721671,15.0710455,50.7719941,15.0711106,50.7719814,15.0711234,50.7719683,15.0711194,50.7719597,15.0710846,50.7719494,15.0710158,50.7719544,15.0710139,50.7719442,15.0709464,50.7720045,15.0709227],[50.7721196,15.0713084,50.7721221,15.0713249,50.7721299,15.0713219,50.7721291,15.0713171,50.7721603,15.0713049,50.772182,15.0714453,50.7720991,15.0714775,50.772103,15.0715023,50.7720736,15.0715137,50.7720696,15.0714889,50.7720121,15.0715115,50.7719909,15.071376,50.7721064,15.071331,50.7721039,15.0713145,50.7721196,15.0713084],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7761449,15.0703316,50.7761179,15.0703529,50.7761097,15.0703272,50.7760299,15.0703905,50.7760092,15.0703254,50.7760148,15.070321,50.7759932,15.0702533,50.7760409,15.0702155,50.7760316,15.0701866,50.7760979,15.0701337,50.7761302,15.0702348,50.7761173,15.070245,50.7761449,15.0703316],[50.7760443,15.0710321,50.7760576,15.071075,50.7760591,15.0710737,50.7760831,15.0711496,50.776066,15.0711629,50.7760924,15.071248,50.7760461,15.0712852,50.7760434,15.0712767,50.7760163,15.0712991,50.7760123,15.0713179,50.7759823,15.0713023,50.7759859,15.0712854,50.775964,15.0713026,50.7759458,15.0712452,50.7759573,15.0712362,50.7759333,15.0711603,50.7759433,15.0711525,50.7759323,15.0711179,50.7760102,15.0710566,50.7760108,15.0710586,50.7760443,15.0710321],[50.7751637,15.0704631,50.7751873,15.0704442,50.7752075,15.0705078,50.7751834,15.0705268,50.7752149,15.0706272,50.7751841,15.0706516,50.7751864,15.0706585,50.7751582,15.0706809,50.7751444,15.0706376,50.7751096,15.0706651,50.7750901,15.0706039,50.7750846,15.0706083,50.7750809,15.0705965,50.7750661,15.0706082,50.7750462,15.0705455,50.775061,15.0705338,50.7750569,15.0705212,50.7750624,15.0705168,50.775043,15.0704557,50.7750718,15.0704331,50.7750711,15.070431,50.7751024,15.0704062,50.7751031,15.0704085,50.7751379,15.0703814,50.7751637,15.0704631],[50.775839,15.0705962,50.7758489,15.0706274,50.7757856,15.0706776,50.7757351,15.0705194,50.7758088,15.070461,50.7758023,15.0704406,50.7758279,15.0704204,50.7758748,15.0705681,50.775839,15.0705962],[50.7737764,15.0696257,50.7737483,15.0695369,50.7737403,15.0695433,50.7737122,15.0694542,50.7737043,15.0694607,50.7736754,15.0693688,50.7736791,15.0693655,50.7736681,15.0693307,50.7737285,15.0693317,50.7737608,15.0693064,50.7737573,15.0692958,50.7738589,15.0692155,50.7738904,15.0693154,50.7738824,15.0693216,50.7739105,15.0694104,50.7739025,15.0694166,50.7739306,15.0695055,50.7739226,15.0695117,50.7739502,15.0695993,50.7738119,15.0697078,50.7737843,15.0696195,50.7737764,15.0696257],[50.7735638,15.0690008,50.7737809,15.0688307,50.7738792,15.0691536,50.7738473,15.0691787,50.7738589,15.0692155,50.7737573,15.0692958,50.7737608,15.0693064,50.7737285,15.0693317,50.7736675,15.0693285,50.7735638,15.0690008],[50.7740925,15.0690877,50.7740919,15.0690789,50.7740925,15.0690611,50.7740955,15.069044,50.7741009,15.0690283,50.7741043,15.0690213,50.7741083,15.0690149,50.7741099,15.0690161,50.7741376,15.0689945,50.7741376,15.0689916,50.7741405,15.0689882,50.7741438,15.0689856,50.7741473,15.0689841,50.7741509,15.0689836,50.7741546,15.0689842,50.774158,15.0689858,50.7741613,15.0689885,50.7741642,15.068992,50.7741666,15.0689963,50.7741662,15.0689991,50.7741822,15.0690097,50.7741853,15.069015,50.77419,15.069025,50.7741989,15.0690304,50.7742022,15.0690137,50.7742129,15.0690051,50.7742247,15.0690108,50.7742299,15.0690282,50.774226,15.0690463,50.7742234,15.0690483,50.7742388,15.0690966,50.7742455,15.0690912,50.7742471,15.069096,50.77425,15.0690937,50.7742794,15.0691858,50.7742765,15.0691881,50.7742778,15.0691927,50.7742711,15.0691981,50.7742945,15.0692721,50.7742469,15.0693098,50.774253,15.0693291,50.7742123,15.0693608,50.7742064,15.0693419,50.7741579,15.0693803,50.7741342,15.0693074,50.7741317,15.0693093,50.7740993,15.0692097,50.7741017,15.0692078,50.7740769,15.0691302,50.7740993,15.069112,50.7740943,15.0690882,50.7740925,15.0690877],[50.774568,15.0701178,50.7745736,15.0701133,50.7746048,15.0702115,50.7745992,15.0702159,50.7746189,15.0702782,50.7745738,15.070314,50.7745779,15.0703267,50.7745727,15.0703308,50.7745751,15.0703383,50.7745525,15.0703562,50.7745502,15.0703486,50.7745449,15.0703528,50.7745409,15.0703401,50.7744982,15.0703739,50.7744976,15.0703719,50.7744686,15.0703949,50.7744433,15.0703172,50.7744772,15.07029,50.7744786,15.0702948,50.7744946,15.0702822,50.7744707,15.0702074,50.7744388,15.0702327,50.7744158,15.0701606,50.7745481,15.070055,50.774568,15.0701178],[50.774455,15.0696524,50.7744653,15.0696852,50.7744434,15.0697027,50.7744451,15.0697083,50.7744415,15.0697112,50.7744645,15.0697834,50.7744193,15.0698193,50.7744298,15.0698521,50.7744243,15.0698565,50.7744257,15.0698609,50.7743991,15.0698822,50.7743977,15.0698778,50.7743919,15.0698824,50.7743814,15.0698496,50.7743365,15.0698853,50.7742538,15.0696254,50.7742964,15.0695919,50.7742911,15.0695754,50.774334,15.0695415,50.7743393,15.0695579,50.774382,15.0695239,50.774405,15.0695964,50.7744086,15.0695935,50.7744103,15.0695992,50.7744323,15.0695819,50.7744425,15.0696138,50.774445,15.0696122,50.7744477,15.0696115,50.7744504,15.0696116,50.774453,15.0696125,50.7744555,15.0696142,50.7744577,15.0696166,50.7744596,15.0696196,50.7744611,15.0696232,50.7744621,15.0696271,50.7744625,15.0696313,50.7744625,15.0696356,50.7744619,15.0696397,50.7744609,15.0696437,50.7744593,15.0696473,50.7744573,15.0696502,50.774455,15.0696524],[50.7759103,15.0699581,50.7759066,15.069961,50.7758897,15.0699506,50.7758818,15.0699259,50.7758869,15.0698981,50.7758906,15.0698954,50.7758845,15.069876,50.7758918,15.0698704,50.7758705,15.0698027,50.7758901,15.0697873,50.7758894,15.0697847,50.7759593,15.0697301,50.77596,15.0697326,50.77598,15.0697171,50.7760543,15.0699538,50.7760311,15.0699719,50.7760351,15.0699844,50.7760194,15.0699966,50.7760214,15.0700029,50.7759908,15.0700268,50.7759849,15.070008,50.7759448,15.0700393,50.7759236,15.0699717,50.7759163,15.0699775,50.7759103,15.0699581],[50.7755618,15.0695847,50.7754311,15.0696877,50.7753763,15.0695122,50.775415,15.0694824,50.7754142,15.0694798,50.7754681,15.0694379,50.7754688,15.0694404,50.7755073,15.0694106,50.7755618,15.0695847],[50.7757585,15.0702054,50.7757272,15.0702301,50.7757343,15.0702527,50.7757159,15.0702673,50.7757087,15.0702448,50.7756546,15.0702876,50.7756396,15.0702402,50.7756445,15.0702364,50.7756193,15.0701569,50.7756271,15.0701507,50.7756104,15.0700983,50.7756469,15.0700695,50.7756435,15.0700589,50.7756805,15.0700297,50.7756839,15.0700403,50.7757051,15.0700234,50.7757222,15.0700774,50.7757257,15.0700748,50.7757481,15.0701449,50.775741,15.0701504,50.7757585,15.0702054],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7756,15.070556,50.775557,15.070589,50.77557,15.070632,50.775611,15.070598,50.7756,15.070556],[50.7759381,15.0709403,50.7759471,15.0709679,50.7759188,15.0709911,50.77592,15.0709945,50.7758541,15.0710484,50.7758466,15.0710258,50.7758387,15.07102,50.7758338,15.0710051,50.7758334,15.0709853,50.7758282,15.0709695,50.7758497,15.0709518,50.7758277,15.0708853,50.7759452,15.0707891,50.7759829,15.0709036,50.7759381,15.0709403],[50.7755144,15.0714779,50.7755518,15.0715956,50.7755475,15.0715991,50.7755594,15.0716365,50.7755236,15.0716648,50.7755177,15.0716466,50.7754841,15.0716731,50.7754795,15.0716583,50.7754351,15.0716934,50.7754128,15.0716233,50.77541,15.0716256,50.7754073,15.071617,50.7753938,15.0716276,50.7753769,15.0715747,50.7753905,15.0715639,50.7753877,15.0715551,50.7753905,15.0715529,50.7753684,15.0714836,50.7754103,15.0714505,50.7754072,15.0714409,50.775441,15.0714141,50.7754441,15.0714238,50.7754838,15.0713932,50.7755115,15.0714802,50.7755144,15.0714779],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.775303,15.0708614,50.7753184,15.0709103,50.7753202,15.070909,50.7753624,15.0710422,50.7753529,15.0710495,50.7753654,15.0710889,50.7753131,15.0711301,50.7753107,15.0711226,50.7752656,15.071158,50.7752449,15.0710924,50.7752362,15.071099,50.7752326,15.0710873,50.7752269,15.0710917,50.775217,15.0710861,50.7752073,15.0710557,50.7752106,15.0710399,50.7752162,15.0710354,50.7752124,15.0710236,50.775221,15.071017,50.7752003,15.0709515,50.7752454,15.070916,50.7752431,15.0709085,50.775303,15.0708614],[50.7752185,15.0721634,50.7752173,15.0721699,50.7752377,15.0722341,50.7752458,15.0722278,50.7752745,15.0723183,50.7752722,15.0723202,50.7752824,15.0723534,50.7752432,15.0723848,50.775244,15.0723872,50.775166,15.0724485,50.7751263,15.0723232,50.7751352,15.0723161,50.7751014,15.0722114,50.7751542,15.0721689,50.7751574,15.0721791,50.7751886,15.0721541,50.7751895,15.0721481,50.7752005,15.0721393,50.775213,15.0721462,50.7752185,15.0721634],[50.7753236,15.072471,50.7753318,15.0724972,50.7753303,15.0724983,50.775344,15.0725419,50.7753489,15.072538,50.7753534,15.0725525,50.7753715,15.0725383,50.7753897,15.0725948,50.7753714,15.0726089,50.7753762,15.0726237,50.7753711,15.0726277,50.7753867,15.0726751,50.7752966,15.0727459,50.7752578,15.0726231,50.7752331,15.0725457,50.7752581,15.0725259,50.7752549,15.0725159,50.7753138,15.0724655,50.7753236,15.072471],[50.7754147,15.0727618,50.7754356,15.0728252,50.7754517,15.0728119,50.775474,15.0728795,50.7754576,15.0728929,50.7754817,15.0729652,50.7753703,15.0730554,50.7753603,15.073049,50.7753585,15.0730433,50.7753281,15.0730694,50.7753066,15.0730632,50.7752957,15.0730318,50.7753049,15.0730012,50.7752933,15.0729659,50.7753299,15.072936,50.7753148,15.0728901,50.7752913,15.0729095,50.7752681,15.0728393,50.7754049,15.0727269,50.7754161,15.0727608,50.7754147,15.0727618],[50.7758491,15.0725117,50.7759179,15.0727317,50.7758831,15.0727588,50.7758874,15.0727725,50.7758528,15.0727995,50.7758488,15.0727867,50.7758012,15.0728239,50.7758001,15.0728205,50.7757819,15.0728346,50.7757632,15.0727737,50.7757821,15.0727588,50.7757446,15.0726397,50.7757373,15.0726453,50.7757152,15.0725743,50.775768,15.0725333,50.7757642,15.0725208,50.7758156,15.0724807,50.7758299,15.0725266,50.7758491,15.0725117],[50.7757385,15.07206,50.7757616,15.0721328,50.7757632,15.0721316,50.7757897,15.0722151,50.7757422,15.0722534,50.7757469,15.0722678,50.7757104,15.0722973,50.7757057,15.0722826,50.7756555,15.072323,50.7756326,15.0722507,50.7756025,15.0722726,50.775573,15.0721801,50.7756022,15.0721554,50.7755793,15.0720833,50.7756277,15.0720443,50.7756266,15.0720408,50.7756313,15.0720192,50.7756559,15.0719993,50.7756699,15.072006,50.775671,15.0720094,50.7757135,15.0719752,50.7757401,15.0720588,50.7757385,15.07206],[50.7761693,15.0715,50.7762341,15.071702,50.7761378,15.0717789,50.7760978,15.0716552,50.7760761,15.0716534,50.7760621,15.0716103,50.7760729,15.0715776,50.7761159,15.071543,50.7761102,15.0715254,50.776135,15.0715054,50.7761408,15.0715229,50.7761693,15.0715],[50.7762676,15.0718614,50.7762846,15.0718485,50.7763221,15.0719677,50.7763052,15.071981,50.7763008,15.0720018,50.7762876,15.072012,50.7762727,15.0720045,50.7762343,15.0720346,50.7762194,15.0719873,50.7762138,15.0719917,50.7761911,15.0719254,50.7761926,15.0719244,50.7761735,15.0718696,50.776251,15.0718089,50.7762676,15.0718614],[50.7763811,15.0722623,50.7763783,15.0722648,50.7763753,15.0722665,50.7763721,15.0722673,50.7763688,15.0722674,50.7763657,15.0722665,50.7763626,15.0722649,50.7763598,15.0722625,50.7763294,15.0722865,50.7763195,15.072256,50.7763039,15.0722686,50.7762891,15.0722224,50.7762642,15.0722425,50.7762565,15.0722374,50.7762524,15.0722247,50.7762616,15.0722173,50.7762438,15.0721623,50.7762609,15.0721485,50.7762593,15.0721437,50.7763068,15.0721062,50.776306,15.0721038,50.7763519,15.0720674,50.7763682,15.0721183,50.7763786,15.07211,50.7763994,15.0721757,50.7763733,15.0721963,50.7763799,15.072217,50.7763825,15.0722202,50.7763848,15.0722242,50.7763865,15.0722288,50.7763876,15.0722339,50.7763881,15.0722391,50.7763879,15.0722444,50.7763871,15.0722496,50.7763856,15.0722544,50.7763836,15.0722587,50.7763811,15.0722623],[50.7761902,15.0728079,50.7762457,15.0727639,50.7762824,15.072881,50.7762273,15.0729245,50.7761902,15.0728079],[50.7713076,15.0736031,50.771316,15.0736021,50.7713204,15.0736845,50.7713121,15.0736856,50.7713128,15.0737002,50.7712233,15.0737121,50.7712221,15.0736886,50.7712109,15.0736902,50.7712072,15.0736209,50.7712184,15.0736194,50.7712141,15.07354,50.7713036,15.0735281,50.7713076,15.0736031],[50.7716205,15.0735307,50.7716231,15.0735323,50.7716243,15.0735362,50.7716245,15.0735549,50.7716256,15.073555,50.7716295,15.0735572,50.7716312,15.0735631,50.7716337,15.0737085,50.7716322,15.0737147,50.7716284,15.0737173,50.7715513,15.0737205,50.7715475,15.0737183,50.7715458,15.0737124,50.7715451,15.0736726,50.7715356,15.0736731,50.7715318,15.0736708,50.7715302,15.0736648,50.7715293,15.073616,50.7715307,15.0736098,50.7715345,15.0736072,50.771544,15.0736067,50.7715433,15.073567,50.7715448,15.0735608,50.7715486,15.0735582,50.7715771,15.0735569,50.7715766,15.0735326,50.7716205,15.0735307],[50.7717049,15.0740075,50.7717387,15.0742209,50.7716368,15.0742603,50.7716231,15.0741713,50.7716164,15.0741655,50.7716134,15.0741461,50.7716174,15.0741355,50.7716038,15.0740466,50.7717049,15.0740075],[50.7713128,15.0741365,50.7713483,15.0742015,50.7713595,15.0742004,50.7713739,15.0742263,50.7713713,15.0742454,50.7713894,15.0742795,50.7713384,15.0743479,50.7713338,15.0743394,50.7712982,15.0743872,50.7712259,15.0742531,50.7713128,15.0741365],[50.7760704,15.073696,50.7761098,15.0736807,50.7761323,15.0738207,50.7761353,15.0738195,50.7761405,15.0738231,50.7761473,15.0738658,50.7761446,15.0738745,50.7761411,15.0738758,50.7761589,15.0739866,50.7760742,15.0740191,50.7760675,15.0739757,50.7760242,15.0739925,50.77602,15.0739869,50.775995,15.0738272,50.7759898,15.0738293,50.7759878,15.0738173,50.7759791,15.0738209,50.7759674,15.0737499,50.7759755,15.0737467,50.7759734,15.0737337,50.7760234,15.0737133,50.7760223,15.0737069,50.7760691,15.0736878,50.7760704,15.073696],[50.7747953,15.0734128,50.7749794,15.0734047,50.7749886,15.0739546,50.7748051,15.0739635,50.774805,15.0739561,50.7747954,15.0734185,50.7747953,15.0734128],[50.7756061,15.0736962,50.775624,15.0736888,50.7756265,15.0737042,50.7756439,15.0737121,50.7756486,15.0737412,50.7756359,15.0737616,50.7756382,15.0737763,50.7755857,15.0737997,50.7755912,15.07383,50.7755649,15.0738409,50.7755676,15.0738569,50.7755396,15.0738682,50.775537,15.0738526,50.775514,15.0738621,50.7755186,15.0738892,50.7754923,15.0738998,50.775475,15.073798,50.7754816,15.0737954,50.7754741,15.07375,50.7754838,15.0737452,50.7754647,15.0736345,50.7755874,15.0735825,50.7756061,15.0736962],[50.775309,15.075513,50.775182,15.075528,50.775187,15.075621,50.77522,15.075616,50.775224,15.075639,50.775242,15.075636,50.775252,15.075654,50.77526,15.075636,50.775279,15.075632,50.775277,15.075608,50.775314,15.075607,50.775309,15.075513],[50.7755391,15.0745415,50.7755432,15.0745665,50.7755573,15.0745608,50.775565,15.0746086,50.775551,15.0746143,50.7755601,15.0746696,50.7755334,15.0746799,50.775536,15.0746962,50.7755284,15.0747165,50.775506,15.0747252,50.7754938,15.0747127,50.7754912,15.0746965,50.7754634,15.0747072,50.775442,15.0745792,50.7755391,15.0745415],[50.7750127,15.0741195,50.7750892,15.0741161,50.7750896,15.0741643,50.7751156,15.0741644,50.7751158,15.0742121,50.7751348,15.0742119,50.7751352,15.074264,50.775116,15.0742642,50.7751162,15.074331,50.7750807,15.0743318,50.7750811,15.0743552,50.7749926,15.0743583,50.7749916,15.0741455,50.7750131,15.0741446,50.7750127,15.0741195],[50.7754584,15.0741179,50.7754585,15.0741884,50.7754788,15.0741883,50.775479,15.0742421,50.7754587,15.0742422,50.7754589,15.0743284,50.7754073,15.0743283,50.7753995,15.0743413,50.7753807,15.0743414,50.7753727,15.0743284,50.7753207,15.0743291,50.7753205,15.0742767,50.7753227,15.0742767,50.7753222,15.0741179,50.7754584,15.0741179],[50.7757499,15.0745588,50.775748,15.0745467,50.7756382,15.0745923,50.7756262,15.0745157,50.7756088,15.0745225,50.7756028,15.0744849,50.7755872,15.0743868,50.7756148,15.0743756,50.7756929,15.0743439,50.7756903,15.0743282,50.7757124,15.0743191,50.7757144,15.074331,50.7757963,15.0742976,50.7758325,15.074524,50.7757499,15.0745588],[50.7761514,15.0735358,50.7761605,15.07359,50.776117,15.0736079,50.7761053,15.0735374,50.7760911,15.0735434,50.7760774,15.0734599,50.7761436,15.0734327,50.7761601,15.0735321,50.7761514,15.0735358],[50.7724145,15.0739846,50.7723917,15.0739931,50.7723939,15.0740069,50.7723162,15.0740362,50.7723103,15.0739967,50.7723059,15.0739983,50.772305,15.0739927,50.7723012,15.0739934,50.7722973,15.0739931,50.7722936,15.0739918,50.7722901,15.0739895,50.7722868,15.0739863,50.772284,15.0739822,50.7722816,15.0739775,50.7722798,15.0739721,50.7722786,15.0739664,50.7722781,15.0739604,50.7722782,15.0739544,50.7722789,15.0739485,50.7722803,15.0739428,50.7722823,15.0739377,50.7722848,15.0739331,50.7722877,15.0739293,50.7722911,15.0739263,50.7722947,15.0739243,50.7722937,15.0739182,50.7723984,15.0738786,50.7724145,15.0739846],[50.7731071,15.0682394,50.7730959,15.0682022,50.7731431,15.0681668,50.7731543,15.0682039,50.7731071,15.0682394],[50.7731289,15.0683117,50.773118,15.0682758,50.7731653,15.0682403,50.7731762,15.0682763,50.7731289,15.0683117],[50.7731313,15.0681276,50.7731431,15.0681668,50.7730959,15.0682022,50.7730841,15.068163,50.7731313,15.0681276],[50.7735348,15.0677797,50.7735711,15.0677507,50.7735139,15.0675722,50.7735064,15.0675783,50.7734664,15.0674564,50.7735423,15.0673948,50.7736022,15.0673463,50.7736133,15.0673812,50.7736597,15.0673442,50.7736877,15.0674316,50.7736853,15.0674335,50.7737682,15.0676928,50.7737758,15.0676867,50.7737767,15.0676895,50.7737949,15.0676752,50.7738706,15.0679124,50.7738526,15.0679269,50.7738534,15.0679298,50.773727,15.0680312,50.7737263,15.0680292,50.7735617,15.0681612,50.7735624,15.0681632,50.7735343,15.0681858,50.7735224,15.0681489,50.77351,15.0681545,50.773497,15.0681559,50.7734842,15.0681529,50.773478,15.0681498,50.7734665,15.0681406,50.7734612,15.0681346,50.7734521,15.0681201,50.7734451,15.0681029,50.7734424,15.0680934,50.7734391,15.0680735,50.7734386,15.068053,50.7734407,15.0680327,50.7734456,15.0680135,50.7734528,15.0679964,50.7734572,15.0679888,50.7734675,15.0679761,50.773455,15.0679372,50.7734582,15.0679378,50.7734233,15.0678292,50.7734209,15.0678311,50.7733708,15.0676757,50.7734764,15.0675917,50.7734987,15.0676613,50.7735164,15.0677162,50.7735267,15.0677481,50.773525,15.0677495,50.7735348,15.0677797],[50.7731762,15.0682763,50.7731883,15.0683165,50.773141,15.068352,50.7731289,15.0683117,50.7731762,15.0682763],[50.772921,15.0684145,50.7728692,15.0684574,50.7728547,15.0684114,50.7729068,15.0683676,50.772921,15.0684145],[50.7731543,15.0682039,50.7731653,15.0682403,50.773118,15.0682758,50.7731071,15.0682394,50.7731543,15.0682039],[50.7730214,15.0678406,50.773038,15.0678928,50.7730425,15.0678895,50.7730467,15.0679029,50.7730492,15.0679008,50.7730613,15.0679082,50.7730686,15.0679308,50.7730653,15.0679505,50.7730627,15.0679525,50.7730828,15.0680144,50.7730878,15.0680103,50.7730928,15.068026,50.7730828,15.0680345,50.7730802,15.0680268,50.7729788,15.0681075,50.7729192,15.0679237,50.7730214,15.0678406],[50.7747302,15.0764443,50.7741683,15.0766539,50.7740729,15.0760161,50.7746138,15.0758877,50.7747302,15.0764443],[50.7714067,15.0733041,50.7713938,15.0732216,50.7714225,15.0732102,50.7714354,15.0732931,50.7714067,15.0733041],[50.7714366,15.0722058,50.7714318,15.0721574,50.7714912,15.0721426,50.771496,15.0721916,50.7714366,15.0722058],[50.7713522,15.0715081,50.7713625,15.071504,50.7713693,15.0715473,50.771359,15.0715514,50.771373,15.0716401,50.7712809,15.0716768,50.771217,15.0712737,50.7712147,15.0712746,50.7711916,15.0711282,50.7712885,15.0710901,50.7713116,15.0712365,50.7713094,15.0712373,50.7713522,15.0715081],[50.7721604,15.0685744,50.7721066,15.0686022,50.7720972,15.0685567,50.7721509,15.0685289,50.7721604,15.0685744],[50.7716475,15.0731502,50.7716417,15.0731036,50.7716995,15.073085,50.7717056,15.0731318,50.7716475,15.0731502],[50.7715362,15.074508,50.7714841,15.0745663,50.7714669,15.0745277,50.7715191,15.0744696,50.7715362,15.074508],[50.7721886,15.0687103,50.7721347,15.0687379,50.7721255,15.0686934,50.7721793,15.0686656,50.7721886,15.0687103],[50.7711855,15.0717476,50.7712264,15.0718064,50.7712054,15.0718404,50.7711652,15.0717823,50.7711855,15.0717476],[50.771427,15.0721105,50.7714223,15.072063,50.7714819,15.072048,50.7714867,15.0720956,50.771427,15.0721105],[50.7711851,15.0718737,50.7711644,15.0719073,50.7711247,15.0718509,50.7711454,15.0718163,50.7711851,15.0718737],[50.7717663,15.0743958,50.7717479,15.0744346,50.7717256,15.0744054,50.7717005,15.0743787,50.7717188,15.07434,50.7717663,15.0743958],[50.7710011,15.0708314,50.7710056,15.0708508,50.7709923,15.0708585,50.7709984,15.070885,50.7710033,15.0708821,50.7710356,15.0710212,50.771033,15.0710303,50.7710108,15.0710431,50.7710119,15.071048,50.7709883,15.0710617,50.7709871,15.0710568,50.7709408,15.0710836,50.7708967,15.0708915,50.7709092,15.0708844,50.7710011,15.0708314],[50.7721982,15.0687566,50.7721444,15.0687843,50.7721347,15.0687379,50.7721886,15.0687103,50.7721982,15.0687566],[50.771991,15.073823,50.771874,15.073869,50.771865,15.073804,50.771851,15.073795,50.771846,15.073764,50.771855,15.073748,50.771845,15.073684,50.771961,15.073639,50.771991,15.073823],[50.7716543,15.0744827,50.7716366,15.0745273,50.7715974,15.074489,50.771615,15.0744442,50.7716543,15.0744827],[50.772116,15.0686476,50.7721698,15.06862,50.7721793,15.0686656,50.7721255,15.0686934,50.772116,15.0686476],[50.7717393,15.0742965,50.7717867,15.0743527,50.7717663,15.0743958,50.7717188,15.07434,50.7717393,15.0742965],[50.7712048,15.0717142,50.7712468,15.071773,50.7712264,15.0718064,50.7711855,15.0717476,50.7712048,15.0717142],[50.7721539,15.0688303,50.7721444,15.0687843,50.7721982,15.0687566,50.7722077,15.0688026,50.7721539,15.0688303],[50.7718387,15.072858,50.7718477,15.0729148,50.7718628,15.0729094,50.7718816,15.0730345,50.7718661,15.0730402,50.7718669,15.0730458,50.771816,15.0730647,50.7718181,15.073078,50.7717915,15.073088,50.7717899,15.073077,50.7717665,15.0730857,50.7717519,15.0729862,50.7717292,15.072994,50.7717152,15.0728992,50.7717449,15.0728885,50.7717455,15.0728925,50.7717936,15.0728747,50.7717936,15.0728685,50.7717943,15.0728623,50.7717956,15.0728565,50.7717977,15.0728511,50.7718003,15.0728464,50.7718033,15.0728426,50.7718068,15.0728396,50.7718106,15.0728377,50.7718145,15.0728368,50.7718184,15.072837,50.7718223,15.0728383,50.7718259,15.0728407,50.7718293,15.0728441,50.7718321,15.0728483,50.7718345,15.0728533,50.7718362,15.0728589,50.7718387,15.072858],[50.7715191,15.0744696,50.7714669,15.0745277,50.7714493,15.0744884,50.7715014,15.0744303,50.7715191,15.0744696],[50.771653,15.0731932,50.7717099,15.073176,50.7717102,15.0731779,50.7717114,15.0731775,50.7717056,15.0731318,50.7716475,15.0731502,50.771653,15.0731932],[50.7721698,15.06862,50.772116,15.0686476,50.7721066,15.0686022,50.7721604,15.0685744,50.7721698,15.06862],[50.7711454,15.0718163,50.7711652,15.0717823,50.7712054,15.0718404,50.7711851,15.0718737,50.7711454,15.0718163],[50.7714318,15.0721574,50.771427,15.0721105,50.7714867,15.0720956,50.7714912,15.0721426,50.7714318,15.0721574],[50.7714223,15.072063,50.7714175,15.0720145,50.7714771,15.0719998,50.7714819,15.072048,50.7714223,15.072063],[50.77456,15.0753452,50.7745574,15.075182,50.774801,15.075172,50.7748045,15.0753354,50.77456,15.0753452],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7751209,15.0744752,50.7751478,15.0744737,50.7751503,15.0745609,50.7751226,15.0745621,50.7751209,15.0744752],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7723625,15.0735165,50.7723669,15.073546,50.772422,15.0735251,50.7724486,15.0736994,50.772353,15.0737357,50.7723564,15.0737577,50.7723084,15.0737759,50.772305,15.0737538,50.7722439,15.0737771,50.7722173,15.073603,50.7723198,15.073564,50.7723153,15.0735343,50.7723625,15.0735165],[50.7720487,15.0718492,50.7720888,15.0718336,50.772094,15.0718652,50.7721081,15.0718597,50.7721123,15.0718876,50.7721144,15.0718868,50.7721282,15.0719749,50.7720491,15.0720053,50.7720577,15.0720612,50.7719949,15.0720857,50.7719839,15.0720149,50.7719743,15.0720185,50.7719635,15.0719491,50.7719731,15.0719452,50.7719647,15.071882,50.7720011,15.0718676,50.7719989,15.0718523,50.7720465,15.0718342,50.7720487,15.0718492],[50.7712476,15.0692965,50.7712761,15.0692791,50.7713173,15.0694147,50.771307,15.0694223,50.7713295,15.0695602,50.7713445,15.0695539,50.7713701,15.0697102,50.771366,15.0697119,50.7714043,15.0699461,50.7714153,15.0699419,50.7714252,15.0700032,50.7714311,15.0700007,50.7714491,15.0700977,50.7714541,15.0701415,50.7714482,15.070144,50.7714583,15.0702057,50.7714473,15.0702102,50.7714855,15.0704448,50.7714907,15.0704428,50.7715161,15.070596,50.7712976,15.0706829,50.7712988,15.0706906,50.7711216,15.0707627,50.7711203,15.0707545,50.771099,15.0707633,50.7710741,15.0706092,50.7710955,15.0706006,50.7710942,15.0705919,50.7712716,15.0705207,50.771273,15.0705296,50.7713877,15.0704824,50.7713538,15.0702735,50.7713409,15.0702788,50.7713369,15.0702548,50.7712895,15.070274,50.7712792,15.0702102,50.7712747,15.0702121,50.7712524,15.0700748,50.7712569,15.0700731,50.7712464,15.0700087,50.7713067,15.0699839,50.7712253,15.0694831,50.7711747,15.0695219,50.7711325,15.0693826,50.7711435,15.0693743,50.7711859,15.0693426,50.7711782,15.069317,50.771179,15.0693164,50.7712398,15.0692707,50.7712476,15.0692965],[50.772063,15.074283,50.771966,15.074318,50.771936,15.074119,50.772033,15.074081,50.772063,15.074283],[50.772139,15.074775,50.772041,15.074813,50.771993,15.074494,50.77209,15.074456,50.772139,15.074775],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7719259,15.0733898,50.7719361,15.0734576,50.7719335,15.0734586,50.7719372,15.0734834,50.7719073,15.0734946,50.7719036,15.0734698,50.7718392,15.073494,50.7718229,15.0733859,50.771799,15.0733947,50.7717888,15.0733272,50.7718127,15.0733182,50.771811,15.0733065,50.7718212,15.0733028,50.7718273,15.0732874,50.7718486,15.0732793,50.7718585,15.0732887,50.7719079,15.0732703,50.771918,15.0733378,50.7719208,15.0733367,50.7719287,15.0733887,50.7719259,15.0733898],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7751757,15.069743,50.7751839,15.0697366,50.7751654,15.0696776,50.7752004,15.0696503,50.7751982,15.0696435,50.7752493,15.0696041,50.7752513,15.0696105,50.7752848,15.0695843,50.7753064,15.0696531,50.7753108,15.0696496,50.7753404,15.0697437,50.775303,15.0697728,50.7753063,15.0697832,50.7752112,15.0698558,50.7751757,15.069743],[50.7749457,15.0698497,50.7749612,15.0698372,50.7749808,15.0698217,50.7750269,15.0699657,50.7750048,15.0699833,50.7750345,15.0700761,50.7749444,15.0701478,50.7749133,15.0700514,50.7749097,15.0700544,50.7748863,15.0699812,50.7748899,15.0699783,50.7748765,15.0699369,50.7748647,15.069931,50.7748729,15.0698913,50.7748852,15.0698978,50.7748909,15.0698934,50.7748799,15.0698582,50.7749345,15.0698148,50.7749357,15.0698185,50.7749457,15.0698497],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7754802,15.0700034,50.7754568,15.0699224,50.7755078,15.0698841,50.7755318,15.0699644,50.7754802,15.0700034],[50.7755729,15.0698217,50.7756268,15.0697811,50.7756388,15.0698203,50.775585,15.0698618,50.7755729,15.0698217],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7755464,15.0697349,50.7756002,15.0696945,50.7756135,15.0697378,50.7755597,15.0697782,50.7755464,15.0697349],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7755729,15.0698217,50.7755597,15.0697782,50.7756135,15.0697378,50.7756268,15.0697811,50.7755729,15.0698217],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7750917,15.0740684,50.7750446,15.0740687,50.7750446,15.0740646,50.7750446,15.0740255,50.7750914,15.0740253,50.7750916,15.0740637,50.7750917,15.0740684],[50.7752282,15.0698968,50.7752685,15.0698625,50.7752711,15.0698604,50.7752867,15.0699091,50.7752413,15.0699506,50.775225,15.0698993,50.7752282,15.0698968],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7749603,15.0691012,50.7749613,15.0691044,50.7749163,15.0691397,50.7749153,15.0691365,50.7748616,15.0691785,50.7748401,15.06911,50.7748218,15.0690522,50.7749105,15.0689829,50.7749733,15.0689339,50.775014,15.0690592,50.7749603,15.0691012],[50.7739711,15.0761319,50.7738446,15.0761819,50.7738343,15.0761154,50.7738088,15.0761255,50.7737169,15.0761618,50.7737224,15.0761963,50.7737301,15.0762455,50.7737604,15.0764368,50.773554,15.076518,50.7735537,15.0765142,50.7735481,15.076517,50.7735787,15.0767148,50.7735348,15.0767379,50.7734895,15.0767618,50.773491,15.0767745,50.7734697,15.076781,50.7734678,15.0767661,50.7734205,15.0767737,50.7733798,15.0767736,50.7733487,15.0767676,50.7733468,15.0767826,50.7733257,15.076777,50.7733276,15.0767626,50.7732819,15.0767419,50.7732389,15.0767224,50.7731961,15.0767112,50.7731617,15.0764947,50.7731586,15.076475,50.7731079,15.0764948,50.7730816,15.0765051,50.7730143,15.0765314,50.7728039,15.0766136,50.7728003,15.076615,50.7727861,15.0765238,50.7727185,15.0765508,50.7726806,15.0763094,50.7731032,15.0761443,50.773116,15.0761393,50.7731777,15.0761152,50.7737966,15.0758735,50.7738242,15.0760505,50.7739191,15.076014,50.7739532,15.0760867,50.7739711,15.0761319],[50.7761513,15.0730588,50.7761396,15.073011,50.7761923,15.0729796,50.7762038,15.073027,50.7761513,15.0730588],[50.7722268,15.0702958,50.7721707,15.070313,50.772161,15.0702337,50.7722152,15.0702171,50.7722268,15.0702958],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7761742,15.0731529,50.7762068,15.073133,50.7762157,15.0731699,50.7761833,15.073189,50.7761742,15.0731529],[50.7762038,15.073027,50.7762153,15.0730746,50.7761629,15.0731063,50.7761513,15.0730588,50.7762038,15.073027],[50.7728652,15.0699861,50.7728732,15.0700323,50.7728193,15.0700556,50.7728103,15.0700095,50.7728652,15.0699861],[50.7718716,15.0691948,50.7719229,15.0691532,50.7719392,15.069201,50.7718872,15.0692425,50.7718716,15.0691948],[50.771992,15.070692,50.7720069,15.0707766,50.7719748,15.0707914,50.7719598,15.070706,50.771992,15.070692],[50.7758015,15.0722067,50.7758574,15.0721629,50.7758802,15.0722351,50.7758243,15.0722789,50.7758015,15.0722067],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.776162,15.073267,50.7761779,15.073359,50.7761403,15.0733754,50.7761246,15.0732834,50.776162,15.073267],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7730944,15.0699634,50.7731272,15.0699618,50.7731289,15.0700443,50.7730725,15.0700473,50.773071,15.0699726,50.7730944,15.0699634],[50.7762261,15.0731208,50.7762068,15.073133,50.7761742,15.0731529,50.7761629,15.0731063,50.7762153,15.0730746,50.7762261,15.0731208],[50.7724605,15.0706468,50.7724735,15.0707292,50.7724148,15.070752,50.7724154,15.0707563,50.7724114,15.0707578,50.7723978,15.0706712,50.7724605,15.0706468],[50.7721698,15.0699582,50.7721542,15.0699706,50.7721581,15.0699811,50.772152,15.0699865,50.772122,15.0698938,50.7721531,15.0698664,50.7721612,15.0699006,50.7721698,15.0699582],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7728585,15.0746374,50.7727988,15.0746605,50.7727919,15.0746157,50.7728514,15.0745931,50.7728585,15.0746374],[50.7754474,15.0747899,50.7753918,15.0748091,50.7753852,15.0747609,50.7754407,15.0747417,50.7754474,15.0747899],[50.7730252,15.0756838,50.7730324,15.0757292,50.7729713,15.0757546,50.7729639,15.0757083,50.7730252,15.0756838],[50.7752578,15.0726231,50.7752262,15.0726483,50.7752015,15.0725718,50.7752331,15.0725457,50.7752578,15.0726231],[50.7737,15.0752819,50.7736634,15.0752963,50.773663,15.0752941,50.7736442,15.0753015,50.7736416,15.0752843,50.7735996,15.0753043,50.7735987,15.0753075,50.7735985,15.075311,50.7736003,15.0753246,50.7736,15.0753277,50.7735992,15.0753306,50.773598,15.0753331,50.7735963,15.0753349,50.7735945,15.075336,50.7734819,15.0753758,50.7734802,15.0753737,50.7734789,15.075371,50.7734781,15.0753679,50.7734771,15.0753608,50.7734764,15.075358,50.7734752,15.0753555,50.7734737,15.0753535,50.7734719,15.0753522,50.77347,15.0753517,50.773468,15.075352,50.7734319,15.0753659,50.7734345,15.0753831,50.7734157,15.0753903,50.7734161,15.0753928,50.7733818,15.0754061,50.7733791,15.0753883,50.7732956,15.0754181,50.7731776,15.074665,50.7732038,15.0746549,50.7731964,15.0746074,50.7731802,15.0746137,50.7731624,15.0744996,50.7731784,15.0744933,50.7731707,15.0744438,50.773228,15.0744221,50.7732604,15.0746333,50.7735766,15.0745127,50.7737,15.0752819],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7723274,15.0741104,50.7723162,15.0740362,50.7723939,15.0740069,50.7723948,15.0740127,50.7723877,15.0740153,50.7723914,15.0740399,50.7724625,15.0740131,50.7724722,15.0740768,50.7724569,15.0740826,50.7724654,15.0741383,50.7724262,15.074153,50.7724281,15.0741682,50.7724275,15.0741708,50.7724263,15.0741728,50.7724247,15.074174,50.7723821,15.074188,50.7723808,15.0741861,50.7723801,15.0741835,50.7723782,15.0741712,50.7723345,15.0741875,50.772334,15.074184,50.7723302,15.0741847,50.7723264,15.0741844,50.7723226,15.074183,50.7723191,15.0741807,50.7723158,15.0741774,50.772313,15.0741733,50.7723106,15.0741686,50.7723088,15.0741632,50.7723076,15.0741575,50.7723071,15.0741515,50.7723072,15.0741455,50.7723079,15.0741395,50.7723093,15.0741339,50.7723112,15.0741287,50.7723137,15.0741241,50.7723166,15.0741202,50.77232,15.0741172,50.7723236,15.0741151,50.7723231,15.074112,50.7723274,15.0741104],[50.7756028,15.0744849,50.7754221,15.0745546,50.7755188,15.0742609,50.7755324,15.0741885,50.7755417,15.0741161,50.7755477,15.0740732,50.7757614,15.0739833,50.7757775,15.0740879,50.7756147,15.0741563,50.7755943,15.0742368,50.7756148,15.0743756,50.7755872,15.0743868,50.7756028,15.0744849],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849],[50.7717099,15.073176,50.7717102,15.0731779,50.7717251,15.0732757,50.7716644,15.0732981,50.7716494,15.0731989,50.7716524,15.0731977,50.7716518,15.0731936,50.771653,15.0731932,50.7717099,15.073176],[50.7720571,15.0690614,50.7720871,15.0690447,50.7721037,15.0691176,50.772073,15.0691355,50.7720571,15.0690614]],"buildingTypes":["civic","yes","university","university","university","university","university","university","university","university","university","university","house","residential","residential","yes","yes","residential","residential","residential","civic","yes","residential","yes","residential","residential","residential","residential","yes","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","house","house","residential","house","yes","yes","civic","yes","residential","house","residential","house","residential","garage","house","house","house","yes","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","house","house","garage","residential","house","residential","house","residential","yes","residential","yes","residential","residential","yes","yes","house","residential","garage","garage","garage","civic","garage","garage","garage","residential","university","garage","garage","residential","garage","garage","garage","garage","garage","garage","garage","garage","residential","garage","yes","industrial","garage","garage","garage","garage","residential","garage","garage","garage","garage","garage","garage","civic","yes","garage","residential","residential","residential","school","yes","yes","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","residential","yes","garage","yes","garage","garage","garage","garage","garage","residential","yes","yes","yes","yes","civic","university","garage","garage","garage","yes","garage","garage","garage","garage","garage","garage","garage","industrial","garage","garage","garage","garage","yes","yes","garage","yes","yes","university","university","residential","yes","residential","residential","residential","garage","yes"],"pathways":[[50.7715459,15.0700709,50.771656,15.0699832,50.7723923,15.0693964,50.772695,15.0691552,50.7730954,15.068837,50.7733498,15.0686254,50.7734048,15.06858,50.7740134,15.0680991,50.7740728,15.0680574,50.7740879,15.0680453],[50.7716129,15.0797774,50.7716031,15.0796661,50.7716014,15.0796057,50.7716164,15.0795312,50.7716938,15.0793706,50.771781,15.0792223,50.7718397,15.0790894,50.771856,15.078991,50.7718582,15.078801,50.771778,15.0782997,50.7717808,15.0780215,50.7718767,15.0774542,50.7718859,15.07726,50.7718464,15.0765598,50.7719744,15.0759827,50.7719483,15.0753118,50.7719017,15.0750806,50.7718319,15.0747021,50.7717613,15.0745278,50.77168,15.0744196,50.7715864,15.0743525,50.7714745,15.0742406,50.7714122,15.0741301,50.7713819,15.0740077,50.77137,15.0734118,50.7712652,15.0728422],[50.7711332,15.0714264,50.771033,15.0714142,50.770947,15.0713776,50.7709048,15.071308,50.7708839,15.0712228,50.770714,15.0705472,50.7705945,15.0703433,50.7700624,15.0697128],[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7760072,15.0756735,50.7760409,15.0756266,50.7760694,15.075538,50.7760743,15.0754716,50.7760686,15.0753623,50.7760553,15.0752518,50.7758983,15.0742748],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7765517,15.0723103,50.7762383,15.0712693,50.7755564,15.0691771],[50.7753344,15.071967,50.7753517,15.0719544,50.7753804,15.0719323,50.7762383,15.0712693],[50.7723305,15.0668289,50.7723519,15.0668515,50.7730156,15.0675534,50.7733024,15.0684733],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.773066,15.0759402,50.7730339,15.0757391,50.7730324,15.0757292,50.7730252,15.0756838,50.7730037,15.0755384,50.7728821,15.0747749,50.7728585,15.0746374,50.7728514,15.0745931,50.7728485,15.0745747,50.7728164,15.0743732,50.7727895,15.0742394,50.7728744,15.0742161,50.7729429,15.0741972,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7732287,15.0751189,50.7733416,15.0758426,50.7731038,15.0759268,50.773066,15.0759402],[50.7738165,15.0757322,50.7737777,15.0757478,50.7733563,15.0759168,50.7731154,15.0760135],[50.7711332,15.0714264,50.7711324,15.0711608,50.7711535,15.0710184,50.771202,15.0709222,50.7715808,15.0707311,50.7716437,15.0707084],[50.7723217,15.0755726,50.7721356,15.0752059,50.7720841,15.0752515,50.7719744,15.0759827],[50.7739683,15.076005,50.7743953,15.0758402],[50.7713727,15.0753002,50.7715476,15.0752218,50.7716732,15.0751576,50.7719017,15.0750806],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7723923,15.0693964,50.7723561,15.069224,50.7720111,15.0675782],[50.7753777,15.0758812,50.7753356,15.075838,50.7752499,15.0757503,50.7750927,15.0755892],[50.7717613,15.0745278,50.7717041,15.074659,50.7716732,15.0751576],[50.7747787,15.0675679,50.7743396,15.0679369,50.7741922,15.0680561,50.7743099,15.0684176,50.7743908,15.068679,50.7746381,15.0694786,50.7747499,15.0698458],[50.7749559,15.0692244,50.7750732,15.0695777],[50.7747202,15.0694297,50.7746381,15.0694786],[50.7743949,15.0680923,50.7743396,15.0679369],[50.7750387,15.0683655,50.7748954,15.0684839,50.7751065,15.0690978],[50.7748725,15.0678604,50.7749106,15.0679816,50.7750387,15.0683655,50.7752927,15.0691174,50.7751065,15.0690978,50.7749559,15.0692244,50.7747202,15.0694297,50.7744933,15.0685831],[50.7741211,15.0678243,50.7741688,15.0679773,50.7741922,15.0680561],[50.7743099,15.0684176,50.7744227,15.0683162],[50.7744504,15.0682017,50.7744061,15.0681178],[50.7737778,15.0698608,50.773693,15.0697697,50.7736943,15.0697386,50.7736886,15.0697049,50.773571,15.0693442,50.773531,15.069168,50.7734981,15.0689719,50.7734977,15.0689399,50.7735128,15.0689055,50.7736997,15.0687658],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7726178,15.077,50.7724916,15.0762062,50.7724345,15.0758337,50.772214,15.0743908,50.7718091,15.0717795,50.7717093,15.0711425,50.7716437,15.0707084,50.7715836,15.0703009,50.7715459,15.0700709],[50.7755564,15.0691771,50.7754958,15.0692273,50.7750732,15.0695777,50.7747499,15.0698458,50.7746948,15.0698915,50.7746772,15.0699061],[50.7748971,15.067344,50.7747787,15.0675679,50.7748725,15.0678604,50.7746443,15.0680411,50.7744504,15.0682017,50.7744227,15.0683162,50.7744933,15.0685831],[50.7698151,15.0702249,50.7701993,15.0705427,50.7703241,15.070702,50.7704272,15.0709045,50.7706318,15.0716947,50.7707382,15.0719561,50.7708144,15.0720609,50.7709122,15.0720829,50.77099,15.0720804,50.7710765,15.0721508,50.7711376,15.0722365,50.7711779,15.0723353,50.7712134,15.0725567,50.7712652,15.0728422],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7708295,15.0727163,50.7708974,15.0726385,50.7709568,15.0726063,50.7710348,15.0725607,50.7711349,15.0725367,50.7712134,15.0725567],[50.7731154,15.0760135,50.7726758,15.0762043,50.7726598,15.07625,50.7726589,15.0763089,50.7726931,15.0765293],[50.7726758,15.0762043,50.7726398,15.0761601],[50.7730699,15.0766717,50.7731816,15.0769772,50.7732427,15.0770871,50.7733122,15.0771622,50.7733716,15.0771837,50.7734852,15.077181,50.7735683,15.0771247,50.7736786,15.0770067,50.7737617,15.0768672,50.7738703,15.0767009,50.7739669,15.0765105,50.7740593,15.076363],[50.7759677,15.0742358,50.7759191,15.0742639,50.7758983,15.0742748],[50.7731848,15.0676799,50.7733505,15.0684049],[50.7742114,15.0687462,50.7741565,15.0687932],[50.7741565,15.0687932,50.7738817,15.0690129],[50.7742925,15.0686768,50.774276,15.0686909,50.77425,15.0687132],[50.773693,15.0697697,50.7736867,15.069781,50.7736788,15.0697919,50.7736682,15.0697985,50.7736366,15.069801,50.7736109,15.0697856,50.7735708,15.0697393,50.7735531,15.0696834,50.773415,15.0690544,50.773355,15.0687429,50.7733545,15.0687308,50.7733498,15.0686254],[50.7740766,15.0699582,50.7739846,15.0696453,50.7738817,15.0690129,50.7737793,15.0687387,50.7737347,15.068768,50.7736997,15.0687658],[50.7752927,15.0691174,50.7754958,15.0692273],[50.7733505,15.0684049,50.7733597,15.0684339,50.7734048,15.06858],[50.774493,15.0757921,50.7745456,15.0757636,50.7747488,15.0756533],[50.7747488,15.0756533,50.7748029,15.0756269],[50.7743953,15.0758402,50.774493,15.0757921],[50.7748029,15.0756269,50.774918,15.0756289],[50.7749539,15.0756395,50.7750684,15.0756733],[50.774918,15.0756289,50.7749539,15.0756395],[50.7750684,15.0756733,50.7751112,15.0757077],[50.7712652,15.0728422,50.7713284,15.0727126,50.771394,15.0723563,50.7714013,15.0722316,50.7714013,15.0721689,50.7713909,15.072077,50.7713548,15.0719023,50.7713079,15.0717865,50.771231,15.0716655,50.7711332,15.0714264],[50.7758983,15.0742748,50.7758355,15.0738881,50.7758016,15.0736783,50.7757357,15.0732563,50.7757167,15.0731652,50.7756939,15.0730866,50.7756372,15.0729012,50.7756321,15.0728845,50.7755318,15.0725562,50.7753344,15.071967,50.77503,15.0710052,50.7746772,15.0699061,50.7746685,15.0698764,50.7743147,15.0687414,50.7742925,15.0686768,50.7740879,15.0680453],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731154,15.0760135,50.7731038,15.0759268,50.7728744,15.0742161,50.7728635,15.0741347],[50.7722811,15.0743641,50.7724322,15.0754314,50.7725526,15.076188],[50.7724322,15.0754314,50.7725489,15.0753746],[50.773116,15.0761393,50.7731079,15.0764948],[50.7731154,15.0760135,50.773116,15.0761393],[50.7723561,15.069224,50.7722533,15.0693217,50.7716141,15.0698396,50.7716066,15.0698438,50.7715884,15.069846,50.771572,15.0698333,50.7714947,15.0693786,50.7714275,15.0690023,50.771343,15.068509,50.7712399,15.0679127,50.7711974,15.067676,50.7710865,15.0670589,50.7710358,15.0667769,50.770959,15.0663327,50.770955,15.0662857,50.7709543,15.0659666,50.7709543,15.0658664,50.7709543,15.0657804],[50.7740879,15.0680453,50.7741022,15.068034,50.7741688,15.0679773,50.7748971,15.067344,50.7749488,15.0673038],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7740151,15.0746626,50.7740449,15.0745473,50.7740399,15.0744534],[50.7745456,15.0757636,50.7747511,15.076035,50.7748717,15.0759588,50.7750697,15.0760149,50.7751197,15.0760509,50.7751079,15.0762387,50.7751197,15.0762923,50.7751528,15.0762931],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7706436,15.0731123,50.7707549,15.0730542,50.7708042,15.0729497,50.7708295,15.0727163,50.7708703,15.0725421,50.7709276,15.0723567,50.7709653,15.0722763,50.7710107,15.0722508,50.7710363,15.072237,50.7710744,15.0722581,50.7711063,15.0723038,50.7711779,15.0723353],[50.7714013,15.0722316,50.7713583,15.0722828,50.7713092,15.0723414,50.7712733,15.0723577,50.7712316,15.0723563,50.7711779,15.0723353],[50.7715459,15.0700709,50.7714325,15.0693996,50.7714084,15.0692566,50.771381,15.0692035,50.7713338,15.0691419],[50.7740879,15.0680453,50.7740348,15.0678733,50.7738983,15.0674496,50.7737062,15.066848],[50.7746685,15.0698764,50.7746566,15.0698851,50.7744586,15.0700098,50.7742746,15.0700717,50.7741844,15.0700707],[50.7741844,15.0700707,50.7740766,15.0699582,50.7739733,15.0699259,50.7739407,15.0699098,50.7738653,15.0698945,50.7737778,15.0698608],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7735708,15.0697393,50.7734654,15.0699291],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7749533,15.0728495,50.7749634,15.0730713,50.7749421,15.0732859,50.774974,15.073339,50.7750239,15.0733565,50.7750812,15.0733641,50.7751475,15.0733291,50.7753573,15.0731141,50.7756188,15.0728955,50.7756321,15.0728845],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7744061,15.0681178,50.7743949,15.0680923],[50.7758355,15.0738881,50.7758193,15.0738958,50.7754356,15.0740837,50.7751453,15.0740909],[50.7759677,15.0742358,50.7759482,15.0741626,50.7759349,15.0741106],[50.7759482,15.0741626,50.7761574,15.074072,50.7764013,15.0739591,50.7766238,15.0738318,50.7769233,15.0736595,50.7769673,15.0736341,50.7770198,15.0736163,50.7770968,15.073578,50.7771959,15.0735287,50.7773889,15.0734382,50.7774336,15.0734172,50.7776657,15.0732977,50.7776906,15.0732844,50.7777965,15.0732221,50.7778857,15.0731683,50.7780718,15.073039,50.7780893,15.0730236,50.7782375,15.0728928,50.7782648,15.0728687,50.7783022,15.0728547],[50.7759349,15.0741106,50.7759016,15.074033,50.7757962,15.0733728,50.775742,15.0730658,50.7755817,15.0725688,50.775464,15.0721745],[50.775464,15.0721745,50.7753804,15.0719323,50.7752722,15.0716105,50.7751503,15.0712082,50.7750135,15.0707882,50.7748604,15.0703256,50.774761,15.0699766,50.7747499,15.0698458],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7744933,15.0685831,50.7743908,15.068679,50.7743249,15.068733,50.7743147,15.0687414],[50.77425,15.0687132,50.7742114,15.0687462],[50.7739677,15.0679441,50.7740134,15.0680991,50.7740383,15.0681862],[50.7740383,15.0681862,50.7740631,15.0681925,50.7740809,15.0682072,50.7740978,15.0682479,50.77425,15.0687132],[50.7733024,15.0684733,50.7733597,15.0684339,50.7739677,15.0679441],[50.7733024,15.0684733,50.7733498,15.0686254],[50.7726474,15.0690017,50.773097,15.0686402,50.7733024,15.0684733],[50.7725447,15.0686034,50.7724268,15.0686831,50.7724113,15.0686838,50.772382,15.0686522],[50.7725447,15.0686034,50.7725506,15.0686381,50.7726474,15.0690017],[50.7726225,15.0683118,50.7725431,15.0685027,50.7725373,15.0685595,50.7725447,15.0686034],[50.772695,15.0691552,50.7726474,15.0690017],[50.7723561,15.069224,50.7723988,15.0691799,50.7724206,15.0691778,50.7726474,15.0690017],[50.7715125,15.070326,50.7713687,15.0694249],[50.771643,15.0702755,50.7716341,15.0701891,50.7716346,15.0701449,50.7716439,15.0701084,50.7716616,15.070079,50.7716829,15.0700649,50.7723505,15.0695308,50.7723664,15.0695252,50.7723806,15.0695351,50.772412,15.0695239,50.7724508,15.0695112,50.772449,15.0694747,50.7724552,15.069448,50.7724667,15.069434,50.7730681,15.0689617,50.7730819,15.0689659,50.7731122,15.0689484,50.7731413,15.0689273,50.7731449,15.0688943,50.7731471,15.0688739,50.773156,15.0688606,50.7732918,15.0687624,50.7733002,15.0687603,50.7733078,15.0687631,50.7733158,15.0687624,50.7733545,15.0687308,50.773385,15.0687076,50.7733912,15.0686859,50.7733965,15.0686704,50.7737303,15.0684072,50.7740094,15.0682037,50.7740383,15.0681862],[50.7715125,15.070326,50.7715836,15.0703009,50.771643,15.0702755],[50.7715808,15.0707311,50.7715125,15.070326],[50.7724188,15.0743193,50.7724601,15.0743824,50.772512,15.0744154,50.7725462,15.0744147,50.7727832,15.0743235],[50.771643,15.0702755,50.7716807,15.0705127,50.7718715,15.0717545,50.7720176,15.0727114,50.7721849,15.0737642,50.7722811,15.0743641],[50.7723217,15.0755726,50.7720127,15.0735143,50.771734,15.0717429,50.7715808,15.0707311],[50.7724278,15.0762308,50.7723217,15.0755726],[50.7726398,15.0761601,50.7725526,15.076188],[50.7712426,15.0691399,50.7711978,15.0692242,50.771149,15.0692691,50.7711312,15.0692922,50.771121,15.0693252,50.7711157,15.0693617,50.771117,15.0694094,50.7712551,15.0703681,50.771264,15.0704039,50.7712773,15.0704207,50.7712964,15.0704256,50.7713376,15.070406],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7716141,15.0698396,50.771656,15.0699832,50.7716829,15.0700649],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,4,0,4,3,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,1,0,4,4,5,3,4,3,4,4,0,4,0,0,3,4,1,0,0,4,0,0,4,0,1,1,0,0,1,1,3,3,0,4,0,1,1,0,0,3,0,0,0,0,0,4,3,0,0,5,3,4,0,0,0,4,0,0,0,0,0,4,0,4,4,0,0,1,4,0,0,0,0,3,4,0,0,0,0,3,0,4,4,4,4,0,0,0,0,0,4,0,0,0,1,4,4,0,3],"areas":[[50.7731292,15.0785686,50.7734405,15.0785923,50.7736522,15.0784741,50.7737717,15.0782457,50.7739012,15.0776629,50.7739621,15.0772611,50.7740158,15.076828,50.7740485,15.0764449,50.7740061,15.0763347,50.7735162,15.0768301,50.7731364,15.076758,50.7730747,15.0771622,50.7730764,15.077291,50.7731292,15.0785686],[50.7749496,15.0675477,50.7748309,15.0676228,50.7749293,15.0679231,50.7748682,15.0680009,50.7749751,15.068347,50.7748546,15.068449,50.775048,15.0690684,50.7748733,15.0692107,50.7747495,15.0692188,50.7746341,15.0690041,50.7745154,15.0686582,50.7743543,15.0684329,50.7747698,15.0697579,50.7754941,15.0691624,50.7749496,15.0675477],[50.7739252,15.0690579,50.7737329,15.0684417,50.7740458,15.0682042,50.7742114,15.0687462,50.7742458,15.0688487,50.7739515,15.0690739,50.7739252,15.0690579],[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0,0,0,0],"poIs":[50.77119566363637,15.070085936363636,3,50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77357498000001,15.068754180000003,4,50.77401203333332,15.076621266666667,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.77338352,15.069208979999999,4,50.77362052,15.068302840000001,4,50.77320282,15.06863664,4,50.77347004,15.0691,4,50.77368628,15.06951072,4,50.7737409,15.0690773,0,50.7719988,15.0719208,0,50.7758355,15.0744028,0,50.7748387,15.0688781,3,50.7728491,15.0752552,0,50.773681,15.0692301,0,50.7710655,15.0712995,7,50.7735053,15.0755027,7,50.7726458,15.0751113,1,50.7760294,15.073928,0,50.7731232,15.075444,6,50.7731309,15.0755035,6,50.7731735,15.0755976,6,50.7732104,15.0755042,6,50.7740297,15.0744936,6,50.7723383,15.075738,7,50.7745187,15.0701967,7,50.7742687,15.0684062,7,50.7739087,15.0680313,7,50.773738,15.0696539,7,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.7747665,15.0752581,0,50.7730244,15.0744971,0,50.7738714,15.0698715,7,50.7743404,15.0686409,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T14:05:04.1514739Z","actor":"7f1e49f6","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"7f1e49f6","displayName":"Hr\u00E1\u010D409","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T14:05:04.1577285Z","actor":"1c0c235a","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"1c0c235a","displayName":"Hr\u00E1\u010D643","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T14:05:04.1684151Z","actor":"0a2becd5","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"0a2becd5","displayName":"Hr\u00E1\u010D663","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T14:05:04.1743621Z","actor":"7ddc8c89","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"7ddc8c89","displayName":"Hr\u00E1\u010D774","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T14:05:04.1831461Z","actor":"0a2becd5","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T14:05:04.1889144Z","actor":"0a2becd5","eventType":"RoleAssigned","payload":{"clientUuid":"0a2becd5","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.773738,"lon":15.0696539},"type":"Progress","durationMs":7376,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7742687,"lon":15.0684062},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7741888,"lon":15.0705734},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739087,"lon":15.0680313},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T14:05:04.1934162Z","actor":"7ddc8c89","eventType":"RoleAssigned","payload":{"clientUuid":"7ddc8c89","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.773738,"lon":15.0696539},"type":"Progress","durationMs":7376,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7742687,"lon":15.0684062},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7741888,"lon":15.0705734},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739087,"lon":15.0680313},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T14:05:04.1970506Z","actor":"7f1e49f6","eventType":"RoleAssigned","payload":{"clientUuid":"7f1e49f6","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.773738,"lon":15.0696539},"type":"Progress","durationMs":7376,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7742687,"lon":15.0684062},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7741888,"lon":15.0705734},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739087,"lon":15.0680313},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T14:05:04.2000453Z","actor":"1c0c235a","eventType":"RoleAssigned","payload":{"clientUuid":"1c0c235a","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T14:12:42.4278322Z","actor":"0a2becd5","eventType":"PlayerLeft","payload":{"clientUuid":"0a2becd5","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T14:12:42.4603027Z","actor":"7ddc8c89","eventType":"HostChanged","payload":{"newHostId":"7ddc8c89","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T14:13:24.3757905Z","actor":"7ddc8c89","eventType":"PlayerLeft","payload":{"clientUuid":"7ddc8c89","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T14:13:24.3883683Z","actor":"7f1e49f6","eventType":"HostChanged","payload":{"newHostId":"7f1e49f6","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T14:13:24.3951928Z","actor":"7f1e49f6","eventType":"PlayerLeft","payload":{"clientUuid":"7f1e49f6","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T14:13:24.3984067Z","actor":"1c0c235a","eventType":"HostChanged","payload":{"newHostId":"1c0c235a","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T14:13:24.401243Z","actor":"1c0c235a","eventType":"PlayerLeft","payload":{"clientUuid":"1c0c235a","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/7a8a7f9b901249a0/wal_20260127151252.ndjson b/data/lobbies/7a8a7f9b901249a0/wal_20260127151252.ndjson new file mode 100644 index 0000000..5fd2b56 --- /dev/null +++ b/data/lobbies/7a8a7f9b901249a0/wal_20260127151252.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T15:12:52.7519985Z","actor":"3cf2ce1c","eventType":"PlayerJoined","payload":{"clientUuid":"3cf2ce1c","displayName":"Hr\u00E1\u010D136"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T15:13:00.6693782Z","actor":"fc0eec4c","eventType":"PlayerJoined","payload":{"clientUuid":"fc0eec4c","displayName":"Hr\u00E1\u010D652"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T15:13:04.1190582Z","actor":"4485888a","eventType":"PlayerJoined","payload":{"clientUuid":"4485888a","displayName":"Hr\u00E1\u010D445"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T15:13:32.7601306Z","actor":"3cf2ce1c","eventType":"PlayerLeft","payload":{"clientUuid":"3cf2ce1c","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T15:13:32.7659311Z","actor":"fc0eec4c","eventType":"HostChanged","payload":{"newHostId":"fc0eec4c","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T15:13:43.5179548Z","actor":"4485888a","eventType":"PlayerLeft","payload":{"clientUuid":"4485888a","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T15:13:48.6608984Z","actor":"fc0eec4c","eventType":"PlayerLeft","payload":{"clientUuid":"fc0eec4c","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/823bf22b649642ee/wal_20260127115000.ndjson b/data/lobbies/823bf22b649642ee/wal_20260127115000.ndjson new file mode 100644 index 0000000..0b26e2b --- /dev/null +++ b/data/lobbies/823bf22b649642ee/wal_20260127115000.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T11:50:00.9902815Z","actor":"db7fcd8a","eventType":"PlayerJoined","payload":{"clientUuid":"db7fcd8a","displayName":"Consist1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T11:50:02.075347Z","actor":"db7fcd8a","eventType":"PlayerLeft","payload":{"clientUuid":"db7fcd8a","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/833e71c1c6c64572/snapshot_41.json b/data/lobbies/833e71c1c6c64572/snapshot_41.json new file mode 100644 index 0000000..1b79c5a --- /dev/null +++ b/data/lobbies/833e71c1c6c64572/snapshot_41.json @@ -0,0 +1,390 @@ +{ + "lobbyId": "833e71c1c6c64572", + "lastEventId": 41, + "timestamp": "2026-01-27T19:49:33.8228142Z", + "checksum": "947203265976dbb0c3abb28163f1ad9f4a95832ae6af7af2db9b6cb1a7d35a1f", + "phase": "Playing", + "players": [ + { + "clientUuid": "42abae11", + "displayName": "Hr\u00E1\u010D71", + "position": { + "lat": 50.77368411905394, + "lon": 15.072021509115855 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T19:44:33.6038667Z", + "lastPositionUpdate": "2026-01-27T19:49:33.5853267Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "e43245ed", + "displayName": "Hr\u00E1\u010D656", + "position": { + "lat": 50.773616604900646, + "lon": 15.07330046468691 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T19:46:15.7160727Z", + "lastPositionUpdate": "2026-01-27T19:49:33.5497451Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [ + "task_9" + ], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.7738714, + "lon": 15.0698715 + }, + "type": "Instant" + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.774702, + "lon": 15.0718182 + }, + "type": "Instant" + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant" + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Instant" + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + } + ], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "ac9c6e85", + "displayName": "Hr\u00E1\u010D454", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T19:46:21.0904587Z", + "lastPositionUpdate": "2026-01-27T19:49:33.4002447Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.774702, + "lon": 15.0718182 + }, + "type": "Instant" + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant" + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "Instant" + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739942, + "lon": 15.0706985 + }, + "type": "Instant" + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7740297, + "lon": 15.0744936 + }, + "type": "Instant" + } + ], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant" + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7739942, + "lon": 15.0706985 + }, + "type": "Instant" + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant" + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7746238, + "lon": 15.0716847 + }, + "type": "Instant" + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Instant" + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.7738714, + "lon": 15.0698715 + }, + "type": "Instant" + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.774702, + "lon": 15.0718182 + }, + "type": "Instant" + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant" + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Instant" + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant" + }, + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.774702, + "lon": 15.0718182 + }, + "type": "Instant" + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant" + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "Instant" + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739942, + "lon": 15.0706985 + }, + "type": "Instant" + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7740297, + "lon": 15.0744936 + }, + "type": "Instant" + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 207, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/833e71c1c6c64572/wal_20260127194433.ndjson b/data/lobbies/833e71c1c6c64572/wal_20260127194433.ndjson new file mode 100644 index 0000000..d3130b5 --- /dev/null +++ b/data/lobbies/833e71c1c6c64572/wal_20260127194433.ndjson @@ -0,0 +1,42 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T19:44:33.6347551Z","actor":"42abae11","eventType":"PlayerJoined","payload":{"clientUuid":"42abae11","displayName":"Hr\u00E1\u010D71"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T19:46:09.8549372Z","actor":"a33f52d2","eventType":"PlayerJoined","payload":{"clientUuid":"a33f52d2","displayName":"Hr\u00E1\u010D108"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T19:46:15.7496298Z","actor":"e43245ed","eventType":"PlayerJoined","payload":{"clientUuid":"e43245ed","displayName":"Hr\u00E1\u010D656"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T19:46:21.1233238Z","actor":"ac9c6e85","eventType":"PlayerJoined","payload":{"clientUuid":"ac9c6e85","displayName":"Hr\u00E1\u010D454"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T19:46:27.1176568Z","actor":"42abae11","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T19:46:31.6065517Z","actor":"42abae11","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":207,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7728164,15.0743732,50.7728485,15.0745747,50.7725941,15.0746753,50.7725605,15.0746887,50.77243,15.0747403,50.7723979,15.074539,50.7728164,15.0743732],[50.7725313,15.0749147,50.7726529,15.0756781,50.7727128,15.0756542,50.772748,15.0756402,50.7730037,15.0755384,50.7728821,15.0747749,50.7726287,15.0748818,50.7725942,15.0748893,50.7725313,15.0749147],[50.7730564,15.0742132,50.7730091,15.0742672,50.7729888,15.0743735,50.7729855,15.0744805,50.7730088,15.0745931,50.773075,15.0746995,50.7731352,15.0747229,50.7730564,15.0742132],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.7730091,15.0742672,50.7729836,15.0743201,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7731352,15.0747229,50.773075,15.0746995,50.7730088,15.0745931,50.7729855,15.0744805,50.7729888,15.0743735,50.7730091,15.0742672],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7723782,15.0704051,50.7724179,15.0703895,50.7724196,15.0703994,50.7724249,15.0703973,50.7724371,15.0704083,50.7724617,15.0705635,50.7724001,15.0705882,50.7723991,15.0705819,50.7723733,15.0705922,50.7723705,15.0705752,50.772345,15.0705852,50.7723394,15.0705505,50.7722933,15.0705688,50.772276,15.0704604,50.7722947,15.0704531,50.7722899,15.070425,50.7723176,15.0704137,50.7723156,15.0704012,50.7723743,15.0703783,50.7723782,15.0704051],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7726999,15.0698343,50.772729,15.0698615,50.7727152,15.0698967,50.7727324,15.0700044,50.7727307,15.0700051,50.7727353,15.0700342,50.7726769,15.0700574,50.7726809,15.0700825,50.772646,15.0700963,50.7726447,15.0700879,50.7726056,15.0701034,50.7726003,15.0700707,50.7725917,15.0700742,50.7725816,15.0700099,50.7725771,15.0700118,50.7725627,15.0699211,50.7725734,15.0699165,50.7725698,15.0698931,50.7726598,15.0698571,50.7726603,15.0698612,50.772695,15.0698471,50.7726999,15.0698343],[50.773142,15.069712,50.773132,15.069731,50.773141,15.069786,50.773051,15.069821,50.773027,15.069671,50.773074,15.069656,50.773066,15.069626,50.773114,15.069608,50.773125,15.069682,50.77314,15.069691,50.773142,15.069712],[50.7727178,15.0695693,50.7726282,15.0696411,50.7726029,15.0695624,50.7726109,15.069556,50.7725855,15.0694771,50.7726289,15.0694425,50.7726328,15.069455,50.7726712,15.0694243,50.7727178,15.0695693],[50.7730417,15.0690918,50.7730463,15.0691046,50.7730429,15.0691219,50.7730551,15.0691603,50.7730628,15.0691543,50.773084,15.0692213,50.7730762,15.069227,50.7730986,15.0693044,50.773047,15.0693451,50.7730505,15.069356,50.7730453,15.0693602,50.7730537,15.0693865,50.7730341,15.0694018,50.7730259,15.0693757,50.7730211,15.0693794,50.7730176,15.0693684,50.7729658,15.0694094,50.7729325,15.0693072,50.7729279,15.069311,50.7729036,15.0692366,50.7729082,15.0692328,50.7728972,15.069199,50.7729328,15.0691702,50.7729299,15.0691614,50.7729809,15.06912,50.7729837,15.0691289,50.7730122,15.0691058,50.7730157,15.0690888,50.773024,15.069082,50.7730247,15.069079,50.7730424,15.0690888,50.7730417,15.0690918],[50.77172,15.0719862,50.771732,15.0720637,50.7717372,15.0720616,50.7717469,15.0721238,50.7717416,15.0721259,50.7717577,15.0722293,50.7716638,15.0722668,50.7716258,15.0720225,50.77172,15.0719862],[50.7717616,15.0723435,50.77178,15.072462,50.7717849,15.0724602,50.7717946,15.0725231,50.7717899,15.0725249,50.7718084,15.0726443,50.7717139,15.0726808,50.7716669,15.0723802,50.7717616,15.0723435],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.7720045,15.0709227,50.772005,15.0709172,50.7720062,15.0709119,50.772008,15.0709071,50.7720104,15.070903,50.7720133,15.0708997,50.7720165,15.0708973,50.77202,15.0708961,50.7720235,15.0708959,50.772027,15.0708969,50.7720391,15.0709096,50.7720867,15.0708928,50.7720994,15.0709764,50.7721537,15.0709559,50.7721671,15.0710455,50.7719941,15.0711106,50.7719814,15.0711234,50.7719683,15.0711194,50.7719597,15.0710846,50.7719494,15.0710158,50.7719544,15.0710139,50.7719442,15.0709464,50.7720045,15.0709227],[50.7721196,15.0713084,50.7721221,15.0713249,50.7721299,15.0713219,50.7721291,15.0713171,50.7721603,15.0713049,50.772182,15.0714453,50.7720991,15.0714775,50.772103,15.0715023,50.7720736,15.0715137,50.7720696,15.0714889,50.7720121,15.0715115,50.7719909,15.071376,50.7721064,15.071331,50.7721039,15.0713145,50.7721196,15.0713084],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7751637,15.0704631,50.7751873,15.0704442,50.7752075,15.0705078,50.7751834,15.0705268,50.7752149,15.0706272,50.7751841,15.0706516,50.7751864,15.0706585,50.7751582,15.0706809,50.7751444,15.0706376,50.7751096,15.0706651,50.7750901,15.0706039,50.7750846,15.0706083,50.7750809,15.0705965,50.7750661,15.0706082,50.7750462,15.0705455,50.775061,15.0705338,50.7750569,15.0705212,50.7750624,15.0705168,50.775043,15.0704557,50.7750718,15.0704331,50.7750711,15.070431,50.7751024,15.0704062,50.7751031,15.0704085,50.7751379,15.0703814,50.7751637,15.0704631],[50.7737764,15.0696257,50.7737483,15.0695369,50.7737403,15.0695433,50.7737122,15.0694542,50.7737043,15.0694607,50.7736754,15.0693688,50.7736791,15.0693655,50.7736681,15.0693307,50.7737285,15.0693317,50.7737608,15.0693064,50.7737573,15.0692958,50.7738589,15.0692155,50.7738904,15.0693154,50.7738824,15.0693216,50.7739105,15.0694104,50.7739025,15.0694166,50.7739306,15.0695055,50.7739226,15.0695117,50.7739502,15.0695993,50.7738119,15.0697078,50.7737843,15.0696195,50.7737764,15.0696257],[50.7735638,15.0690008,50.7737809,15.0688307,50.7738792,15.0691536,50.7738473,15.0691787,50.7738589,15.0692155,50.7737573,15.0692958,50.7737608,15.0693064,50.7737285,15.0693317,50.7736675,15.0693285,50.7735638,15.0690008],[50.7740925,15.0690877,50.7740919,15.0690789,50.7740925,15.0690611,50.7740955,15.069044,50.7741009,15.0690283,50.7741043,15.0690213,50.7741083,15.0690149,50.7741099,15.0690161,50.7741376,15.0689945,50.7741376,15.0689916,50.7741405,15.0689882,50.7741438,15.0689856,50.7741473,15.0689841,50.7741509,15.0689836,50.7741546,15.0689842,50.774158,15.0689858,50.7741613,15.0689885,50.7741642,15.068992,50.7741666,15.0689963,50.7741662,15.0689991,50.7741822,15.0690097,50.7741853,15.069015,50.77419,15.069025,50.7741989,15.0690304,50.7742022,15.0690137,50.7742129,15.0690051,50.7742247,15.0690108,50.7742299,15.0690282,50.774226,15.0690463,50.7742234,15.0690483,50.7742388,15.0690966,50.7742455,15.0690912,50.7742471,15.069096,50.77425,15.0690937,50.7742794,15.0691858,50.7742765,15.0691881,50.7742778,15.0691927,50.7742711,15.0691981,50.7742945,15.0692721,50.7742469,15.0693098,50.774253,15.0693291,50.7742123,15.0693608,50.7742064,15.0693419,50.7741579,15.0693803,50.7741342,15.0693074,50.7741317,15.0693093,50.7740993,15.0692097,50.7741017,15.0692078,50.7740769,15.0691302,50.7740993,15.069112,50.7740943,15.0690882,50.7740925,15.0690877],[50.774568,15.0701178,50.7745736,15.0701133,50.7746048,15.0702115,50.7745992,15.0702159,50.7746189,15.0702782,50.7745738,15.070314,50.7745779,15.0703267,50.7745727,15.0703308,50.7745751,15.0703383,50.7745525,15.0703562,50.7745502,15.0703486,50.7745449,15.0703528,50.7745409,15.0703401,50.7744982,15.0703739,50.7744976,15.0703719,50.7744686,15.0703949,50.7744433,15.0703172,50.7744772,15.07029,50.7744786,15.0702948,50.7744946,15.0702822,50.7744707,15.0702074,50.7744388,15.0702327,50.7744158,15.0701606,50.7745481,15.070055,50.774568,15.0701178],[50.774455,15.0696524,50.7744653,15.0696852,50.7744434,15.0697027,50.7744451,15.0697083,50.7744415,15.0697112,50.7744645,15.0697834,50.7744193,15.0698193,50.7744298,15.0698521,50.7744243,15.0698565,50.7744257,15.0698609,50.7743991,15.0698822,50.7743977,15.0698778,50.7743919,15.0698824,50.7743814,15.0698496,50.7743365,15.0698853,50.7742538,15.0696254,50.7742964,15.0695919,50.7742911,15.0695754,50.774334,15.0695415,50.7743393,15.0695579,50.774382,15.0695239,50.774405,15.0695964,50.7744086,15.0695935,50.7744103,15.0695992,50.7744323,15.0695819,50.7744425,15.0696138,50.774445,15.0696122,50.7744477,15.0696115,50.7744504,15.0696116,50.774453,15.0696125,50.7744555,15.0696142,50.7744577,15.0696166,50.7744596,15.0696196,50.7744611,15.0696232,50.7744621,15.0696271,50.7744625,15.0696313,50.7744625,15.0696356,50.7744619,15.0696397,50.7744609,15.0696437,50.7744593,15.0696473,50.7744573,15.0696502,50.774455,15.0696524],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7755144,15.0714779,50.7755518,15.0715956,50.7755475,15.0715991,50.7755594,15.0716365,50.7755236,15.0716648,50.7755177,15.0716466,50.7754841,15.0716731,50.7754795,15.0716583,50.7754351,15.0716934,50.7754128,15.0716233,50.77541,15.0716256,50.7754073,15.071617,50.7753938,15.0716276,50.7753769,15.0715747,50.7753905,15.0715639,50.7753877,15.0715551,50.7753905,15.0715529,50.7753684,15.0714836,50.7754103,15.0714505,50.7754072,15.0714409,50.775441,15.0714141,50.7754441,15.0714238,50.7754838,15.0713932,50.7755115,15.0714802,50.7755144,15.0714779],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.775303,15.0708614,50.7753184,15.0709103,50.7753202,15.070909,50.7753624,15.0710422,50.7753529,15.0710495,50.7753654,15.0710889,50.7753131,15.0711301,50.7753107,15.0711226,50.7752656,15.071158,50.7752449,15.0710924,50.7752362,15.071099,50.7752326,15.0710873,50.7752269,15.0710917,50.775217,15.0710861,50.7752073,15.0710557,50.7752106,15.0710399,50.7752162,15.0710354,50.7752124,15.0710236,50.775221,15.071017,50.7752003,15.0709515,50.7752454,15.070916,50.7752431,15.0709085,50.775303,15.0708614],[50.7752185,15.0721634,50.7752173,15.0721699,50.7752377,15.0722341,50.7752458,15.0722278,50.7752745,15.0723183,50.7752722,15.0723202,50.7752824,15.0723534,50.7752432,15.0723848,50.775244,15.0723872,50.775166,15.0724485,50.7751263,15.0723232,50.7751352,15.0723161,50.7751014,15.0722114,50.7751542,15.0721689,50.7751574,15.0721791,50.7751886,15.0721541,50.7751895,15.0721481,50.7752005,15.0721393,50.775213,15.0721462,50.7752185,15.0721634],[50.7753236,15.072471,50.7753318,15.0724972,50.7753303,15.0724983,50.775344,15.0725419,50.7753489,15.072538,50.7753534,15.0725525,50.7753715,15.0725383,50.7753897,15.0725948,50.7753714,15.0726089,50.7753762,15.0726237,50.7753711,15.0726277,50.7753867,15.0726751,50.7752966,15.0727459,50.7752578,15.0726231,50.7752331,15.0725457,50.7752581,15.0725259,50.7752549,15.0725159,50.7753138,15.0724655,50.7753236,15.072471],[50.7754147,15.0727618,50.7754356,15.0728252,50.7754517,15.0728119,50.775474,15.0728795,50.7754576,15.0728929,50.7754817,15.0729652,50.7753703,15.0730554,50.7753603,15.073049,50.7753585,15.0730433,50.7753281,15.0730694,50.7753066,15.0730632,50.7752957,15.0730318,50.7753049,15.0730012,50.7752933,15.0729659,50.7753299,15.072936,50.7753148,15.0728901,50.7752913,15.0729095,50.7752681,15.0728393,50.7754049,15.0727269,50.7754161,15.0727608,50.7754147,15.0727618],[50.7747953,15.0734128,50.7749794,15.0734047,50.7749886,15.0739546,50.7748051,15.0739635,50.774805,15.0739561,50.7747954,15.0734185,50.7747953,15.0734128],[50.7724145,15.0739846,50.7723917,15.0739931,50.7723939,15.0740069,50.7723162,15.0740362,50.7723103,15.0739967,50.7723059,15.0739983,50.772305,15.0739927,50.7723012,15.0739934,50.7722973,15.0739931,50.7722936,15.0739918,50.7722901,15.0739895,50.7722868,15.0739863,50.772284,15.0739822,50.7722816,15.0739775,50.7722798,15.0739721,50.7722786,15.0739664,50.7722781,15.0739604,50.7722782,15.0739544,50.7722789,15.0739485,50.7722803,15.0739428,50.7722823,15.0739377,50.7722848,15.0739331,50.7722877,15.0739293,50.7722911,15.0739263,50.7722947,15.0739243,50.7722937,15.0739182,50.7723984,15.0738786,50.7724145,15.0739846],[50.7718387,15.072858,50.7718477,15.0729148,50.7718628,15.0729094,50.7718816,15.0730345,50.7718661,15.0730402,50.7718669,15.0730458,50.771816,15.0730647,50.7718181,15.073078,50.7717915,15.073088,50.7717899,15.073077,50.7717665,15.0730857,50.7717519,15.0729862,50.7717292,15.072994,50.7717152,15.0728992,50.7717449,15.0728885,50.7717455,15.0728925,50.7717936,15.0728747,50.7717936,15.0728685,50.7717943,15.0728623,50.7717956,15.0728565,50.7717977,15.0728511,50.7718003,15.0728464,50.7718033,15.0728426,50.7718068,15.0728396,50.7718106,15.0728377,50.7718145,15.0728368,50.7718184,15.072837,50.7718223,15.0728383,50.7718259,15.0728407,50.7718293,15.0728441,50.7718321,15.0728483,50.7718345,15.0728533,50.7718362,15.0728589,50.7718387,15.072858],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7723625,15.0735165,50.7723669,15.073546,50.772422,15.0735251,50.7724486,15.0736994,50.772353,15.0737357,50.7723564,15.0737577,50.7723084,15.0737759,50.772305,15.0737538,50.7722439,15.0737771,50.7722173,15.073603,50.7723198,15.073564,50.7723153,15.0735343,50.7723625,15.0735165],[50.7720487,15.0718492,50.7720888,15.0718336,50.772094,15.0718652,50.7721081,15.0718597,50.7721123,15.0718876,50.7721144,15.0718868,50.7721282,15.0719749,50.7720491,15.0720053,50.7720577,15.0720612,50.7719949,15.0720857,50.7719839,15.0720149,50.7719743,15.0720185,50.7719635,15.0719491,50.7719731,15.0719452,50.7719647,15.071882,50.7720011,15.0718676,50.7719989,15.0718523,50.7720465,15.0718342,50.7720487,15.0718492],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7719259,15.0733898,50.7719361,15.0734576,50.7719335,15.0734586,50.7719372,15.0734834,50.7719073,15.0734946,50.7719036,15.0734698,50.7718392,15.073494,50.7718229,15.0733859,50.771799,15.0733947,50.7717888,15.0733272,50.7718127,15.0733182,50.771811,15.0733065,50.7718212,15.0733028,50.7718273,15.0732874,50.7718486,15.0732793,50.7718585,15.0732887,50.7719079,15.0732703,50.771918,15.0733378,50.7719208,15.0733367,50.7719287,15.0733887,50.7719259,15.0733898],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7749457,15.0698497,50.7749612,15.0698372,50.7749808,15.0698217,50.7750269,15.0699657,50.7750048,15.0699833,50.7750345,15.0700761,50.7749444,15.0701478,50.7749133,15.0700514,50.7749097,15.0700544,50.7748863,15.0699812,50.7748899,15.0699783,50.7748765,15.0699369,50.7748647,15.069931,50.7748729,15.0698913,50.7748852,15.0698978,50.7748909,15.0698934,50.7748799,15.0698582,50.7749345,15.0698148,50.7749357,15.0698185,50.7749457,15.0698497],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7722268,15.0702958,50.7721707,15.070313,50.772161,15.0702337,50.7722152,15.0702171,50.7722268,15.0702958],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7728652,15.0699861,50.7728732,15.0700323,50.7728193,15.0700556,50.7728103,15.0700095,50.7728652,15.0699861],[50.771992,15.070692,50.7720069,15.0707766,50.7719748,15.0707914,50.7719598,15.070706,50.771992,15.070692],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7730944,15.0699634,50.7731272,15.0699618,50.7731289,15.0700443,50.7730725,15.0700473,50.773071,15.0699726,50.7730944,15.0699634],[50.7724605,15.0706468,50.7724735,15.0707292,50.7724148,15.070752,50.7724154,15.0707563,50.7724114,15.0707578,50.7723978,15.0706712,50.7724605,15.0706468],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7728585,15.0746374,50.7727988,15.0746605,50.7727919,15.0746157,50.7728514,15.0745931,50.7728585,15.0746374],[50.7752578,15.0726231,50.7752262,15.0726483,50.7752015,15.0725718,50.7752331,15.0725457,50.7752578,15.0726231],[50.7737,15.0752819,50.7736634,15.0752963,50.773663,15.0752941,50.7736442,15.0753015,50.7736416,15.0752843,50.7735996,15.0753043,50.7735987,15.0753075,50.7735985,15.075311,50.7736003,15.0753246,50.7736,15.0753277,50.7735992,15.0753306,50.773598,15.0753331,50.7735963,15.0753349,50.7735945,15.075336,50.7734819,15.0753758,50.7734802,15.0753737,50.7734789,15.075371,50.7734781,15.0753679,50.7734771,15.0753608,50.7734764,15.075358,50.7734752,15.0753555,50.7734737,15.0753535,50.7734719,15.0753522,50.77347,15.0753517,50.773468,15.075352,50.7734319,15.0753659,50.7734345,15.0753831,50.7734157,15.0753903,50.7734161,15.0753928,50.7733818,15.0754061,50.7733791,15.0753883,50.7732956,15.0754181,50.7731776,15.074665,50.7732038,15.0746549,50.7731964,15.0746074,50.7731802,15.0746137,50.7731624,15.0744996,50.7731784,15.0744933,50.7731707,15.0744438,50.773228,15.0744221,50.7732604,15.0746333,50.7735766,15.0745127,50.7737,15.0752819],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7723274,15.0741104,50.7723162,15.0740362,50.7723939,15.0740069,50.7723948,15.0740127,50.7723877,15.0740153,50.7723914,15.0740399,50.7724625,15.0740131,50.7724722,15.0740768,50.7724569,15.0740826,50.7724654,15.0741383,50.7724262,15.074153,50.7724281,15.0741682,50.7724275,15.0741708,50.7724263,15.0741728,50.7724247,15.074174,50.7723821,15.074188,50.7723808,15.0741861,50.7723801,15.0741835,50.7723782,15.0741712,50.7723345,15.0741875,50.772334,15.074184,50.7723302,15.0741847,50.7723264,15.0741844,50.7723226,15.074183,50.7723191,15.0741807,50.7723158,15.0741774,50.772313,15.0741733,50.7723106,15.0741686,50.7723088,15.0741632,50.7723076,15.0741575,50.7723071,15.0741515,50.7723072,15.0741455,50.7723079,15.0741395,50.7723093,15.0741339,50.7723112,15.0741287,50.7723137,15.0741241,50.7723166,15.0741202,50.77232,15.0741172,50.7723236,15.0741151,50.7723231,15.074112,50.7723274,15.0741104],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","university","university","university","university","yes","yes","residential","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","residential","yes","yes","civic","yes","residential","residential","garage","house","house","house","residential","yes","residential","residential","residential","residential","yes","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","yes","garage","garage","garage","residential","yes","yes","garage","garage","garage","garage","garage","industrial","garage","garage","yes","yes","yes","university","university","residential","residential","residential","residential"],"pathways":[[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7753344,15.071967,50.7753517,15.0719544,50.7753804,15.0719323,50.7762383,15.0712693],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.773066,15.0759402,50.7730339,15.0757391,50.7730324,15.0757292,50.7730252,15.0756838,50.7730037,15.0755384,50.7728821,15.0747749,50.7728585,15.0746374,50.7728514,15.0745931,50.7728485,15.0745747,50.7728164,15.0743732,50.7727895,15.0742394,50.7728744,15.0742161,50.7729429,15.0741972,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7732287,15.0751189,50.7733416,15.0758426,50.7731038,15.0759268,50.773066,15.0759402],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7737778,15.0698608,50.773693,15.0697697,50.7736943,15.0697386,50.7736886,15.0697049,50.773571,15.0693442,50.773531,15.069168,50.7734981,15.0689719,50.7734977,15.0689399,50.7735128,15.0689055,50.7736997,15.0687658],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7726178,15.077,50.7724916,15.0762062,50.7724345,15.0758337,50.772214,15.0743908,50.7718091,15.0717795,50.7717093,15.0711425,50.7716437,15.0707084,50.7715836,15.0703009,50.7715459,15.0700709],[50.7755564,15.0691771,50.7754958,15.0692273,50.7750732,15.0695777,50.7747499,15.0698458,50.7746948,15.0698915,50.7746772,15.0699061],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.773693,15.0697697,50.7736867,15.069781,50.7736788,15.0697919,50.7736682,15.0697985,50.7736366,15.069801,50.7736109,15.0697856,50.7735708,15.0697393,50.7735531,15.0696834,50.773415,15.0690544,50.773355,15.0687429,50.7733545,15.0687308,50.7733498,15.0686254],[50.7740766,15.0699582,50.7739846,15.0696453,50.7738817,15.0690129,50.7737793,15.0687387,50.7737347,15.068768,50.7736997,15.0687658],[50.7758983,15.0742748,50.7758355,15.0738881,50.7758016,15.0736783,50.7757357,15.0732563,50.7757167,15.0731652,50.7756939,15.0730866,50.7756372,15.0729012,50.7756321,15.0728845,50.7755318,15.0725562,50.7753344,15.071967,50.77503,15.0710052,50.7746772,15.0699061,50.7746685,15.0698764,50.7743147,15.0687414,50.7742925,15.0686768,50.7740879,15.0680453],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731154,15.0760135,50.7731038,15.0759268,50.7728744,15.0742161,50.7728635,15.0741347],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7740151,15.0746626,50.7740449,15.0745473,50.7740399,15.0744534],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7746685,15.0698764,50.7746566,15.0698851,50.7744586,15.0700098,50.7742746,15.0700717,50.7741844,15.0700707],[50.7741844,15.0700707,50.7740766,15.0699582,50.7739733,15.0699259,50.7739407,15.0699098,50.7738653,15.0698945,50.7737778,15.0698608],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7735708,15.0697393,50.7734654,15.0699291],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7749533,15.0728495,50.7749634,15.0730713,50.7749421,15.0732859,50.774974,15.073339,50.7750239,15.0733565,50.7750812,15.0733641,50.7751475,15.0733291,50.7753573,15.0731141,50.7756188,15.0728955,50.7756321,15.0728845],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.775464,15.0721745,50.7753804,15.0719323,50.7752722,15.0716105,50.7751503,15.0712082,50.7750135,15.0707882,50.7748604,15.0703256,50.774761,15.0699766,50.7747499,15.0698458],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7724188,15.0743193,50.7724601,15.0743824,50.772512,15.0744154,50.7725462,15.0744147,50.7727832,15.0743235],[50.771643,15.0702755,50.7716807,15.0705127,50.7718715,15.0717545,50.7720176,15.0727114,50.7721849,15.0737642,50.7722811,15.0743641],[50.7723217,15.0755726,50.7720127,15.0735143,50.771734,15.0717429,50.7715808,15.0707311],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,3,0,3,3,4,0,3,3,4,4,5,3,4,4,4,0,3,0,4,0,0,0,0,4,3,4,0,0,0,4,0,0,0,0,0,4,0,4,4,0,0,0,3,4,0,0,4,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.77338352,15.069208979999999,4,50.77347004,15.0691,4,50.77368628,15.06951072,4,50.7719988,15.0719208,0,50.773681,15.0692301,0,50.7740297,15.0744936,6,50.7745187,15.0701967,7,50.773738,15.0696539,7,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.7730244,15.0744971,0,50.7738714,15.0698715,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":207},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T19:46:31.639822Z","actor":"42abae11","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"42abae11","displayName":"Hr\u00E1\u010D71","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T19:46:31.644584Z","actor":"e43245ed","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"e43245ed","displayName":"Hr\u00E1\u010D656","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T19:46:31.6482737Z","actor":"a33f52d2","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a33f52d2","displayName":"Hr\u00E1\u010D108","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T19:46:31.651701Z","actor":"ac9c6e85","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ac9c6e85","displayName":"Hr\u00E1\u010D454","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T19:46:31.6601719Z","actor":"42abae11","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T19:46:31.664785Z","actor":"42abae11","eventType":"RoleAssigned","payload":{"clientUuid":"42abae11","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7740297,"lon":15.0744936},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7739942,"lon":15.0706985},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7738016,"lon":15.0702315},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7748682,"lon":15.0725437},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7741888,"lon":15.0705734},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T19:46:31.6776529Z","actor":"a33f52d2","eventType":"RoleAssigned","payload":{"clientUuid":"a33f52d2","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.7746238,"lon":15.0716847},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.774201,"lon":15.0712028},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.773738,"lon":15.0696539},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7748682,"lon":15.0725437},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T19:46:31.6810954Z","actor":"e43245ed","eventType":"RoleAssigned","payload":{"clientUuid":"e43245ed","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T19:46:31.684221Z","actor":"ac9c6e85","eventType":"RoleAssigned","payload":{"clientUuid":"ac9c6e85","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.774702,"lon":15.0718182},"type":"Instant"},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7739942,"lon":15.0706985},"type":"Instant"},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.7738714,"lon":15.0698715},"type":"Instant"},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.7741494,"lon":15.0703058},"type":"Instant"},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.7744712,"lon":15.0716784},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T19:46:47.6381547Z","actor":"e43245ed","eventType":"PlayerKilled","payload":{"victimId":"42abae11","killerId":"e43245ed","bodyId":"74f6718b","location":{"lat":50.773826300654655,"lon":15.071860013093614}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T19:46:55.6609972Z","actor":"ac9c6e85","eventType":"BodyReported","payload":{"reporterId":"ac9c6e85","bodyId":"74f6718b","victimId":"42abae11"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T19:46:55.6663324Z","actor":"ac9c6e85","eventType":"MeetingStarted","payload":{"meetingId":"749acd63","type":"BodyReport","meetingLocation":{"lat":50.773826300654655,"lon":15.071860013093614},"arrivalDeadline":"2026-01-27T19:47:18.6661092Z","discussionEndTime":"2026-01-27T19:47:30.6661092Z","votingEndTime":"2026-01-27T19:48:00.6661092Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T19:46:55.6817783Z","actor":"ac9c6e85","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"ac9c6e85","meetingId":"749acd63"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T19:46:57.7308895Z","actor":"e43245ed","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"e43245ed","meetingId":"749acd63"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T19:47:01.7176084Z","actor":"a33f52d2","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"a33f52d2","meetingId":"749acd63"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T19:47:35.1875582Z","actor":"a33f52d2","eventType":"PlayerVoted","payload":{"voterId":"a33f52d2","targetId":"e43245ed"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T19:47:36.8029905Z","actor":"ac9c6e85","eventType":"PlayerVoted","payload":{"voterId":"ac9c6e85","targetId":"e43245ed"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T19:47:51.7256558Z","actor":"e43245ed","eventType":"PlayerVoted","payload":{"voterId":"e43245ed","targetId":"a33f52d2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T19:48:00.6835852Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"e43245ed":2,"a33f52d2":1,"__SKIP__":0},"ejectedPlayerId":"e43245ed","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T19:48:00.7275149Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"e43245ed","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T19:48:00.736554Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["42abae11","a33f52d2","ac9c6e85"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T19:48:13.0991094Z","actor":"42abae11","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T19:48:15.6641778Z","actor":"42abae11","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T19:48:20.1578158Z","actor":"42abae11","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":207,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7728164,15.0743732,50.7728485,15.0745747,50.7725941,15.0746753,50.7725605,15.0746887,50.77243,15.0747403,50.7723979,15.074539,50.7728164,15.0743732],[50.7725313,15.0749147,50.7726529,15.0756781,50.7727128,15.0756542,50.772748,15.0756402,50.7730037,15.0755384,50.7728821,15.0747749,50.7726287,15.0748818,50.7725942,15.0748893,50.7725313,15.0749147],[50.7730564,15.0742132,50.7730091,15.0742672,50.7729888,15.0743735,50.7729855,15.0744805,50.7730088,15.0745931,50.773075,15.0746995,50.7731352,15.0747229,50.7730564,15.0742132],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.7730091,15.0742672,50.7729836,15.0743201,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7731352,15.0747229,50.773075,15.0746995,50.7730088,15.0745931,50.7729855,15.0744805,50.7729888,15.0743735,50.7730091,15.0742672],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7723782,15.0704051,50.7724179,15.0703895,50.7724196,15.0703994,50.7724249,15.0703973,50.7724371,15.0704083,50.7724617,15.0705635,50.7724001,15.0705882,50.7723991,15.0705819,50.7723733,15.0705922,50.7723705,15.0705752,50.772345,15.0705852,50.7723394,15.0705505,50.7722933,15.0705688,50.772276,15.0704604,50.7722947,15.0704531,50.7722899,15.070425,50.7723176,15.0704137,50.7723156,15.0704012,50.7723743,15.0703783,50.7723782,15.0704051],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7726999,15.0698343,50.772729,15.0698615,50.7727152,15.0698967,50.7727324,15.0700044,50.7727307,15.0700051,50.7727353,15.0700342,50.7726769,15.0700574,50.7726809,15.0700825,50.772646,15.0700963,50.7726447,15.0700879,50.7726056,15.0701034,50.7726003,15.0700707,50.7725917,15.0700742,50.7725816,15.0700099,50.7725771,15.0700118,50.7725627,15.0699211,50.7725734,15.0699165,50.7725698,15.0698931,50.7726598,15.0698571,50.7726603,15.0698612,50.772695,15.0698471,50.7726999,15.0698343],[50.773142,15.069712,50.773132,15.069731,50.773141,15.069786,50.773051,15.069821,50.773027,15.069671,50.773074,15.069656,50.773066,15.069626,50.773114,15.069608,50.773125,15.069682,50.77314,15.069691,50.773142,15.069712],[50.7727178,15.0695693,50.7726282,15.0696411,50.7726029,15.0695624,50.7726109,15.069556,50.7725855,15.0694771,50.7726289,15.0694425,50.7726328,15.069455,50.7726712,15.0694243,50.7727178,15.0695693],[50.7730417,15.0690918,50.7730463,15.0691046,50.7730429,15.0691219,50.7730551,15.0691603,50.7730628,15.0691543,50.773084,15.0692213,50.7730762,15.069227,50.7730986,15.0693044,50.773047,15.0693451,50.7730505,15.069356,50.7730453,15.0693602,50.7730537,15.0693865,50.7730341,15.0694018,50.7730259,15.0693757,50.7730211,15.0693794,50.7730176,15.0693684,50.7729658,15.0694094,50.7729325,15.0693072,50.7729279,15.069311,50.7729036,15.0692366,50.7729082,15.0692328,50.7728972,15.069199,50.7729328,15.0691702,50.7729299,15.0691614,50.7729809,15.06912,50.7729837,15.0691289,50.7730122,15.0691058,50.7730157,15.0690888,50.773024,15.069082,50.7730247,15.069079,50.7730424,15.0690888,50.7730417,15.0690918],[50.77172,15.0719862,50.771732,15.0720637,50.7717372,15.0720616,50.7717469,15.0721238,50.7717416,15.0721259,50.7717577,15.0722293,50.7716638,15.0722668,50.7716258,15.0720225,50.77172,15.0719862],[50.7717616,15.0723435,50.77178,15.072462,50.7717849,15.0724602,50.7717946,15.0725231,50.7717899,15.0725249,50.7718084,15.0726443,50.7717139,15.0726808,50.7716669,15.0723802,50.7717616,15.0723435],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.7720045,15.0709227,50.772005,15.0709172,50.7720062,15.0709119,50.772008,15.0709071,50.7720104,15.070903,50.7720133,15.0708997,50.7720165,15.0708973,50.77202,15.0708961,50.7720235,15.0708959,50.772027,15.0708969,50.7720391,15.0709096,50.7720867,15.0708928,50.7720994,15.0709764,50.7721537,15.0709559,50.7721671,15.0710455,50.7719941,15.0711106,50.7719814,15.0711234,50.7719683,15.0711194,50.7719597,15.0710846,50.7719494,15.0710158,50.7719544,15.0710139,50.7719442,15.0709464,50.7720045,15.0709227],[50.7721196,15.0713084,50.7721221,15.0713249,50.7721299,15.0713219,50.7721291,15.0713171,50.7721603,15.0713049,50.772182,15.0714453,50.7720991,15.0714775,50.772103,15.0715023,50.7720736,15.0715137,50.7720696,15.0714889,50.7720121,15.0715115,50.7719909,15.071376,50.7721064,15.071331,50.7721039,15.0713145,50.7721196,15.0713084],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7751637,15.0704631,50.7751873,15.0704442,50.7752075,15.0705078,50.7751834,15.0705268,50.7752149,15.0706272,50.7751841,15.0706516,50.7751864,15.0706585,50.7751582,15.0706809,50.7751444,15.0706376,50.7751096,15.0706651,50.7750901,15.0706039,50.7750846,15.0706083,50.7750809,15.0705965,50.7750661,15.0706082,50.7750462,15.0705455,50.775061,15.0705338,50.7750569,15.0705212,50.7750624,15.0705168,50.775043,15.0704557,50.7750718,15.0704331,50.7750711,15.070431,50.7751024,15.0704062,50.7751031,15.0704085,50.7751379,15.0703814,50.7751637,15.0704631],[50.7737764,15.0696257,50.7737483,15.0695369,50.7737403,15.0695433,50.7737122,15.0694542,50.7737043,15.0694607,50.7736754,15.0693688,50.7736791,15.0693655,50.7736681,15.0693307,50.7737285,15.0693317,50.7737608,15.0693064,50.7737573,15.0692958,50.7738589,15.0692155,50.7738904,15.0693154,50.7738824,15.0693216,50.7739105,15.0694104,50.7739025,15.0694166,50.7739306,15.0695055,50.7739226,15.0695117,50.7739502,15.0695993,50.7738119,15.0697078,50.7737843,15.0696195,50.7737764,15.0696257],[50.7735638,15.0690008,50.7737809,15.0688307,50.7738792,15.0691536,50.7738473,15.0691787,50.7738589,15.0692155,50.7737573,15.0692958,50.7737608,15.0693064,50.7737285,15.0693317,50.7736675,15.0693285,50.7735638,15.0690008],[50.7740925,15.0690877,50.7740919,15.0690789,50.7740925,15.0690611,50.7740955,15.069044,50.7741009,15.0690283,50.7741043,15.0690213,50.7741083,15.0690149,50.7741099,15.0690161,50.7741376,15.0689945,50.7741376,15.0689916,50.7741405,15.0689882,50.7741438,15.0689856,50.7741473,15.0689841,50.7741509,15.0689836,50.7741546,15.0689842,50.774158,15.0689858,50.7741613,15.0689885,50.7741642,15.068992,50.7741666,15.0689963,50.7741662,15.0689991,50.7741822,15.0690097,50.7741853,15.069015,50.77419,15.069025,50.7741989,15.0690304,50.7742022,15.0690137,50.7742129,15.0690051,50.7742247,15.0690108,50.7742299,15.0690282,50.774226,15.0690463,50.7742234,15.0690483,50.7742388,15.0690966,50.7742455,15.0690912,50.7742471,15.069096,50.77425,15.0690937,50.7742794,15.0691858,50.7742765,15.0691881,50.7742778,15.0691927,50.7742711,15.0691981,50.7742945,15.0692721,50.7742469,15.0693098,50.774253,15.0693291,50.7742123,15.0693608,50.7742064,15.0693419,50.7741579,15.0693803,50.7741342,15.0693074,50.7741317,15.0693093,50.7740993,15.0692097,50.7741017,15.0692078,50.7740769,15.0691302,50.7740993,15.069112,50.7740943,15.0690882,50.7740925,15.0690877],[50.774568,15.0701178,50.7745736,15.0701133,50.7746048,15.0702115,50.7745992,15.0702159,50.7746189,15.0702782,50.7745738,15.070314,50.7745779,15.0703267,50.7745727,15.0703308,50.7745751,15.0703383,50.7745525,15.0703562,50.7745502,15.0703486,50.7745449,15.0703528,50.7745409,15.0703401,50.7744982,15.0703739,50.7744976,15.0703719,50.7744686,15.0703949,50.7744433,15.0703172,50.7744772,15.07029,50.7744786,15.0702948,50.7744946,15.0702822,50.7744707,15.0702074,50.7744388,15.0702327,50.7744158,15.0701606,50.7745481,15.070055,50.774568,15.0701178],[50.774455,15.0696524,50.7744653,15.0696852,50.7744434,15.0697027,50.7744451,15.0697083,50.7744415,15.0697112,50.7744645,15.0697834,50.7744193,15.0698193,50.7744298,15.0698521,50.7744243,15.0698565,50.7744257,15.0698609,50.7743991,15.0698822,50.7743977,15.0698778,50.7743919,15.0698824,50.7743814,15.0698496,50.7743365,15.0698853,50.7742538,15.0696254,50.7742964,15.0695919,50.7742911,15.0695754,50.774334,15.0695415,50.7743393,15.0695579,50.774382,15.0695239,50.774405,15.0695964,50.7744086,15.0695935,50.7744103,15.0695992,50.7744323,15.0695819,50.7744425,15.0696138,50.774445,15.0696122,50.7744477,15.0696115,50.7744504,15.0696116,50.774453,15.0696125,50.7744555,15.0696142,50.7744577,15.0696166,50.7744596,15.0696196,50.7744611,15.0696232,50.7744621,15.0696271,50.7744625,15.0696313,50.7744625,15.0696356,50.7744619,15.0696397,50.7744609,15.0696437,50.7744593,15.0696473,50.7744573,15.0696502,50.774455,15.0696524],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7755144,15.0714779,50.7755518,15.0715956,50.7755475,15.0715991,50.7755594,15.0716365,50.7755236,15.0716648,50.7755177,15.0716466,50.7754841,15.0716731,50.7754795,15.0716583,50.7754351,15.0716934,50.7754128,15.0716233,50.77541,15.0716256,50.7754073,15.071617,50.7753938,15.0716276,50.7753769,15.0715747,50.7753905,15.0715639,50.7753877,15.0715551,50.7753905,15.0715529,50.7753684,15.0714836,50.7754103,15.0714505,50.7754072,15.0714409,50.775441,15.0714141,50.7754441,15.0714238,50.7754838,15.0713932,50.7755115,15.0714802,50.7755144,15.0714779],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.775303,15.0708614,50.7753184,15.0709103,50.7753202,15.070909,50.7753624,15.0710422,50.7753529,15.0710495,50.7753654,15.0710889,50.7753131,15.0711301,50.7753107,15.0711226,50.7752656,15.071158,50.7752449,15.0710924,50.7752362,15.071099,50.7752326,15.0710873,50.7752269,15.0710917,50.775217,15.0710861,50.7752073,15.0710557,50.7752106,15.0710399,50.7752162,15.0710354,50.7752124,15.0710236,50.775221,15.071017,50.7752003,15.0709515,50.7752454,15.070916,50.7752431,15.0709085,50.775303,15.0708614],[50.7752185,15.0721634,50.7752173,15.0721699,50.7752377,15.0722341,50.7752458,15.0722278,50.7752745,15.0723183,50.7752722,15.0723202,50.7752824,15.0723534,50.7752432,15.0723848,50.775244,15.0723872,50.775166,15.0724485,50.7751263,15.0723232,50.7751352,15.0723161,50.7751014,15.0722114,50.7751542,15.0721689,50.7751574,15.0721791,50.7751886,15.0721541,50.7751895,15.0721481,50.7752005,15.0721393,50.775213,15.0721462,50.7752185,15.0721634],[50.7753236,15.072471,50.7753318,15.0724972,50.7753303,15.0724983,50.775344,15.0725419,50.7753489,15.072538,50.7753534,15.0725525,50.7753715,15.0725383,50.7753897,15.0725948,50.7753714,15.0726089,50.7753762,15.0726237,50.7753711,15.0726277,50.7753867,15.0726751,50.7752966,15.0727459,50.7752578,15.0726231,50.7752331,15.0725457,50.7752581,15.0725259,50.7752549,15.0725159,50.7753138,15.0724655,50.7753236,15.072471],[50.7754147,15.0727618,50.7754356,15.0728252,50.7754517,15.0728119,50.775474,15.0728795,50.7754576,15.0728929,50.7754817,15.0729652,50.7753703,15.0730554,50.7753603,15.073049,50.7753585,15.0730433,50.7753281,15.0730694,50.7753066,15.0730632,50.7752957,15.0730318,50.7753049,15.0730012,50.7752933,15.0729659,50.7753299,15.072936,50.7753148,15.0728901,50.7752913,15.0729095,50.7752681,15.0728393,50.7754049,15.0727269,50.7754161,15.0727608,50.7754147,15.0727618],[50.7747953,15.0734128,50.7749794,15.0734047,50.7749886,15.0739546,50.7748051,15.0739635,50.774805,15.0739561,50.7747954,15.0734185,50.7747953,15.0734128],[50.7724145,15.0739846,50.7723917,15.0739931,50.7723939,15.0740069,50.7723162,15.0740362,50.7723103,15.0739967,50.7723059,15.0739983,50.772305,15.0739927,50.7723012,15.0739934,50.7722973,15.0739931,50.7722936,15.0739918,50.7722901,15.0739895,50.7722868,15.0739863,50.772284,15.0739822,50.7722816,15.0739775,50.7722798,15.0739721,50.7722786,15.0739664,50.7722781,15.0739604,50.7722782,15.0739544,50.7722789,15.0739485,50.7722803,15.0739428,50.7722823,15.0739377,50.7722848,15.0739331,50.7722877,15.0739293,50.7722911,15.0739263,50.7722947,15.0739243,50.7722937,15.0739182,50.7723984,15.0738786,50.7724145,15.0739846],[50.7718387,15.072858,50.7718477,15.0729148,50.7718628,15.0729094,50.7718816,15.0730345,50.7718661,15.0730402,50.7718669,15.0730458,50.771816,15.0730647,50.7718181,15.073078,50.7717915,15.073088,50.7717899,15.073077,50.7717665,15.0730857,50.7717519,15.0729862,50.7717292,15.072994,50.7717152,15.0728992,50.7717449,15.0728885,50.7717455,15.0728925,50.7717936,15.0728747,50.7717936,15.0728685,50.7717943,15.0728623,50.7717956,15.0728565,50.7717977,15.0728511,50.7718003,15.0728464,50.7718033,15.0728426,50.7718068,15.0728396,50.7718106,15.0728377,50.7718145,15.0728368,50.7718184,15.072837,50.7718223,15.0728383,50.7718259,15.0728407,50.7718293,15.0728441,50.7718321,15.0728483,50.7718345,15.0728533,50.7718362,15.0728589,50.7718387,15.072858],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7723625,15.0735165,50.7723669,15.073546,50.772422,15.0735251,50.7724486,15.0736994,50.772353,15.0737357,50.7723564,15.0737577,50.7723084,15.0737759,50.772305,15.0737538,50.7722439,15.0737771,50.7722173,15.073603,50.7723198,15.073564,50.7723153,15.0735343,50.7723625,15.0735165],[50.7720487,15.0718492,50.7720888,15.0718336,50.772094,15.0718652,50.7721081,15.0718597,50.7721123,15.0718876,50.7721144,15.0718868,50.7721282,15.0719749,50.7720491,15.0720053,50.7720577,15.0720612,50.7719949,15.0720857,50.7719839,15.0720149,50.7719743,15.0720185,50.7719635,15.0719491,50.7719731,15.0719452,50.7719647,15.071882,50.7720011,15.0718676,50.7719989,15.0718523,50.7720465,15.0718342,50.7720487,15.0718492],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7719259,15.0733898,50.7719361,15.0734576,50.7719335,15.0734586,50.7719372,15.0734834,50.7719073,15.0734946,50.7719036,15.0734698,50.7718392,15.073494,50.7718229,15.0733859,50.771799,15.0733947,50.7717888,15.0733272,50.7718127,15.0733182,50.771811,15.0733065,50.7718212,15.0733028,50.7718273,15.0732874,50.7718486,15.0732793,50.7718585,15.0732887,50.7719079,15.0732703,50.771918,15.0733378,50.7719208,15.0733367,50.7719287,15.0733887,50.7719259,15.0733898],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7749457,15.0698497,50.7749612,15.0698372,50.7749808,15.0698217,50.7750269,15.0699657,50.7750048,15.0699833,50.7750345,15.0700761,50.7749444,15.0701478,50.7749133,15.0700514,50.7749097,15.0700544,50.7748863,15.0699812,50.7748899,15.0699783,50.7748765,15.0699369,50.7748647,15.069931,50.7748729,15.0698913,50.7748852,15.0698978,50.7748909,15.0698934,50.7748799,15.0698582,50.7749345,15.0698148,50.7749357,15.0698185,50.7749457,15.0698497],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7722268,15.0702958,50.7721707,15.070313,50.772161,15.0702337,50.7722152,15.0702171,50.7722268,15.0702958],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7728652,15.0699861,50.7728732,15.0700323,50.7728193,15.0700556,50.7728103,15.0700095,50.7728652,15.0699861],[50.771992,15.070692,50.7720069,15.0707766,50.7719748,15.0707914,50.7719598,15.070706,50.771992,15.070692],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7730944,15.0699634,50.7731272,15.0699618,50.7731289,15.0700443,50.7730725,15.0700473,50.773071,15.0699726,50.7730944,15.0699634],[50.7724605,15.0706468,50.7724735,15.0707292,50.7724148,15.070752,50.7724154,15.0707563,50.7724114,15.0707578,50.7723978,15.0706712,50.7724605,15.0706468],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7728585,15.0746374,50.7727988,15.0746605,50.7727919,15.0746157,50.7728514,15.0745931,50.7728585,15.0746374],[50.7752578,15.0726231,50.7752262,15.0726483,50.7752015,15.0725718,50.7752331,15.0725457,50.7752578,15.0726231],[50.7737,15.0752819,50.7736634,15.0752963,50.773663,15.0752941,50.7736442,15.0753015,50.7736416,15.0752843,50.7735996,15.0753043,50.7735987,15.0753075,50.7735985,15.075311,50.7736003,15.0753246,50.7736,15.0753277,50.7735992,15.0753306,50.773598,15.0753331,50.7735963,15.0753349,50.7735945,15.075336,50.7734819,15.0753758,50.7734802,15.0753737,50.7734789,15.075371,50.7734781,15.0753679,50.7734771,15.0753608,50.7734764,15.075358,50.7734752,15.0753555,50.7734737,15.0753535,50.7734719,15.0753522,50.77347,15.0753517,50.773468,15.075352,50.7734319,15.0753659,50.7734345,15.0753831,50.7734157,15.0753903,50.7734161,15.0753928,50.7733818,15.0754061,50.7733791,15.0753883,50.7732956,15.0754181,50.7731776,15.074665,50.7732038,15.0746549,50.7731964,15.0746074,50.7731802,15.0746137,50.7731624,15.0744996,50.7731784,15.0744933,50.7731707,15.0744438,50.773228,15.0744221,50.7732604,15.0746333,50.7735766,15.0745127,50.7737,15.0752819],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7723274,15.0741104,50.7723162,15.0740362,50.7723939,15.0740069,50.7723948,15.0740127,50.7723877,15.0740153,50.7723914,15.0740399,50.7724625,15.0740131,50.7724722,15.0740768,50.7724569,15.0740826,50.7724654,15.0741383,50.7724262,15.074153,50.7724281,15.0741682,50.7724275,15.0741708,50.7724263,15.0741728,50.7724247,15.074174,50.7723821,15.074188,50.7723808,15.0741861,50.7723801,15.0741835,50.7723782,15.0741712,50.7723345,15.0741875,50.772334,15.074184,50.7723302,15.0741847,50.7723264,15.0741844,50.7723226,15.074183,50.7723191,15.0741807,50.7723158,15.0741774,50.772313,15.0741733,50.7723106,15.0741686,50.7723088,15.0741632,50.7723076,15.0741575,50.7723071,15.0741515,50.7723072,15.0741455,50.7723079,15.0741395,50.7723093,15.0741339,50.7723112,15.0741287,50.7723137,15.0741241,50.7723166,15.0741202,50.77232,15.0741172,50.7723236,15.0741151,50.7723231,15.074112,50.7723274,15.0741104],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","university","university","university","university","yes","yes","residential","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","residential","yes","yes","civic","yes","residential","residential","garage","house","house","house","residential","yes","residential","residential","residential","residential","yes","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","yes","garage","garage","garage","residential","yes","yes","garage","garage","garage","garage","garage","industrial","garage","garage","yes","yes","yes","university","university","residential","residential","residential","residential"],"pathways":[[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7753344,15.071967,50.7753517,15.0719544,50.7753804,15.0719323,50.7762383,15.0712693],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.773066,15.0759402,50.7730339,15.0757391,50.7730324,15.0757292,50.7730252,15.0756838,50.7730037,15.0755384,50.7728821,15.0747749,50.7728585,15.0746374,50.7728514,15.0745931,50.7728485,15.0745747,50.7728164,15.0743732,50.7727895,15.0742394,50.7728744,15.0742161,50.7729429,15.0741972,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7732287,15.0751189,50.7733416,15.0758426,50.7731038,15.0759268,50.773066,15.0759402],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7737778,15.0698608,50.773693,15.0697697,50.7736943,15.0697386,50.7736886,15.0697049,50.773571,15.0693442,50.773531,15.069168,50.7734981,15.0689719,50.7734977,15.0689399,50.7735128,15.0689055,50.7736997,15.0687658],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7726178,15.077,50.7724916,15.0762062,50.7724345,15.0758337,50.772214,15.0743908,50.7718091,15.0717795,50.7717093,15.0711425,50.7716437,15.0707084,50.7715836,15.0703009,50.7715459,15.0700709],[50.7755564,15.0691771,50.7754958,15.0692273,50.7750732,15.0695777,50.7747499,15.0698458,50.7746948,15.0698915,50.7746772,15.0699061],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.773693,15.0697697,50.7736867,15.069781,50.7736788,15.0697919,50.7736682,15.0697985,50.7736366,15.069801,50.7736109,15.0697856,50.7735708,15.0697393,50.7735531,15.0696834,50.773415,15.0690544,50.773355,15.0687429,50.7733545,15.0687308,50.7733498,15.0686254],[50.7740766,15.0699582,50.7739846,15.0696453,50.7738817,15.0690129,50.7737793,15.0687387,50.7737347,15.068768,50.7736997,15.0687658],[50.7758983,15.0742748,50.7758355,15.0738881,50.7758016,15.0736783,50.7757357,15.0732563,50.7757167,15.0731652,50.7756939,15.0730866,50.7756372,15.0729012,50.7756321,15.0728845,50.7755318,15.0725562,50.7753344,15.071967,50.77503,15.0710052,50.7746772,15.0699061,50.7746685,15.0698764,50.7743147,15.0687414,50.7742925,15.0686768,50.7740879,15.0680453],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731154,15.0760135,50.7731038,15.0759268,50.7728744,15.0742161,50.7728635,15.0741347],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7740151,15.0746626,50.7740449,15.0745473,50.7740399,15.0744534],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7746685,15.0698764,50.7746566,15.0698851,50.7744586,15.0700098,50.7742746,15.0700717,50.7741844,15.0700707],[50.7741844,15.0700707,50.7740766,15.0699582,50.7739733,15.0699259,50.7739407,15.0699098,50.7738653,15.0698945,50.7737778,15.0698608],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7735708,15.0697393,50.7734654,15.0699291],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7749533,15.0728495,50.7749634,15.0730713,50.7749421,15.0732859,50.774974,15.073339,50.7750239,15.0733565,50.7750812,15.0733641,50.7751475,15.0733291,50.7753573,15.0731141,50.7756188,15.0728955,50.7756321,15.0728845],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.775464,15.0721745,50.7753804,15.0719323,50.7752722,15.0716105,50.7751503,15.0712082,50.7750135,15.0707882,50.7748604,15.0703256,50.774761,15.0699766,50.7747499,15.0698458],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7724188,15.0743193,50.7724601,15.0743824,50.772512,15.0744154,50.7725462,15.0744147,50.7727832,15.0743235],[50.771643,15.0702755,50.7716807,15.0705127,50.7718715,15.0717545,50.7720176,15.0727114,50.7721849,15.0737642,50.7722811,15.0743641],[50.7723217,15.0755726,50.7720127,15.0735143,50.771734,15.0717429,50.7715808,15.0707311],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,3,0,3,3,4,0,3,3,4,4,5,3,4,4,4,0,3,0,4,0,0,0,0,4,3,4,0,0,0,4,0,0,0,0,0,4,0,4,4,0,0,0,3,4,0,0,4,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.77338352,15.069208979999999,4,50.77347004,15.0691,4,50.77368628,15.06951072,4,50.7719988,15.0719208,0,50.773681,15.0692301,0,50.7740297,15.0744936,6,50.7745187,15.0701967,7,50.773738,15.0696539,7,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.7730244,15.0744971,0,50.7738714,15.0698715,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":207},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T19:48:20.1766773Z","actor":"42abae11","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"42abae11","displayName":"Hr\u00E1\u010D71","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T19:48:20.1837378Z","actor":"a33f52d2","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a33f52d2","displayName":"Hr\u00E1\u010D108","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T19:48:20.1898355Z","actor":"e43245ed","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"e43245ed","displayName":"Hr\u00E1\u010D656","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T19:48:20.1962639Z","actor":"ac9c6e85","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ac9c6e85","displayName":"Hr\u00E1\u010D454","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T19:48:20.2028087Z","actor":"42abae11","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T19:48:20.2065117Z","actor":"42abae11","eventType":"RoleAssigned","payload":{"clientUuid":"42abae11","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T19:48:20.2105555Z","actor":"a33f52d2","eventType":"RoleAssigned","payload":{"clientUuid":"a33f52d2","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7738016,"lon":15.0702315},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7739942,"lon":15.0706985},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.77303,"lon":15.07395},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7746238,"lon":15.0716847},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7741443,"lon":15.0702437},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T19:48:20.2137231Z","actor":"e43245ed","eventType":"RoleAssigned","payload":{"clientUuid":"e43245ed","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.7738714,"lon":15.0698715},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.774702,"lon":15.0718182},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7738016,"lon":15.0702315},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7741443,"lon":15.0702437},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T19:48:20.2172105Z","actor":"ac9c6e85","eventType":"RoleAssigned","payload":{"clientUuid":"ac9c6e85","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.774702,"lon":15.0718182},"type":"Instant"},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7738016,"lon":15.0702315},"type":"Instant"},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.774201,"lon":15.0712028},"type":"Instant"},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.7739942,"lon":15.0706985},"type":"Instant"},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.7740297,"lon":15.0744936},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T19:48:37.6149198Z","actor":"e43245ed","eventType":"TaskCompleted","payload":{"clientUuid":"e43245ed","taskId":"task_9","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T19:48:57.9261607Z","actor":"a33f52d2","eventType":"PlayerLeft","payload":{"clientUuid":"a33f52d2","reason":"Kicked by admin"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T19:51:11.5953261Z","actor":"server","eventType":"SystemMessage","payload":{"message":"f","timestamp":"2026-01-27T19:51:11.5953082Z"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/843e4cff093346db/wal_20260127120603.ndjson b/data/lobbies/843e4cff093346db/wal_20260127120603.ndjson new file mode 100644 index 0000000..89f5853 --- /dev/null +++ b/data/lobbies/843e4cff093346db/wal_20260127120603.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:06:03.4003558Z","actor":"544320a5","eventType":"PlayerJoined","payload":{"clientUuid":"544320a5","displayName":"MapTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:06:03.5023234Z","actor":"544320a5","eventType":"PlayerLeft","payload":{"clientUuid":"544320a5","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/8602e87eb5d44e20/wal_20260127014140.ndjson b/data/lobbies/8602e87eb5d44e20/wal_20260127014140.ndjson new file mode 100644 index 0000000..8e67fe1 --- /dev/null +++ b/data/lobbies/8602e87eb5d44e20/wal_20260127014140.ndjson @@ -0,0 +1,42 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T01:41:40.7322888Z","actor":"114f2959","eventType":"PlayerJoined","payload":{"clientUuid":"114f2959","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T01:41:40.769811Z","actor":"77e153d1","eventType":"PlayerJoined","payload":{"clientUuid":"77e153d1","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T01:41:41.0711495Z","actor":"49354425","eventType":"PlayerJoined","payload":{"clientUuid":"49354425","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T01:41:41.4082437Z","actor":"bc5d7fe4","eventType":"PlayerJoined","payload":{"clientUuid":"bc5d7fe4","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T01:41:41.7179593Z","actor":"f6ca8a83","eventType":"PlayerJoined","payload":{"clientUuid":"f6ca8a83","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T01:41:42.0280834Z","actor":"85fc4ad9","eventType":"PlayerJoined","payload":{"clientUuid":"85fc4ad9","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T01:41:42.3054607Z","actor":"114f2959","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T01:41:42.3084399Z","actor":"114f2959","eventType":"RoleAssigned","payload":{"clientUuid":"114f2959","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9976682738863,"lon":13.997915518092766},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00336473569256,"lon":13.99961580555615},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99958022998625,"lon":13.998724468997118},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T01:41:42.3114065Z","actor":"77e153d1","eventType":"RoleAssigned","payload":{"clientUuid":"77e153d1","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9976682738863,"lon":13.997915518092766},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00336473569256,"lon":13.99961580555615},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99958022998625,"lon":13.998724468997118},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T01:41:42.3138412Z","actor":"49354425","eventType":"RoleAssigned","payload":{"clientUuid":"49354425","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9976682738863,"lon":13.997915518092766},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00336473569256,"lon":13.99961580555615},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99958022998625,"lon":13.998724468997118},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T01:41:42.3165571Z","actor":"bc5d7fe4","eventType":"RoleAssigned","payload":{"clientUuid":"bc5d7fe4","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9976682738863,"lon":13.997915518092766},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00336473569256,"lon":13.99961580555615},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99958022998625,"lon":13.998724468997118},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T01:41:42.3192547Z","actor":"f6ca8a83","eventType":"RoleAssigned","payload":{"clientUuid":"f6ca8a83","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T01:41:42.3220705Z","actor":"85fc4ad9","eventType":"RoleAssigned","payload":{"clientUuid":"85fc4ad9","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9976682738863,"lon":13.997915518092766},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00336473569256,"lon":13.99961580555615},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99958022998625,"lon":13.998724468997118},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T01:41:44.5751684Z","actor":"114f2959","eventType":"TaskCompleted","payload":{"clientUuid":"114f2959","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T01:41:45.3546491Z","actor":"f6ca8a83","eventType":"SabotageStarted","payload":{"sabotageId":"f8084df6","type":"CommsBlackout","initiatorId":"f6ca8a83","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.00053137717816,"lon":13.998604412990794},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T01:41:48.5139773Z","actor":"114f2959","eventType":"RepairStarted","payload":{"sabotageId":"f8084df6","stationId":"comms_station","playerId":"114f2959"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T01:41:51.5381652Z","actor":"114f2959","eventType":"SabotageRepaired","payload":{"sabotageId":"f8084df6","type":"CommsBlackout","repairerIds":["114f2959"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T01:42:25.6221141Z","actor":"f6ca8a83","eventType":"SabotageStarted","payload":{"sabotageId":"0be0596a","type":"CriticalMeltdown","initiatorId":"f6ca8a83","deadline":"2026-01-27T01:43:10.6220573Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.00315315315315,"lon":14},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":49.99684684684685,"lon":14},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T01:42:27.2341199Z","actor":"114f2959","eventType":"RepairStarted","payload":{"sabotageId":"0be0596a","stationId":"reactor_alpha","playerId":"114f2959"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T01:42:27.2443764Z","actor":"77e153d1","eventType":"RepairStarted","payload":{"sabotageId":"0be0596a","stationId":"reactor_beta","playerId":"77e153d1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T01:42:46.4305694Z","actor":"f6ca8a83","eventType":"PlayerKilled","payload":{"victimId":"114f2959","killerId":"f6ca8a83","bodyId":"1d47bfaa","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T01:42:47.0355763Z","actor":"77e153d1","eventType":"BodyReported","payload":{"reporterId":"77e153d1","bodyId":"1d47bfaa","victimId":"114f2959"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T01:42:47.0384007Z","actor":"77e153d1","eventType":"MeetingStarted","payload":{"meetingId":"6554eb03","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T01:42:50.5383878Z","discussionEndTime":"2026-01-27T01:42:53.0383878Z","votingEndTime":"2026-01-27T01:43:03.0383878Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T01:42:53.049294Z","actor":"77e153d1","eventType":"PlayerVoted","payload":{"voterId":"77e153d1","targetId":"f6ca8a83"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T01:42:53.1723238Z","actor":"49354425","eventType":"PlayerVoted","payload":{"voterId":"49354425","targetId":"f6ca8a83"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T01:42:53.2966894Z","actor":"bc5d7fe4","eventType":"PlayerVoted","payload":{"voterId":"bc5d7fe4","targetId":"f6ca8a83"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T01:42:53.4210465Z","actor":"f6ca8a83","eventType":"PlayerVoted","payload":{"voterId":"f6ca8a83","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T01:42:53.5449651Z","actor":"85fc4ad9","eventType":"PlayerVoted","payload":{"voterId":"85fc4ad9","targetId":"f6ca8a83"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T01:43:03.0420517Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"f6ca8a83":4,"__SKIP__":1},"ejectedPlayerId":"f6ca8a83","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T01:43:03.0708138Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"f6ca8a83","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T01:43:03.07278Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["114f2959","77e153d1","49354425","bc5d7fe4","85fc4ad9"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T01:43:03.1122136Z","actor":"114f2959","eventType":"PlayerLeft","payload":{"clientUuid":"114f2959","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T01:43:03.1140171Z","actor":"77e153d1","eventType":"HostChanged","payload":{"newHostId":"77e153d1","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T01:43:03.1155136Z","actor":"77e153d1","eventType":"PlayerLeft","payload":{"clientUuid":"77e153d1","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T01:43:03.1170378Z","actor":"49354425","eventType":"HostChanged","payload":{"newHostId":"49354425","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T01:43:03.1185554Z","actor":"49354425","eventType":"PlayerLeft","payload":{"clientUuid":"49354425","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T01:43:03.1201171Z","actor":"bc5d7fe4","eventType":"HostChanged","payload":{"newHostId":"bc5d7fe4","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T01:43:03.1217849Z","actor":"bc5d7fe4","eventType":"PlayerLeft","payload":{"clientUuid":"bc5d7fe4","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T01:43:03.1234631Z","actor":"f6ca8a83","eventType":"HostChanged","payload":{"newHostId":"f6ca8a83","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T01:43:03.1249821Z","actor":"f6ca8a83","eventType":"PlayerLeft","payload":{"clientUuid":"f6ca8a83","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T01:43:03.1266533Z","actor":"85fc4ad9","eventType":"HostChanged","payload":{"newHostId":"85fc4ad9","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T01:43:03.1281889Z","actor":"85fc4ad9","eventType":"PlayerLeft","payload":{"clientUuid":"85fc4ad9","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/8a7a4554af8d4ef8/wal_20260127120019.ndjson b/data/lobbies/8a7a4554af8d4ef8/wal_20260127120019.ndjson new file mode 100644 index 0000000..0ea82d3 --- /dev/null +++ b/data/lobbies/8a7a4554af8d4ef8/wal_20260127120019.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:00:19.9315863Z","actor":"4db6428a","eventType":"PlayerJoined","payload":{"clientUuid":"4db6428a","displayName":"StructTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:00:19.9358668Z","actor":"4db6428a","eventType":"PlayerLeft","payload":{"clientUuid":"4db6428a","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/8d4e9da599f54808/snapshot_24.json b/data/lobbies/8d4e9da599f54808/snapshot_24.json new file mode 100644 index 0000000..8e52c33 --- /dev/null +++ b/data/lobbies/8d4e9da599f54808/snapshot_24.json @@ -0,0 +1,442 @@ +{ + "lobbyId": "8d4e9da599f54808", + "lastEventId": 24, + "timestamp": "2026-01-27T15:18:37.7070312Z", + "checksum": "f58ec73bd590e27a43011ac40020f25a033ec754c77741ad3520b6a846a25d0f", + "phase": "Playing", + "players": [ + { + "clientUuid": "3cf2ce1c", + "displayName": "Hr\u00E1\u010D136", + "position": { + "lat": 50.77379320364965, + "lon": 15.070223610918289 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:13:37.5682167Z", + "lastPositionUpdate": "2026-01-27T15:18:37.4568323Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Progress", + "durationMs": 9550, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 6835, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7748682, + "lon": 15.0725437 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "fc0eec4c", + "displayName": "Hr\u00E1\u010D652", + "position": { + "lat": 50.7745196638094, + "lon": 15.071680304081935 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:13:59.4594629Z", + "lastPositionUpdate": "2026-01-27T15:18:37.3824595Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Progress", + "durationMs": 9304, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7741494, + "lon": 15.0703058 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Progress", + "durationMs": 9090, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "4485888a", + "displayName": "Hr\u00E1\u010D445", + "position": { + "lat": 50.77362353479194, + "lon": 15.0721653 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:14:09.4702052Z", + "lastPositionUpdate": "2026-01-27T15:18:37.7046693Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.774702, + "lon": 15.0718182 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Progress", + "durationMs": 7553, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Progress", + "durationMs": 9550, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 6835, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7738016, + "lon": 15.0702315 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7748682, + "lon": 15.0725437 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Progress", + "durationMs": 9304, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7741494, + "lon": 15.0703058 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Progress", + "durationMs": 9090, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 155, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/8d4e9da599f54808/snapshot_38.json b/data/lobbies/8d4e9da599f54808/snapshot_38.json new file mode 100644 index 0000000..250043c --- /dev/null +++ b/data/lobbies/8d4e9da599f54808/snapshot_38.json @@ -0,0 +1,442 @@ +{ + "lobbyId": "8d4e9da599f54808", + "lastEventId": 38, + "timestamp": "2026-01-27T15:33:38.0063974Z", + "checksum": "961ac66fd07f021b7e58dfbb84defa1a985c143994a1d4de652d5e2060c510e3", + "phase": "Playing", + "players": [ + { + "clientUuid": "3cf2ce1c", + "displayName": "Hr\u00E1\u010D136", + "position": { + "lat": 50.773291841983664, + "lon": 15.07256331093216 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:13:37.5682167Z", + "lastPositionUpdate": "2026-01-27T15:33:37.716566Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7741494, + "lon": 15.0703058 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "fc0eec4c", + "displayName": "Hr\u00E1\u010D652", + "position": { + "lat": 50.77317868182666, + "lon": 15.072231622732726 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:13:59.4594629Z", + "lastPositionUpdate": "2026-01-27T15:33:38.0059926Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Progress", + "durationMs": 9304, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7741494, + "lon": 15.0703058 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Progress", + "durationMs": 9090, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "4485888a", + "displayName": "Hr\u00E1\u010D445", + "position": { + "lat": 50.77364163912988, + "lon": 15.072117688520137 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:14:09.4702052Z", + "lastPositionUpdate": "2026-01-27T15:33:37.8006425Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7748514, + "lon": 15.0724958 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7746238, + "lon": 15.0716847 + }, + "type": "Progress", + "durationMs": 5107, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "Progress", + "durationMs": 9759, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 3 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7741494, + "lon": 15.0703058 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77303, + "lon": 15.07395 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.7748514, + "lon": 15.0724958 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7741443, + "lon": 15.0702437 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7746238, + "lon": 15.0716847 + }, + "type": "Progress", + "durationMs": 5107, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.774201, + "lon": 15.0712028 + }, + "type": "Progress", + "durationMs": 9759, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 155, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/8d4e9da599f54808/wal_20260127151337.ndjson b/data/lobbies/8d4e9da599f54808/wal_20260127151337.ndjson new file mode 100644 index 0000000..0a536d1 --- /dev/null +++ b/data/lobbies/8d4e9da599f54808/wal_20260127151337.ndjson @@ -0,0 +1,38 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T15:13:37.5743222Z","actor":"3cf2ce1c","eventType":"PlayerJoined","payload":{"clientUuid":"3cf2ce1c","displayName":"Hr\u00E1\u010D136"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T15:13:59.4742172Z","actor":"fc0eec4c","eventType":"PlayerJoined","payload":{"clientUuid":"fc0eec4c","displayName":"Hr\u00E1\u010D652"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T15:14:09.5087715Z","actor":"4485888a","eventType":"PlayerJoined","payload":{"clientUuid":"4485888a","displayName":"Hr\u00E1\u010D445"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T15:14:11.0777582Z","actor":"3cf2ce1c","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T15:14:15.655318Z","actor":"3cf2ce1c","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":155,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","yes","yes","residential","residential","residential","residential","house","residential","residential","residential","garage","house","house","house","yes","yes","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","garage","garage","garage","residential","yes","yes","garage","garage","industrial","yes","university","residential","residential","residential"],"pathways":[[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,0,3,3,4,3,3,4,4,4,0,0,0,0,4,3,0,0,0,0,0,0,0,4,0,4,0,0,3,4,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":155},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T15:14:15.6952097Z","actor":"3cf2ce1c","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"3cf2ce1c","displayName":"Hr\u00E1\u010D136","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T15:14:15.7106049Z","actor":"4485888a","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"4485888a","displayName":"Hr\u00E1\u010D445","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T15:14:15.7146809Z","actor":"fc0eec4c","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"fc0eec4c","displayName":"Hr\u00E1\u010D652","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T15:14:15.7226799Z","actor":"3cf2ce1c","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T15:14:15.7265993Z","actor":"3cf2ce1c","eventType":"RoleAssigned","payload":{"clientUuid":"3cf2ce1c","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7748682,"lon":15.0725437},"type":"Progress","durationMs":6486,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7746238,"lon":15.0716847},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7744712,"lon":15.0716784},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7738016,"lon":15.0702315},"type":"Progress","durationMs":9786,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T15:14:15.7368033Z","actor":"fc0eec4c","eventType":"RoleAssigned","payload":{"clientUuid":"fc0eec4c","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T15:14:15.739783Z","actor":"4485888a","eventType":"RoleAssigned","payload":{"clientUuid":"4485888a","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.77303,"lon":15.07395},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.774702,"lon":15.0718182},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.774201,"lon":15.0712028},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7741888,"lon":15.0705734},"type":"Progress","durationMs":7553,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T15:14:30.7815873Z","actor":"fc0eec4c","eventType":"PlayerKilled","payload":{"victimId":"4485888a","killerId":"fc0eec4c","bodyId":"61d02fd4","location":{"lat":50.7735892,"lon":15.0721653}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T15:14:30.7913448Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["fc0eec4c"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T15:14:36.0286663Z","actor":"3cf2ce1c","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T15:14:39.1766306Z","actor":"3cf2ce1c","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T15:14:43.4948419Z","actor":"3cf2ce1c","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":155,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","yes","yes","residential","residential","residential","residential","house","residential","residential","residential","garage","house","house","house","yes","yes","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","garage","garage","garage","residential","yes","yes","garage","garage","industrial","yes","university","residential","residential","residential"],"pathways":[[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,0,3,3,4,3,3,4,4,4,0,0,0,0,4,3,0,0,0,0,0,0,0,4,0,4,0,0,3,4,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":155},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T15:14:43.5186165Z","actor":"3cf2ce1c","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"3cf2ce1c","displayName":"Hr\u00E1\u010D136","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T15:14:43.528813Z","actor":"4485888a","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"4485888a","displayName":"Hr\u00E1\u010D445","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T15:14:43.5366158Z","actor":"fc0eec4c","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"fc0eec4c","displayName":"Hr\u00E1\u010D652","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T15:14:43.5431984Z","actor":"3cf2ce1c","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T15:14:43.5482667Z","actor":"3cf2ce1c","eventType":"RoleAssigned","payload":{"clientUuid":"3cf2ce1c","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7741888,"lon":15.0705734},"type":"Progress","durationMs":9550,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":6835,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7738016,"lon":15.0702315},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7748682,"lon":15.0725437},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7744712,"lon":15.0716784},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T15:14:43.5516728Z","actor":"fc0eec4c","eventType":"RoleAssigned","payload":{"clientUuid":"fc0eec4c","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.7744712,"lon":15.0716784},"type":"Progress","durationMs":9304,"steps":1},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7741494,"lon":15.0703058},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.774201,"lon":15.0712028},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7741443,"lon":15.0702437},"type":"Progress","durationMs":9090,"steps":1},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.77303,"lon":15.07395},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T15:14:43.5548456Z","actor":"4485888a","eventType":"RoleAssigned","payload":{"clientUuid":"4485888a","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T15:18:53.0678526Z","actor":"4485888a","eventType":"SabotageStarted","payload":{"sabotageId":"ff5782f7","type":"CommsBlackout","initiatorId":"4485888a","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.7733695,"lon":15.072243},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T15:19:23.0961744Z","actor":"system","eventType":"SabotageExpired","payload":{"sabotageId":"ff5782f7","type":"CommsBlackout","repairerIds":[]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T15:20:53.5777568Z","actor":"4485888a","eventType":"PlayerKilled","payload":{"victimId":"3cf2ce1c","killerId":"4485888a","bodyId":"9d6b554f","location":{"lat":50.77366555220066,"lon":15.072169672561207}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T15:20:53.5813148Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["4485888a"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T15:21:03.0104963Z","actor":"3cf2ce1c","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T15:21:04.8183446Z","actor":"3cf2ce1c","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T15:21:09.3064172Z","actor":"3cf2ce1c","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":155,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","yes","yes","residential","residential","residential","residential","house","residential","residential","residential","garage","house","house","house","yes","yes","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","garage","garage","garage","residential","yes","yes","garage","garage","industrial","yes","university","residential","residential","residential"],"pathways":[[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,0,3,3,4,3,3,4,4,4,0,0,0,0,4,3,0,0,0,0,0,0,0,4,0,4,0,0,3,4,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":155},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T15:21:09.3303028Z","actor":"3cf2ce1c","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"3cf2ce1c","displayName":"Hr\u00E1\u010D136","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T15:21:09.3409743Z","actor":"fc0eec4c","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"fc0eec4c","displayName":"Hr\u00E1\u010D652","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T15:21:09.347563Z","actor":"4485888a","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"4485888a","displayName":"Hr\u00E1\u010D445","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T15:21:09.3532193Z","actor":"3cf2ce1c","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T15:21:09.356459Z","actor":"3cf2ce1c","eventType":"RoleAssigned","payload":{"clientUuid":"3cf2ce1c","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77303,"lon":15.07395},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.774201,"lon":15.0712028},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7741888,"lon":15.0705734},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7744712,"lon":15.0716784},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7741494,"lon":15.0703058},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T15:21:09.3595535Z","actor":"fc0eec4c","eventType":"RoleAssigned","payload":{"clientUuid":"fc0eec4c","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T15:21:09.3626041Z","actor":"4485888a","eventType":"RoleAssigned","payload":{"clientUuid":"4485888a","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77303,"lon":15.07395},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7748514,"lon":15.0724958},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7741443,"lon":15.0702437},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7746238,"lon":15.0716847},"type":"Progress","durationMs":5107,"steps":1},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.774201,"lon":15.0712028},"type":"Progress","durationMs":9759,"steps":1}]},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/8f50176010394e78/wal_20260127011251.ndjson b/data/lobbies/8f50176010394e78/wal_20260127011251.ndjson new file mode 100644 index 0000000..8a286cf --- /dev/null +++ b/data/lobbies/8f50176010394e78/wal_20260127011251.ndjson @@ -0,0 +1,33 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T01:12:51.1159786Z","actor":"362c6d30","eventType":"PlayerJoined","payload":{"clientUuid":"362c6d30","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T01:12:51.1730558Z","actor":"4ee9e2a2","eventType":"PlayerJoined","payload":{"clientUuid":"4ee9e2a2","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T01:12:51.4823814Z","actor":"4ebc6e62","eventType":"PlayerJoined","payload":{"clientUuid":"4ebc6e62","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T01:12:51.7902115Z","actor":"14b0245d","eventType":"PlayerJoined","payload":{"clientUuid":"14b0245d","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T01:12:52.1017832Z","actor":"cb35ad0e","eventType":"PlayerJoined","payload":{"clientUuid":"cb35ad0e","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T01:12:52.4083957Z","actor":"62a6fd63","eventType":"PlayerJoined","payload":{"clientUuid":"62a6fd63","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T01:12:52.7153404Z","actor":"362c6d30","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T01:12:52.7173359Z","actor":"362c6d30","eventType":"RoleAssigned","payload":{"clientUuid":"362c6d30","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T01:12:52.7190125Z","actor":"4ee9e2a2","eventType":"RoleAssigned","payload":{"clientUuid":"4ee9e2a2","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00209009227323,"lon":14.003186431472889},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00037857266687,"lon":14.002259260471984},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99759374643093,"lon":13.996294599257638},"type":"Progress","durationMs":8959,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T01:12:52.7233966Z","actor":"4ebc6e62","eventType":"RoleAssigned","payload":{"clientUuid":"4ebc6e62","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00209009227323,"lon":14.003186431472889},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00037857266687,"lon":14.002259260471984},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99759374643093,"lon":13.996294599257638},"type":"Progress","durationMs":8959,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T01:12:52.7250357Z","actor":"14b0245d","eventType":"RoleAssigned","payload":{"clientUuid":"14b0245d","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00209009227323,"lon":14.003186431472889},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00037857266687,"lon":14.002259260471984},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99759374643093,"lon":13.996294599257638},"type":"Progress","durationMs":8959,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T01:12:52.7267314Z","actor":"cb35ad0e","eventType":"RoleAssigned","payload":{"clientUuid":"cb35ad0e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00209009227323,"lon":14.003186431472889},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00037857266687,"lon":14.002259260471984},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99759374643093,"lon":13.996294599257638},"type":"Progress","durationMs":8959,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T01:12:52.7286851Z","actor":"62a6fd63","eventType":"RoleAssigned","payload":{"clientUuid":"62a6fd63","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00209009227323,"lon":14.003186431472889},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00037857266687,"lon":14.002259260471984},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99759374643093,"lon":13.996294599257638},"type":"Progress","durationMs":8959,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T01:12:54.4851324Z","actor":"4ee9e2a2","eventType":"TaskCompleted","payload":{"clientUuid":"4ee9e2a2","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T01:12:55.6071638Z","actor":"362c6d30","eventType":"PlayerKilled","payload":{"victimId":"4ee9e2a2","killerId":"362c6d30","bodyId":"dab356ec","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T01:12:56.2210359Z","actor":"4ebc6e62","eventType":"BodyReported","payload":{"reporterId":"4ebc6e62","bodyId":"dab356ec","victimId":"4ee9e2a2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T01:12:56.2239349Z","actor":"4ebc6e62","eventType":"MeetingStarted","payload":{"meetingId":"5043a377","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T01:12:59.7239159Z","votingEndTime":"2026-01-27T01:13:12.2239159Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T01:13:02.2595863Z","actor":"cb35ad0e","eventType":"PlayerVoted","payload":{"voterId":"cb35ad0e","targetId":"362c6d30"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T01:13:02.5698467Z","actor":"62a6fd63","eventType":"PlayerVoted","payload":{"voterId":"62a6fd63","targetId":"362c6d30"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T01:13:12.2370236Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"362c6d30":2,"__SKIP__":0},"ejectedPlayerId":"362c6d30","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T01:13:12.2584451Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"362c6d30","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T01:13:12.2603228Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["4ee9e2a2","4ebc6e62","14b0245d","cb35ad0e","62a6fd63"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T01:13:12.3082258Z","actor":"362c6d30","eventType":"PlayerLeft","payload":{"clientUuid":"362c6d30","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T01:13:12.3102021Z","actor":"4ee9e2a2","eventType":"HostChanged","payload":{"newHostId":"4ee9e2a2","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T01:13:12.3117786Z","actor":"4ee9e2a2","eventType":"PlayerLeft","payload":{"clientUuid":"4ee9e2a2","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T01:13:12.3133135Z","actor":"4ebc6e62","eventType":"HostChanged","payload":{"newHostId":"4ebc6e62","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T01:13:12.3148542Z","actor":"4ebc6e62","eventType":"PlayerLeft","payload":{"clientUuid":"4ebc6e62","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T01:13:12.316522Z","actor":"14b0245d","eventType":"HostChanged","payload":{"newHostId":"14b0245d","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T01:13:12.3180546Z","actor":"14b0245d","eventType":"PlayerLeft","payload":{"clientUuid":"14b0245d","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T01:13:12.3196862Z","actor":"cb35ad0e","eventType":"HostChanged","payload":{"newHostId":"cb35ad0e","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T01:13:12.3212239Z","actor":"cb35ad0e","eventType":"PlayerLeft","payload":{"clientUuid":"cb35ad0e","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T01:13:12.3234885Z","actor":"62a6fd63","eventType":"HostChanged","payload":{"newHostId":"62a6fd63","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T01:13:12.3250178Z","actor":"62a6fd63","eventType":"PlayerLeft","payload":{"clientUuid":"62a6fd63","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/9119ee5ec68f43db/wal_20260127122237.ndjson b/data/lobbies/9119ee5ec68f43db/wal_20260127122237.ndjson new file mode 100644 index 0000000..5308433 --- /dev/null +++ b/data/lobbies/9119ee5ec68f43db/wal_20260127122237.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:22:37.4018963Z","actor":"ecff9ee3","eventType":"PlayerJoined","payload":{"clientUuid":"ecff9ee3","displayName":"Consist2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:22:52.8675747Z","actor":"ecff9ee3","eventType":"PlayerLeft","payload":{"clientUuid":"ecff9ee3","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/916583ebc52b4031/wal_20260127102751.ndjson b/data/lobbies/916583ebc52b4031/wal_20260127102751.ndjson new file mode 100644 index 0000000..c65e9aa --- /dev/null +++ b/data/lobbies/916583ebc52b4031/wal_20260127102751.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:27:51.0645558Z","actor":"1608ac04","eventType":"PlayerJoined","payload":{"clientUuid":"1608ac04","displayName":"StructTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:27:52.1571673Z","actor":"1608ac04","eventType":"PlayerLeft","payload":{"clientUuid":"1608ac04","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/92a59e40e47f46a4/snapshot_24.json b/data/lobbies/92a59e40e47f46a4/snapshot_24.json new file mode 100644 index 0000000..8db57f5 --- /dev/null +++ b/data/lobbies/92a59e40e47f46a4/snapshot_24.json @@ -0,0 +1,276 @@ +{ + "lobbyId": "92a59e40e47f46a4", + "lastEventId": 24, + "timestamp": "2026-01-27T14:19:25.6511339Z", + "checksum": "34a5e98d571d2b1417dcd8170b95ea7a4e54c25cdcbb43b0c6442527a0619d58", + "phase": "Playing", + "players": [ + { + "clientUuid": "d5b6a42a", + "displayName": "Hr\u00E1\u010D329", + "position": { + "lat": 50.77360212891568, + "lon": 15.072066545144711 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:14:25.4748393Z", + "lastPositionUpdate": "2026-01-27T14:19:25.4482291Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": "2026-01-27T14:17:23.8607905Z", + "emergencyMeetingsUsed": 2, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "cb379618", + "displayName": "Hr\u00E1\u010D723", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Dead", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:14:45.3520713Z", + "lastPositionUpdate": "2026-01-27T14:18:48.3375132Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "1545672a", + "displayName": "Hr\u00E1\u010D473", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:14:47.2696299Z", + "lastPositionUpdate": "2026-01-27T14:19:25.3302047Z", + "lastKillTime": "2026-01-27T14:18:47.9069569Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "69e62b18", + "displayName": "Hr\u00E1\u010D276", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T14:14:49.3924189Z", + "lastPositionUpdate": "2026-01-27T14:19:25.6462515Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [ + { + "bodyId": "096a1f19", + "victimId": "cb379618", + "killerId": "1545672a", + "location": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "killedAt": "2026-01-27T14:18:47.9069664Z", + "reported": false, + "reportedBy": null + } + ], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.7744712, + "lon": 15.0716784 + }, + "type": "Progress", + "durationMs": 5468, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7741888, + "lon": 15.0705734 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7743404, + "lon": 15.0686409 + }, + "type": "Progress", + "durationMs": 6822, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7740297, + "lon": 15.0744936 + }, + "type": "Progress", + "durationMs": 8038, + "steps": 1 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7739087, + "lon": 15.0680313 + }, + "type": "Progress", + "durationMs": 8266, + "steps": 1 + } + ], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 300, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/92a59e40e47f46a4/wal_20260127141425.ndjson b/data/lobbies/92a59e40e47f46a4/wal_20260127141425.ndjson new file mode 100644 index 0000000..5385f9c --- /dev/null +++ b/data/lobbies/92a59e40e47f46a4/wal_20260127141425.ndjson @@ -0,0 +1,30 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T14:14:25.5017201Z","actor":"d5b6a42a","eventType":"PlayerJoined","payload":{"clientUuid":"d5b6a42a","displayName":"Hr\u00E1\u010D329"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T14:14:45.3627959Z","actor":"cb379618","eventType":"PlayerJoined","payload":{"clientUuid":"cb379618","displayName":"Hr\u00E1\u010D723"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T14:14:47.2978087Z","actor":"1545672a","eventType":"PlayerJoined","payload":{"clientUuid":"1545672a","displayName":"Hr\u00E1\u010D473"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T14:14:49.4017066Z","actor":"69e62b18","eventType":"PlayerJoined","payload":{"clientUuid":"69e62b18","displayName":"Hr\u00E1\u010D276"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T14:14:50.8107608Z","actor":"d5b6a42a","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T14:14:55.2467352Z","actor":"d5b6a42a","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":300,"buildings":[[50.7745461,15.068435,50.7745442,15.0684319,50.7745427,15.0684282,50.7745418,15.0684242,50.7745414,15.0684199,50.7745416,15.0684156,50.7745424,15.0684115,50.7745436,15.0684076,50.7745325,15.0684021,50.7745114,15.0683361,50.7745265,15.0682651,50.7745687,15.0682323,50.7745794,15.0682386,50.7745799,15.0682342,50.7745809,15.06823,50.7745825,15.0682262,50.7745845,15.068223,50.7745868,15.0682205,50.7745894,15.0682187,50.7745922,15.0682178,50.7745902,15.0682115,50.7747555,15.0680808,50.7747568,15.0680849,50.7747999,15.0680509,50.7748009,15.068054,50.7748521,15.0680136,50.7748892,15.0681308,50.7748793,15.0681387,50.7749449,15.0683455,50.774878,15.0683975,50.7748685,15.0683671,50.7747463,15.0684635,50.7749105,15.0689829,50.7748218,15.0690522,50.7748401,15.06911,50.7748162,15.0691292,50.7748175,15.0691336,50.7748119,15.069138,50.7748105,15.0691336,50.7747865,15.0691526,50.7747888,15.0691596,50.774743,15.0691962,50.7747199,15.0691237,50.7747243,15.0691202,50.7747121,15.069082,50.7747093,15.0690841,50.7747062,15.0690744,50.774709,15.0690722,50.774697,15.0690349,50.7746942,15.0690371,50.774691,15.0690269,50.7746938,15.0690248,50.7746815,15.0689863,50.7746787,15.0689885,50.7746752,15.0689775,50.774678,15.0689753,50.7746594,15.0689171,50.7746476,15.0689265,50.7746447,15.0689406,50.7746371,15.0689371,50.7746403,15.0689213,50.7746221,15.0688631,50.7746152,15.0688687,50.7746114,15.0688568,50.7746184,15.0688513,50.7746011,15.0687979,50.7745942,15.0688035,50.7745905,15.0687918,50.7745975,15.0687862,50.7745802,15.0687324,50.7745732,15.068738,50.7745695,15.0687266,50.7745766,15.068721,50.7745579,15.0686635,50.7745476,15.068658,50.7745502,15.0686462,50.7745591,15.0686512,50.7745712,15.0686416,50.7745565,15.068596,50.7745853,15.068573,50.7745419,15.0684384,50.7745461,15.068435],[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7737609,15.0756722,50.7733592,15.0758264,50.7733283,15.0756269,50.7734115,15.075595,50.7737306,15.0754725,50.7737609,15.0756722],[50.7728164,15.0743732,50.7728485,15.0745747,50.7725941,15.0746753,50.7725605,15.0746887,50.77243,15.0747403,50.7723979,15.074539,50.7728164,15.0743732],[50.7725313,15.0749147,50.7726529,15.0756781,50.7727128,15.0756542,50.772748,15.0756402,50.7730037,15.0755384,50.7728821,15.0747749,50.7726287,15.0748818,50.7725942,15.0748893,50.7725313,15.0749147],[50.773066,15.0759402,50.7726476,15.076106,50.7726155,15.0759049,50.7727444,15.0758538,50.7727789,15.0758402,50.7730339,15.0757391,50.773066,15.0759402],[50.7730564,15.0742132,50.7730091,15.0742672,50.7729888,15.0743735,50.7729855,15.0744805,50.7730088,15.0745931,50.773075,15.0746995,50.7731352,15.0747229,50.7730564,15.0742132],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.7727444,15.0758538,50.7727789,15.0758402,50.772748,15.0756402,50.7727128,15.0756542,50.7727444,15.0758538],[50.7725942,15.0748893,50.7725605,15.0746887,50.7725941,15.0746753,50.7726287,15.0748818,50.7725942,15.0748893],[50.7730091,15.0742672,50.7729836,15.0743201,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7731352,15.0747229,50.773075,15.0746995,50.7730088,15.0745931,50.7729855,15.0744805,50.7729888,15.0743735,50.7730091,15.0742672],[50.771201,15.0731002,50.7712149,15.0730929,50.7712263,15.0731478,50.7712125,15.073155,50.7712242,15.0732104,50.7711429,15.0732526,50.7711139,15.0731131,50.7711203,15.0731097,50.7711183,15.0731004,50.7711487,15.0730845,50.7711506,15.073094,50.7711949,15.073071,50.771201,15.0731002],[50.7755317,15.0731221,50.7755497,15.0731082,50.7755709,15.0731759,50.7755529,15.0731898,50.7755682,15.0732392,50.7754771,15.07331,50.7754254,15.0731437,50.775516,15.0730717,50.7755317,15.0731221],[50.7758916,15.0731727,50.7759039,15.0731678,50.7758887,15.0730724,50.7759407,15.0730522,50.7759351,15.0730165,50.7759994,15.0729916,50.776005,15.0730275,50.7760455,15.0730118,50.7760655,15.073142,50.7760681,15.0731409,50.7760766,15.0731935,50.7760562,15.0732016,50.7760713,15.0732959,50.7760153,15.0733176,50.7760158,15.073321,50.7760086,15.0733238,50.7760107,15.0733366,50.7759703,15.0733523,50.7759684,15.0733399,50.7759615,15.0733426,50.7759586,15.0733242,50.7759295,15.0733354,50.7759169,15.0732559,50.7759057,15.0732603,50.7759034,15.0732456,50.7758833,15.0732536,50.7758741,15.0731953,50.775894,15.0731874,50.7758916,15.0731727],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7723782,15.0704051,50.7724179,15.0703895,50.7724196,15.0703994,50.7724249,15.0703973,50.7724371,15.0704083,50.7724617,15.0705635,50.7724001,15.0705882,50.7723991,15.0705819,50.7723733,15.0705922,50.7723705,15.0705752,50.772345,15.0705852,50.7723394,15.0705505,50.7722933,15.0705688,50.772276,15.0704604,50.7722947,15.0704531,50.7722899,15.070425,50.7723176,15.0704137,50.7723156,15.0704012,50.7723743,15.0703783,50.7723782,15.0704051],[50.7719392,15.069201,50.7719557,15.0692534,50.7719746,15.0692383,50.7720312,15.0694126,50.7719876,15.0694473,50.7719917,15.0694599,50.7719637,15.0694826,50.7719596,15.06947,50.7719351,15.0694894,50.771918,15.0694372,50.7719013,15.0694507,50.7718988,15.0694431,50.7718971,15.0694444,50.7718821,15.0693984,50.7719006,15.0693834,50.771886,15.0693386,50.7718902,15.0693352,50.7718828,15.0693125,50.7719044,15.0692954,50.7718872,15.0692425,50.7719392,15.069201],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7718969,15.070342,50.7717392,15.0704035,50.771738,15.0703959,50.7717168,15.0703753,50.7717125,15.0703768,50.7717008,15.0703037,50.7717466,15.0702859,50.7717422,15.070258,50.7717129,15.0702695,50.7717107,15.0702632,50.7717123,15.070262,50.7716835,15.0701797,50.7716816,15.0701804,50.7716801,15.0701694,50.7716857,15.0701674,50.7716867,15.0701745,50.7717862,15.0700924,50.7718536,15.0700661,50.7718969,15.070342],[50.7717661,15.0687683,50.7718048,15.0689889,50.7717493,15.0690135,50.7717104,15.0687914,50.7717661,15.0687683],[50.7716331,15.0694814,50.7716347,15.0694898,50.7716504,15.0694825,50.7716563,15.0695143,50.7717084,15.06949,50.7717301,15.0696051,50.7717215,15.069609,50.7717325,15.0696695,50.7716899,15.0696897,50.7716932,15.0697072,50.7716296,15.069737,50.7716288,15.0697331,50.7716091,15.0697428,50.7715967,15.0696765,50.771594,15.0696777,50.7715784,15.069595,50.7715812,15.0695937,50.7715721,15.0695444,50.7716168,15.0695236,50.7716109,15.0694918,50.7716331,15.0694814],[50.7716402,15.0692344,50.7716558,15.0692276,50.7716722,15.0693209,50.7716533,15.0693291,50.7716548,15.0693377,50.7716226,15.0693516,50.771628,15.0693827,50.7715952,15.0693971,50.7715944,15.0693925,50.7715918,15.0693936,50.7715874,15.0693685,50.7715447,15.0693872,50.7715412,15.0693669,50.7715385,15.069368,50.7715321,15.0693464,50.7715307,15.0693234,50.7715333,15.0693223,50.7715294,15.0693002,50.7715342,15.0692984,50.7715244,15.0692429,50.7715304,15.0692257,50.7716309,15.0691819,50.7716402,15.0692344],[50.7720818,15.0698367,50.772105,15.0699079,50.772122,15.0698938,50.772152,15.0699865,50.7721535,15.0699909,50.7721365,15.0700047,50.772137,15.0700063,50.7720541,15.0700728,50.7720501,15.0700601,50.772013,15.0700895,50.7719676,15.0699485,50.7719655,15.06995,50.7719594,15.0699311,50.7719689,15.0699235,50.7719698,15.0699266,50.772043,15.0698679,50.772048,15.0698457,50.7720609,15.0698353,50.7720728,15.0698439,50.7720818,15.0698367],[50.7723238,15.0696814,50.7723396,15.0696894,50.772346,15.0697092,50.7723402,15.0697316,50.7723347,15.069736,50.7723767,15.0698618,50.7723655,15.069871,50.7723664,15.0698737,50.772361,15.0698996,50.7723311,15.0699239,50.7723126,15.0699145,50.7723091,15.0699037,50.7722507,15.0699512,50.7722036,15.0698068,50.7722091,15.0698024,50.7721972,15.0697668,50.7722286,15.0697414,50.7722269,15.0697363,50.7722739,15.0696982,50.77228,15.069717,50.7723238,15.0696814],[50.7721996,15.0690288,50.7722045,15.0690511,50.7722264,15.0690392,50.7722394,15.0690979,50.7722351,15.0691002,50.7722512,15.0691727,50.7722554,15.0691704,50.7722655,15.0691768,50.7722709,15.0692007,50.7722657,15.0692166,50.7722615,15.0692189,50.7722652,15.0692358,50.7722176,15.0692626,50.7722168,15.0692592,50.7721607,15.0692901,50.772145,15.0692197,50.7721235,15.0692315,50.7721122,15.0691806,50.7721337,15.0691688,50.7721118,15.0690705,50.7721576,15.0690452,50.772159,15.0690514,50.7721996,15.0690288],[50.7726999,15.0698343,50.772729,15.0698615,50.7727152,15.0698967,50.7727324,15.0700044,50.7727307,15.0700051,50.7727353,15.0700342,50.7726769,15.0700574,50.7726809,15.0700825,50.772646,15.0700963,50.7726447,15.0700879,50.7726056,15.0701034,50.7726003,15.0700707,50.7725917,15.0700742,50.7725816,15.0700099,50.7725771,15.0700118,50.7725627,15.0699211,50.7725734,15.0699165,50.7725698,15.0698931,50.7726598,15.0698571,50.7726603,15.0698612,50.772695,15.0698471,50.7726999,15.0698343],[50.773142,15.069712,50.773132,15.069731,50.773141,15.069786,50.773051,15.069821,50.773027,15.069671,50.773074,15.069656,50.773066,15.069626,50.773114,15.069608,50.773125,15.069682,50.77314,15.069691,50.773142,15.069712],[50.7727178,15.0695693,50.7726282,15.0696411,50.7726029,15.0695624,50.7726109,15.069556,50.7725855,15.0694771,50.7726289,15.0694425,50.7726328,15.069455,50.7726712,15.0694243,50.7727178,15.0695693],[50.7730417,15.0690918,50.7730463,15.0691046,50.7730429,15.0691219,50.7730551,15.0691603,50.7730628,15.0691543,50.773084,15.0692213,50.7730762,15.069227,50.7730986,15.0693044,50.773047,15.0693451,50.7730505,15.069356,50.7730453,15.0693602,50.7730537,15.0693865,50.7730341,15.0694018,50.7730259,15.0693757,50.7730211,15.0693794,50.7730176,15.0693684,50.7729658,15.0694094,50.7729325,15.0693072,50.7729279,15.069311,50.7729036,15.0692366,50.7729082,15.0692328,50.7728972,15.069199,50.7729328,15.0691702,50.7729299,15.0691614,50.7729809,15.06912,50.7729837,15.0691289,50.7730122,15.0691058,50.7730157,15.0690888,50.773024,15.069082,50.7730247,15.069079,50.7730424,15.0690888,50.7730417,15.0690918],[50.7725168,15.0686991,50.772542,15.0687771,50.7725614,15.0687614,50.7725927,15.0688585,50.77259,15.0688649,50.7725759,15.0688212,50.7725603,15.0688337,50.7725853,15.0689114,50.7725438,15.0689446,50.7725462,15.0689522,50.7725445,15.0689535,50.772553,15.0689798,50.772495,15.0690263,50.7724865,15.069,50.7724849,15.0690013,50.7724824,15.068994,50.7724554,15.0690156,50.7724562,15.0690215,50.7724562,15.0690275,50.7724556,15.0690334,50.7724543,15.069039,50.7724523,15.0690442,50.7724498,15.0690487,50.7724468,15.0690523,50.7724434,15.0690551,50.7724398,15.0690568,50.772436,15.0690574,50.7724322,15.0690569,50.7724285,15.0690553,50.7724251,15.0690526,50.772422,15.069049,50.7724195,15.0690446,50.7724175,15.0690395,50.7724161,15.069034,50.7724154,15.0690281,50.7724154,15.0690221,50.7724161,15.0690162,50.7724175,15.0690106,50.7724195,15.0690055,50.772422,15.0690011,50.7724251,15.0689975,50.7723672,15.0688201,50.7724192,15.068778,50.7724205,15.068782,50.7724717,15.0687406,50.7724704,15.0687366,50.7725168,15.0686991],[50.7728276,15.0686055,50.772848,15.0685892,50.7728637,15.068638,50.7728376,15.0686589,50.7728639,15.0687407,50.7728516,15.0687505,50.7728528,15.0687546,50.7728491,15.0687715,50.7728304,15.0687864,50.7728199,15.0687808,50.7728186,15.0687769,50.7728062,15.0687869,50.7728021,15.0687743,50.7727319,15.0688305,50.7727097,15.0687615,50.7727016,15.0687681,50.7726805,15.0687028,50.7726887,15.0686963,50.7726712,15.0686419,50.7727204,15.0686025,50.7727268,15.0686225,50.7728114,15.0685551,50.7728276,15.0686055],[50.7730904,15.0685326,50.7730997,15.0685612,50.773081,15.0685761,50.7730788,15.0685694,50.7730584,15.0685857,50.7730617,15.0685958,50.773011,15.0686364,50.7730077,15.0686263,50.7729683,15.0686579,50.772935,15.0685549,50.7729655,15.0685304,50.7729481,15.0684762,50.773043,15.0684012,50.7730864,15.0685359,50.7730904,15.0685326],[50.7716696,15.0716616,50.7716897,15.0717914,50.771695,15.0717895,50.7717047,15.0718521,50.7716994,15.0718541,50.77172,15.0719862,50.7716258,15.0720225,50.7716232,15.0720236,50.7715726,15.071699,50.7715753,15.071698,50.7716696,15.0716616],[50.7712498,15.0720491,50.7712521,15.0720466,50.7712738,15.0720937,50.7712715,15.0720961,50.7713111,15.0721816,50.7712362,15.0722677,50.7712131,15.0722177,50.7712099,15.0722215,50.7711808,15.0721587,50.7711841,15.0721549,50.7711611,15.0721053,50.7712362,15.0720195,50.7712498,15.0720491],[50.7709567,15.0716121,50.7709553,15.0716138,50.7709942,15.0716881,50.770979,15.0717075,50.7709802,15.0717096,50.7709646,15.0717295,50.7709657,15.0717317,50.7709483,15.071754,50.7709547,15.0717665,50.7709307,15.0717973,50.7709242,15.0717847,50.7708805,15.0718369,50.7707819,15.0716451,50.770881,15.0715185,50.7708831,15.0715225,50.7708995,15.0715015,50.7709567,15.0716121],[50.77188,15.0705055,50.7719168,15.0707362,50.771912,15.070738,50.7719144,15.0707531,50.7718739,15.0707692,50.7718715,15.0707541,50.7717996,15.0707827,50.7718002,15.0707866,50.7717919,15.0707898,50.7717846,15.0707436,50.771787,15.0707426,50.7717741,15.0706612,50.7717619,15.070666,50.7717533,15.0706117,50.7717636,15.0706076,50.7717609,15.0705907,50.7717972,15.0705759,50.7717916,15.0705415,50.77188,15.0705055],[50.7716314,15.0714165,50.7716475,15.0715199,50.7716527,15.0715178,50.7716625,15.0715804,50.7716572,15.0715825,50.7716696,15.0716616,50.7715753,15.071698,50.7715372,15.0714534,50.7716314,15.0714165],[50.7715727,15.0711217,50.7715782,15.0711196,50.7715878,15.071183,50.7715824,15.0711849,50.7716025,15.0713169,50.7715079,15.071353,50.7714576,15.0710256,50.7715525,15.0709895,50.7715727,15.0711217],[50.7711492,15.0726848,50.771164,15.0726802,50.7711722,15.0727467,50.7711575,15.0727513,50.7711631,15.0727959,50.7711496,15.0728,50.7711552,15.0728455,50.7710943,15.0728643,50.7710886,15.0728186,50.7710747,15.072823,50.7710594,15.0726997,50.7710664,15.0726827,50.7711459,15.0726582,50.7711492,15.0726848],[50.77172,15.0719862,50.771732,15.0720637,50.7717372,15.0720616,50.7717469,15.0721238,50.7717416,15.0721259,50.7717577,15.0722293,50.7716638,15.0722668,50.7716258,15.0720225,50.77172,15.0719862],[50.7717616,15.0723435,50.77178,15.072462,50.7717849,15.0724602,50.7717946,15.0725231,50.7717899,15.0725249,50.7718084,15.0726443,50.7717139,15.0726808,50.7716669,15.0723802,50.7717616,15.0723435],[50.7715212,15.0729113,50.7715246,15.07291,50.7715314,15.0729541,50.7715281,15.0729555,50.7715397,15.0730301,50.7715026,15.0730444,50.7715058,15.0730649,50.7714458,15.0730881,50.7714119,15.0728744,50.7715097,15.0728371,50.7715212,15.0729113],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.7720045,15.0709227,50.772005,15.0709172,50.7720062,15.0709119,50.772008,15.0709071,50.7720104,15.070903,50.7720133,15.0708997,50.7720165,15.0708973,50.77202,15.0708961,50.7720235,15.0708959,50.772027,15.0708969,50.7720391,15.0709096,50.7720867,15.0708928,50.7720994,15.0709764,50.7721537,15.0709559,50.7721671,15.0710455,50.7719941,15.0711106,50.7719814,15.0711234,50.7719683,15.0711194,50.7719597,15.0710846,50.7719494,15.0710158,50.7719544,15.0710139,50.7719442,15.0709464,50.7720045,15.0709227],[50.7721196,15.0713084,50.7721221,15.0713249,50.7721299,15.0713219,50.7721291,15.0713171,50.7721603,15.0713049,50.772182,15.0714453,50.7720991,15.0714775,50.772103,15.0715023,50.7720736,15.0715137,50.7720696,15.0714889,50.7720121,15.0715115,50.7719909,15.071376,50.7721064,15.071331,50.7721039,15.0713145,50.7721196,15.0713084],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7761449,15.0703316,50.7761179,15.0703529,50.7761097,15.0703272,50.7760299,15.0703905,50.7760092,15.0703254,50.7760148,15.070321,50.7759932,15.0702533,50.7760409,15.0702155,50.7760316,15.0701866,50.7760979,15.0701337,50.7761302,15.0702348,50.7761173,15.070245,50.7761449,15.0703316],[50.7760443,15.0710321,50.7760576,15.071075,50.7760591,15.0710737,50.7760831,15.0711496,50.776066,15.0711629,50.7760924,15.071248,50.7760461,15.0712852,50.7760434,15.0712767,50.7760163,15.0712991,50.7760123,15.0713179,50.7759823,15.0713023,50.7759859,15.0712854,50.775964,15.0713026,50.7759458,15.0712452,50.7759573,15.0712362,50.7759333,15.0711603,50.7759433,15.0711525,50.7759323,15.0711179,50.7760102,15.0710566,50.7760108,15.0710586,50.7760443,15.0710321],[50.7751637,15.0704631,50.7751873,15.0704442,50.7752075,15.0705078,50.7751834,15.0705268,50.7752149,15.0706272,50.7751841,15.0706516,50.7751864,15.0706585,50.7751582,15.0706809,50.7751444,15.0706376,50.7751096,15.0706651,50.7750901,15.0706039,50.7750846,15.0706083,50.7750809,15.0705965,50.7750661,15.0706082,50.7750462,15.0705455,50.775061,15.0705338,50.7750569,15.0705212,50.7750624,15.0705168,50.775043,15.0704557,50.7750718,15.0704331,50.7750711,15.070431,50.7751024,15.0704062,50.7751031,15.0704085,50.7751379,15.0703814,50.7751637,15.0704631],[50.775839,15.0705962,50.7758489,15.0706274,50.7757856,15.0706776,50.7757351,15.0705194,50.7758088,15.070461,50.7758023,15.0704406,50.7758279,15.0704204,50.7758748,15.0705681,50.775839,15.0705962],[50.7737764,15.0696257,50.7737483,15.0695369,50.7737403,15.0695433,50.7737122,15.0694542,50.7737043,15.0694607,50.7736754,15.0693688,50.7736791,15.0693655,50.7736681,15.0693307,50.7737285,15.0693317,50.7737608,15.0693064,50.7737573,15.0692958,50.7738589,15.0692155,50.7738904,15.0693154,50.7738824,15.0693216,50.7739105,15.0694104,50.7739025,15.0694166,50.7739306,15.0695055,50.7739226,15.0695117,50.7739502,15.0695993,50.7738119,15.0697078,50.7737843,15.0696195,50.7737764,15.0696257],[50.7735638,15.0690008,50.7737809,15.0688307,50.7738792,15.0691536,50.7738473,15.0691787,50.7738589,15.0692155,50.7737573,15.0692958,50.7737608,15.0693064,50.7737285,15.0693317,50.7736675,15.0693285,50.7735638,15.0690008],[50.7740925,15.0690877,50.7740919,15.0690789,50.7740925,15.0690611,50.7740955,15.069044,50.7741009,15.0690283,50.7741043,15.0690213,50.7741083,15.0690149,50.7741099,15.0690161,50.7741376,15.0689945,50.7741376,15.0689916,50.7741405,15.0689882,50.7741438,15.0689856,50.7741473,15.0689841,50.7741509,15.0689836,50.7741546,15.0689842,50.774158,15.0689858,50.7741613,15.0689885,50.7741642,15.068992,50.7741666,15.0689963,50.7741662,15.0689991,50.7741822,15.0690097,50.7741853,15.069015,50.77419,15.069025,50.7741989,15.0690304,50.7742022,15.0690137,50.7742129,15.0690051,50.7742247,15.0690108,50.7742299,15.0690282,50.774226,15.0690463,50.7742234,15.0690483,50.7742388,15.0690966,50.7742455,15.0690912,50.7742471,15.069096,50.77425,15.0690937,50.7742794,15.0691858,50.7742765,15.0691881,50.7742778,15.0691927,50.7742711,15.0691981,50.7742945,15.0692721,50.7742469,15.0693098,50.774253,15.0693291,50.7742123,15.0693608,50.7742064,15.0693419,50.7741579,15.0693803,50.7741342,15.0693074,50.7741317,15.0693093,50.7740993,15.0692097,50.7741017,15.0692078,50.7740769,15.0691302,50.7740993,15.069112,50.7740943,15.0690882,50.7740925,15.0690877],[50.774568,15.0701178,50.7745736,15.0701133,50.7746048,15.0702115,50.7745992,15.0702159,50.7746189,15.0702782,50.7745738,15.070314,50.7745779,15.0703267,50.7745727,15.0703308,50.7745751,15.0703383,50.7745525,15.0703562,50.7745502,15.0703486,50.7745449,15.0703528,50.7745409,15.0703401,50.7744982,15.0703739,50.7744976,15.0703719,50.7744686,15.0703949,50.7744433,15.0703172,50.7744772,15.07029,50.7744786,15.0702948,50.7744946,15.0702822,50.7744707,15.0702074,50.7744388,15.0702327,50.7744158,15.0701606,50.7745481,15.070055,50.774568,15.0701178],[50.774455,15.0696524,50.7744653,15.0696852,50.7744434,15.0697027,50.7744451,15.0697083,50.7744415,15.0697112,50.7744645,15.0697834,50.7744193,15.0698193,50.7744298,15.0698521,50.7744243,15.0698565,50.7744257,15.0698609,50.7743991,15.0698822,50.7743977,15.0698778,50.7743919,15.0698824,50.7743814,15.0698496,50.7743365,15.0698853,50.7742538,15.0696254,50.7742964,15.0695919,50.7742911,15.0695754,50.774334,15.0695415,50.7743393,15.0695579,50.774382,15.0695239,50.774405,15.0695964,50.7744086,15.0695935,50.7744103,15.0695992,50.7744323,15.0695819,50.7744425,15.0696138,50.774445,15.0696122,50.7744477,15.0696115,50.7744504,15.0696116,50.774453,15.0696125,50.7744555,15.0696142,50.7744577,15.0696166,50.7744596,15.0696196,50.7744611,15.0696232,50.7744621,15.0696271,50.7744625,15.0696313,50.7744625,15.0696356,50.7744619,15.0696397,50.7744609,15.0696437,50.7744593,15.0696473,50.7744573,15.0696502,50.774455,15.0696524],[50.7759103,15.0699581,50.7759066,15.069961,50.7758897,15.0699506,50.7758818,15.0699259,50.7758869,15.0698981,50.7758906,15.0698954,50.7758845,15.069876,50.7758918,15.0698704,50.7758705,15.0698027,50.7758901,15.0697873,50.7758894,15.0697847,50.7759593,15.0697301,50.77596,15.0697326,50.77598,15.0697171,50.7760543,15.0699538,50.7760311,15.0699719,50.7760351,15.0699844,50.7760194,15.0699966,50.7760214,15.0700029,50.7759908,15.0700268,50.7759849,15.070008,50.7759448,15.0700393,50.7759236,15.0699717,50.7759163,15.0699775,50.7759103,15.0699581],[50.7755618,15.0695847,50.7754311,15.0696877,50.7753763,15.0695122,50.775415,15.0694824,50.7754142,15.0694798,50.7754681,15.0694379,50.7754688,15.0694404,50.7755073,15.0694106,50.7755618,15.0695847],[50.7757585,15.0702054,50.7757272,15.0702301,50.7757343,15.0702527,50.7757159,15.0702673,50.7757087,15.0702448,50.7756546,15.0702876,50.7756396,15.0702402,50.7756445,15.0702364,50.7756193,15.0701569,50.7756271,15.0701507,50.7756104,15.0700983,50.7756469,15.0700695,50.7756435,15.0700589,50.7756805,15.0700297,50.7756839,15.0700403,50.7757051,15.0700234,50.7757222,15.0700774,50.7757257,15.0700748,50.7757481,15.0701449,50.775741,15.0701504,50.7757585,15.0702054],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7756,15.070556,50.775557,15.070589,50.77557,15.070632,50.775611,15.070598,50.7756,15.070556],[50.7759381,15.0709403,50.7759471,15.0709679,50.7759188,15.0709911,50.77592,15.0709945,50.7758541,15.0710484,50.7758466,15.0710258,50.7758387,15.07102,50.7758338,15.0710051,50.7758334,15.0709853,50.7758282,15.0709695,50.7758497,15.0709518,50.7758277,15.0708853,50.7759452,15.0707891,50.7759829,15.0709036,50.7759381,15.0709403],[50.7755144,15.0714779,50.7755518,15.0715956,50.7755475,15.0715991,50.7755594,15.0716365,50.7755236,15.0716648,50.7755177,15.0716466,50.7754841,15.0716731,50.7754795,15.0716583,50.7754351,15.0716934,50.7754128,15.0716233,50.77541,15.0716256,50.7754073,15.071617,50.7753938,15.0716276,50.7753769,15.0715747,50.7753905,15.0715639,50.7753877,15.0715551,50.7753905,15.0715529,50.7753684,15.0714836,50.7754103,15.0714505,50.7754072,15.0714409,50.775441,15.0714141,50.7754441,15.0714238,50.7754838,15.0713932,50.7755115,15.0714802,50.7755144,15.0714779],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.775303,15.0708614,50.7753184,15.0709103,50.7753202,15.070909,50.7753624,15.0710422,50.7753529,15.0710495,50.7753654,15.0710889,50.7753131,15.0711301,50.7753107,15.0711226,50.7752656,15.071158,50.7752449,15.0710924,50.7752362,15.071099,50.7752326,15.0710873,50.7752269,15.0710917,50.775217,15.0710861,50.7752073,15.0710557,50.7752106,15.0710399,50.7752162,15.0710354,50.7752124,15.0710236,50.775221,15.071017,50.7752003,15.0709515,50.7752454,15.070916,50.7752431,15.0709085,50.775303,15.0708614],[50.7752185,15.0721634,50.7752173,15.0721699,50.7752377,15.0722341,50.7752458,15.0722278,50.7752745,15.0723183,50.7752722,15.0723202,50.7752824,15.0723534,50.7752432,15.0723848,50.775244,15.0723872,50.775166,15.0724485,50.7751263,15.0723232,50.7751352,15.0723161,50.7751014,15.0722114,50.7751542,15.0721689,50.7751574,15.0721791,50.7751886,15.0721541,50.7751895,15.0721481,50.7752005,15.0721393,50.775213,15.0721462,50.7752185,15.0721634],[50.7753236,15.072471,50.7753318,15.0724972,50.7753303,15.0724983,50.775344,15.0725419,50.7753489,15.072538,50.7753534,15.0725525,50.7753715,15.0725383,50.7753897,15.0725948,50.7753714,15.0726089,50.7753762,15.0726237,50.7753711,15.0726277,50.7753867,15.0726751,50.7752966,15.0727459,50.7752578,15.0726231,50.7752331,15.0725457,50.7752581,15.0725259,50.7752549,15.0725159,50.7753138,15.0724655,50.7753236,15.072471],[50.7754147,15.0727618,50.7754356,15.0728252,50.7754517,15.0728119,50.775474,15.0728795,50.7754576,15.0728929,50.7754817,15.0729652,50.7753703,15.0730554,50.7753603,15.073049,50.7753585,15.0730433,50.7753281,15.0730694,50.7753066,15.0730632,50.7752957,15.0730318,50.7753049,15.0730012,50.7752933,15.0729659,50.7753299,15.072936,50.7753148,15.0728901,50.7752913,15.0729095,50.7752681,15.0728393,50.7754049,15.0727269,50.7754161,15.0727608,50.7754147,15.0727618],[50.7758491,15.0725117,50.7759179,15.0727317,50.7758831,15.0727588,50.7758874,15.0727725,50.7758528,15.0727995,50.7758488,15.0727867,50.7758012,15.0728239,50.7758001,15.0728205,50.7757819,15.0728346,50.7757632,15.0727737,50.7757821,15.0727588,50.7757446,15.0726397,50.7757373,15.0726453,50.7757152,15.0725743,50.775768,15.0725333,50.7757642,15.0725208,50.7758156,15.0724807,50.7758299,15.0725266,50.7758491,15.0725117],[50.7757385,15.07206,50.7757616,15.0721328,50.7757632,15.0721316,50.7757897,15.0722151,50.7757422,15.0722534,50.7757469,15.0722678,50.7757104,15.0722973,50.7757057,15.0722826,50.7756555,15.072323,50.7756326,15.0722507,50.7756025,15.0722726,50.775573,15.0721801,50.7756022,15.0721554,50.7755793,15.0720833,50.7756277,15.0720443,50.7756266,15.0720408,50.7756313,15.0720192,50.7756559,15.0719993,50.7756699,15.072006,50.775671,15.0720094,50.7757135,15.0719752,50.7757401,15.0720588,50.7757385,15.07206],[50.7761693,15.0715,50.7762341,15.071702,50.7761378,15.0717789,50.7760978,15.0716552,50.7760761,15.0716534,50.7760621,15.0716103,50.7760729,15.0715776,50.7761159,15.071543,50.7761102,15.0715254,50.776135,15.0715054,50.7761408,15.0715229,50.7761693,15.0715],[50.7762676,15.0718614,50.7762846,15.0718485,50.7763221,15.0719677,50.7763052,15.071981,50.7763008,15.0720018,50.7762876,15.072012,50.7762727,15.0720045,50.7762343,15.0720346,50.7762194,15.0719873,50.7762138,15.0719917,50.7761911,15.0719254,50.7761926,15.0719244,50.7761735,15.0718696,50.776251,15.0718089,50.7762676,15.0718614],[50.7763811,15.0722623,50.7763783,15.0722648,50.7763753,15.0722665,50.7763721,15.0722673,50.7763688,15.0722674,50.7763657,15.0722665,50.7763626,15.0722649,50.7763598,15.0722625,50.7763294,15.0722865,50.7763195,15.072256,50.7763039,15.0722686,50.7762891,15.0722224,50.7762642,15.0722425,50.7762565,15.0722374,50.7762524,15.0722247,50.7762616,15.0722173,50.7762438,15.0721623,50.7762609,15.0721485,50.7762593,15.0721437,50.7763068,15.0721062,50.776306,15.0721038,50.7763519,15.0720674,50.7763682,15.0721183,50.7763786,15.07211,50.7763994,15.0721757,50.7763733,15.0721963,50.7763799,15.072217,50.7763825,15.0722202,50.7763848,15.0722242,50.7763865,15.0722288,50.7763876,15.0722339,50.7763881,15.0722391,50.7763879,15.0722444,50.7763871,15.0722496,50.7763856,15.0722544,50.7763836,15.0722587,50.7763811,15.0722623],[50.7761902,15.0728079,50.7762457,15.0727639,50.7762824,15.072881,50.7762273,15.0729245,50.7761902,15.0728079],[50.7713076,15.0736031,50.771316,15.0736021,50.7713204,15.0736845,50.7713121,15.0736856,50.7713128,15.0737002,50.7712233,15.0737121,50.7712221,15.0736886,50.7712109,15.0736902,50.7712072,15.0736209,50.7712184,15.0736194,50.7712141,15.07354,50.7713036,15.0735281,50.7713076,15.0736031],[50.7716205,15.0735307,50.7716231,15.0735323,50.7716243,15.0735362,50.7716245,15.0735549,50.7716256,15.073555,50.7716295,15.0735572,50.7716312,15.0735631,50.7716337,15.0737085,50.7716322,15.0737147,50.7716284,15.0737173,50.7715513,15.0737205,50.7715475,15.0737183,50.7715458,15.0737124,50.7715451,15.0736726,50.7715356,15.0736731,50.7715318,15.0736708,50.7715302,15.0736648,50.7715293,15.073616,50.7715307,15.0736098,50.7715345,15.0736072,50.771544,15.0736067,50.7715433,15.073567,50.7715448,15.0735608,50.7715486,15.0735582,50.7715771,15.0735569,50.7715766,15.0735326,50.7716205,15.0735307],[50.7717049,15.0740075,50.7717387,15.0742209,50.7716368,15.0742603,50.7716231,15.0741713,50.7716164,15.0741655,50.7716134,15.0741461,50.7716174,15.0741355,50.7716038,15.0740466,50.7717049,15.0740075],[50.7713128,15.0741365,50.7713483,15.0742015,50.7713595,15.0742004,50.7713739,15.0742263,50.7713713,15.0742454,50.7713894,15.0742795,50.7713384,15.0743479,50.7713338,15.0743394,50.7712982,15.0743872,50.7712259,15.0742531,50.7713128,15.0741365],[50.7760704,15.073696,50.7761098,15.0736807,50.7761323,15.0738207,50.7761353,15.0738195,50.7761405,15.0738231,50.7761473,15.0738658,50.7761446,15.0738745,50.7761411,15.0738758,50.7761589,15.0739866,50.7760742,15.0740191,50.7760675,15.0739757,50.7760242,15.0739925,50.77602,15.0739869,50.775995,15.0738272,50.7759898,15.0738293,50.7759878,15.0738173,50.7759791,15.0738209,50.7759674,15.0737499,50.7759755,15.0737467,50.7759734,15.0737337,50.7760234,15.0737133,50.7760223,15.0737069,50.7760691,15.0736878,50.7760704,15.073696],[50.7747953,15.0734128,50.7749794,15.0734047,50.7749886,15.0739546,50.7748051,15.0739635,50.774805,15.0739561,50.7747954,15.0734185,50.7747953,15.0734128],[50.7756061,15.0736962,50.775624,15.0736888,50.7756265,15.0737042,50.7756439,15.0737121,50.7756486,15.0737412,50.7756359,15.0737616,50.7756382,15.0737763,50.7755857,15.0737997,50.7755912,15.07383,50.7755649,15.0738409,50.7755676,15.0738569,50.7755396,15.0738682,50.775537,15.0738526,50.775514,15.0738621,50.7755186,15.0738892,50.7754923,15.0738998,50.775475,15.073798,50.7754816,15.0737954,50.7754741,15.07375,50.7754838,15.0737452,50.7754647,15.0736345,50.7755874,15.0735825,50.7756061,15.0736962],[50.775309,15.075513,50.775182,15.075528,50.775187,15.075621,50.77522,15.075616,50.775224,15.075639,50.775242,15.075636,50.775252,15.075654,50.77526,15.075636,50.775279,15.075632,50.775277,15.075608,50.775314,15.075607,50.775309,15.075513],[50.7755391,15.0745415,50.7755432,15.0745665,50.7755573,15.0745608,50.775565,15.0746086,50.775551,15.0746143,50.7755601,15.0746696,50.7755334,15.0746799,50.775536,15.0746962,50.7755284,15.0747165,50.775506,15.0747252,50.7754938,15.0747127,50.7754912,15.0746965,50.7754634,15.0747072,50.775442,15.0745792,50.7755391,15.0745415],[50.7750127,15.0741195,50.7750892,15.0741161,50.7750896,15.0741643,50.7751156,15.0741644,50.7751158,15.0742121,50.7751348,15.0742119,50.7751352,15.074264,50.775116,15.0742642,50.7751162,15.074331,50.7750807,15.0743318,50.7750811,15.0743552,50.7749926,15.0743583,50.7749916,15.0741455,50.7750131,15.0741446,50.7750127,15.0741195],[50.7754584,15.0741179,50.7754585,15.0741884,50.7754788,15.0741883,50.775479,15.0742421,50.7754587,15.0742422,50.7754589,15.0743284,50.7754073,15.0743283,50.7753995,15.0743413,50.7753807,15.0743414,50.7753727,15.0743284,50.7753207,15.0743291,50.7753205,15.0742767,50.7753227,15.0742767,50.7753222,15.0741179,50.7754584,15.0741179],[50.7757499,15.0745588,50.775748,15.0745467,50.7756382,15.0745923,50.7756262,15.0745157,50.7756088,15.0745225,50.7756028,15.0744849,50.7755872,15.0743868,50.7756148,15.0743756,50.7756929,15.0743439,50.7756903,15.0743282,50.7757124,15.0743191,50.7757144,15.074331,50.7757963,15.0742976,50.7758325,15.074524,50.7757499,15.0745588],[50.7761514,15.0735358,50.7761605,15.07359,50.776117,15.0736079,50.7761053,15.0735374,50.7760911,15.0735434,50.7760774,15.0734599,50.7761436,15.0734327,50.7761601,15.0735321,50.7761514,15.0735358],[50.7724145,15.0739846,50.7723917,15.0739931,50.7723939,15.0740069,50.7723162,15.0740362,50.7723103,15.0739967,50.7723059,15.0739983,50.772305,15.0739927,50.7723012,15.0739934,50.7722973,15.0739931,50.7722936,15.0739918,50.7722901,15.0739895,50.7722868,15.0739863,50.772284,15.0739822,50.7722816,15.0739775,50.7722798,15.0739721,50.7722786,15.0739664,50.7722781,15.0739604,50.7722782,15.0739544,50.7722789,15.0739485,50.7722803,15.0739428,50.7722823,15.0739377,50.7722848,15.0739331,50.7722877,15.0739293,50.7722911,15.0739263,50.7722947,15.0739243,50.7722937,15.0739182,50.7723984,15.0738786,50.7724145,15.0739846],[50.7731071,15.0682394,50.7730959,15.0682022,50.7731431,15.0681668,50.7731543,15.0682039,50.7731071,15.0682394],[50.7731289,15.0683117,50.773118,15.0682758,50.7731653,15.0682403,50.7731762,15.0682763,50.7731289,15.0683117],[50.7731313,15.0681276,50.7731431,15.0681668,50.7730959,15.0682022,50.7730841,15.068163,50.7731313,15.0681276],[50.7735348,15.0677797,50.7735711,15.0677507,50.7735139,15.0675722,50.7735064,15.0675783,50.7734664,15.0674564,50.7735423,15.0673948,50.7736022,15.0673463,50.7736133,15.0673812,50.7736597,15.0673442,50.7736877,15.0674316,50.7736853,15.0674335,50.7737682,15.0676928,50.7737758,15.0676867,50.7737767,15.0676895,50.7737949,15.0676752,50.7738706,15.0679124,50.7738526,15.0679269,50.7738534,15.0679298,50.773727,15.0680312,50.7737263,15.0680292,50.7735617,15.0681612,50.7735624,15.0681632,50.7735343,15.0681858,50.7735224,15.0681489,50.77351,15.0681545,50.773497,15.0681559,50.7734842,15.0681529,50.773478,15.0681498,50.7734665,15.0681406,50.7734612,15.0681346,50.7734521,15.0681201,50.7734451,15.0681029,50.7734424,15.0680934,50.7734391,15.0680735,50.7734386,15.068053,50.7734407,15.0680327,50.7734456,15.0680135,50.7734528,15.0679964,50.7734572,15.0679888,50.7734675,15.0679761,50.773455,15.0679372,50.7734582,15.0679378,50.7734233,15.0678292,50.7734209,15.0678311,50.7733708,15.0676757,50.7734764,15.0675917,50.7734987,15.0676613,50.7735164,15.0677162,50.7735267,15.0677481,50.773525,15.0677495,50.7735348,15.0677797],[50.7731762,15.0682763,50.7731883,15.0683165,50.773141,15.068352,50.7731289,15.0683117,50.7731762,15.0682763],[50.772921,15.0684145,50.7728692,15.0684574,50.7728547,15.0684114,50.7729068,15.0683676,50.772921,15.0684145],[50.7731543,15.0682039,50.7731653,15.0682403,50.773118,15.0682758,50.7731071,15.0682394,50.7731543,15.0682039],[50.7730214,15.0678406,50.773038,15.0678928,50.7730425,15.0678895,50.7730467,15.0679029,50.7730492,15.0679008,50.7730613,15.0679082,50.7730686,15.0679308,50.7730653,15.0679505,50.7730627,15.0679525,50.7730828,15.0680144,50.7730878,15.0680103,50.7730928,15.068026,50.7730828,15.0680345,50.7730802,15.0680268,50.7729788,15.0681075,50.7729192,15.0679237,50.7730214,15.0678406],[50.7747302,15.0764443,50.7741683,15.0766539,50.7740729,15.0760161,50.7746138,15.0758877,50.7747302,15.0764443],[50.7714067,15.0733041,50.7713938,15.0732216,50.7714225,15.0732102,50.7714354,15.0732931,50.7714067,15.0733041],[50.7714366,15.0722058,50.7714318,15.0721574,50.7714912,15.0721426,50.771496,15.0721916,50.7714366,15.0722058],[50.7713522,15.0715081,50.7713625,15.071504,50.7713693,15.0715473,50.771359,15.0715514,50.771373,15.0716401,50.7712809,15.0716768,50.771217,15.0712737,50.7712147,15.0712746,50.7711916,15.0711282,50.7712885,15.0710901,50.7713116,15.0712365,50.7713094,15.0712373,50.7713522,15.0715081],[50.7721604,15.0685744,50.7721066,15.0686022,50.7720972,15.0685567,50.7721509,15.0685289,50.7721604,15.0685744],[50.7716475,15.0731502,50.7716417,15.0731036,50.7716995,15.073085,50.7717056,15.0731318,50.7716475,15.0731502],[50.7715362,15.074508,50.7714841,15.0745663,50.7714669,15.0745277,50.7715191,15.0744696,50.7715362,15.074508],[50.7721886,15.0687103,50.7721347,15.0687379,50.7721255,15.0686934,50.7721793,15.0686656,50.7721886,15.0687103],[50.7711855,15.0717476,50.7712264,15.0718064,50.7712054,15.0718404,50.7711652,15.0717823,50.7711855,15.0717476],[50.771427,15.0721105,50.7714223,15.072063,50.7714819,15.072048,50.7714867,15.0720956,50.771427,15.0721105],[50.7711851,15.0718737,50.7711644,15.0719073,50.7711247,15.0718509,50.7711454,15.0718163,50.7711851,15.0718737],[50.7717663,15.0743958,50.7717479,15.0744346,50.7717256,15.0744054,50.7717005,15.0743787,50.7717188,15.07434,50.7717663,15.0743958],[50.7710011,15.0708314,50.7710056,15.0708508,50.7709923,15.0708585,50.7709984,15.070885,50.7710033,15.0708821,50.7710356,15.0710212,50.771033,15.0710303,50.7710108,15.0710431,50.7710119,15.071048,50.7709883,15.0710617,50.7709871,15.0710568,50.7709408,15.0710836,50.7708967,15.0708915,50.7709092,15.0708844,50.7710011,15.0708314],[50.7721982,15.0687566,50.7721444,15.0687843,50.7721347,15.0687379,50.7721886,15.0687103,50.7721982,15.0687566],[50.771991,15.073823,50.771874,15.073869,50.771865,15.073804,50.771851,15.073795,50.771846,15.073764,50.771855,15.073748,50.771845,15.073684,50.771961,15.073639,50.771991,15.073823],[50.7716543,15.0744827,50.7716366,15.0745273,50.7715974,15.074489,50.771615,15.0744442,50.7716543,15.0744827],[50.772116,15.0686476,50.7721698,15.06862,50.7721793,15.0686656,50.7721255,15.0686934,50.772116,15.0686476],[50.7717393,15.0742965,50.7717867,15.0743527,50.7717663,15.0743958,50.7717188,15.07434,50.7717393,15.0742965],[50.7712048,15.0717142,50.7712468,15.071773,50.7712264,15.0718064,50.7711855,15.0717476,50.7712048,15.0717142],[50.7721539,15.0688303,50.7721444,15.0687843,50.7721982,15.0687566,50.7722077,15.0688026,50.7721539,15.0688303],[50.7718387,15.072858,50.7718477,15.0729148,50.7718628,15.0729094,50.7718816,15.0730345,50.7718661,15.0730402,50.7718669,15.0730458,50.771816,15.0730647,50.7718181,15.073078,50.7717915,15.073088,50.7717899,15.073077,50.7717665,15.0730857,50.7717519,15.0729862,50.7717292,15.072994,50.7717152,15.0728992,50.7717449,15.0728885,50.7717455,15.0728925,50.7717936,15.0728747,50.7717936,15.0728685,50.7717943,15.0728623,50.7717956,15.0728565,50.7717977,15.0728511,50.7718003,15.0728464,50.7718033,15.0728426,50.7718068,15.0728396,50.7718106,15.0728377,50.7718145,15.0728368,50.7718184,15.072837,50.7718223,15.0728383,50.7718259,15.0728407,50.7718293,15.0728441,50.7718321,15.0728483,50.7718345,15.0728533,50.7718362,15.0728589,50.7718387,15.072858],[50.7715191,15.0744696,50.7714669,15.0745277,50.7714493,15.0744884,50.7715014,15.0744303,50.7715191,15.0744696],[50.771653,15.0731932,50.7717099,15.073176,50.7717102,15.0731779,50.7717114,15.0731775,50.7717056,15.0731318,50.7716475,15.0731502,50.771653,15.0731932],[50.7721698,15.06862,50.772116,15.0686476,50.7721066,15.0686022,50.7721604,15.0685744,50.7721698,15.06862],[50.7711454,15.0718163,50.7711652,15.0717823,50.7712054,15.0718404,50.7711851,15.0718737,50.7711454,15.0718163],[50.7714318,15.0721574,50.771427,15.0721105,50.7714867,15.0720956,50.7714912,15.0721426,50.7714318,15.0721574],[50.7714223,15.072063,50.7714175,15.0720145,50.7714771,15.0719998,50.7714819,15.072048,50.7714223,15.072063],[50.77456,15.0753452,50.7745574,15.075182,50.774801,15.075172,50.7748045,15.0753354,50.77456,15.0753452],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7751209,15.0744752,50.7751478,15.0744737,50.7751503,15.0745609,50.7751226,15.0745621,50.7751209,15.0744752],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7723625,15.0735165,50.7723669,15.073546,50.772422,15.0735251,50.7724486,15.0736994,50.772353,15.0737357,50.7723564,15.0737577,50.7723084,15.0737759,50.772305,15.0737538,50.7722439,15.0737771,50.7722173,15.073603,50.7723198,15.073564,50.7723153,15.0735343,50.7723625,15.0735165],[50.7720487,15.0718492,50.7720888,15.0718336,50.772094,15.0718652,50.7721081,15.0718597,50.7721123,15.0718876,50.7721144,15.0718868,50.7721282,15.0719749,50.7720491,15.0720053,50.7720577,15.0720612,50.7719949,15.0720857,50.7719839,15.0720149,50.7719743,15.0720185,50.7719635,15.0719491,50.7719731,15.0719452,50.7719647,15.071882,50.7720011,15.0718676,50.7719989,15.0718523,50.7720465,15.0718342,50.7720487,15.0718492],[50.7712476,15.0692965,50.7712761,15.0692791,50.7713173,15.0694147,50.771307,15.0694223,50.7713295,15.0695602,50.7713445,15.0695539,50.7713701,15.0697102,50.771366,15.0697119,50.7714043,15.0699461,50.7714153,15.0699419,50.7714252,15.0700032,50.7714311,15.0700007,50.7714491,15.0700977,50.7714541,15.0701415,50.7714482,15.070144,50.7714583,15.0702057,50.7714473,15.0702102,50.7714855,15.0704448,50.7714907,15.0704428,50.7715161,15.070596,50.7712976,15.0706829,50.7712988,15.0706906,50.7711216,15.0707627,50.7711203,15.0707545,50.771099,15.0707633,50.7710741,15.0706092,50.7710955,15.0706006,50.7710942,15.0705919,50.7712716,15.0705207,50.771273,15.0705296,50.7713877,15.0704824,50.7713538,15.0702735,50.7713409,15.0702788,50.7713369,15.0702548,50.7712895,15.070274,50.7712792,15.0702102,50.7712747,15.0702121,50.7712524,15.0700748,50.7712569,15.0700731,50.7712464,15.0700087,50.7713067,15.0699839,50.7712253,15.0694831,50.7711747,15.0695219,50.7711325,15.0693826,50.7711435,15.0693743,50.7711859,15.0693426,50.7711782,15.069317,50.771179,15.0693164,50.7712398,15.0692707,50.7712476,15.0692965],[50.772063,15.074283,50.771966,15.074318,50.771936,15.074119,50.772033,15.074081,50.772063,15.074283],[50.772139,15.074775,50.772041,15.074813,50.771993,15.074494,50.77209,15.074456,50.772139,15.074775],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7719259,15.0733898,50.7719361,15.0734576,50.7719335,15.0734586,50.7719372,15.0734834,50.7719073,15.0734946,50.7719036,15.0734698,50.7718392,15.073494,50.7718229,15.0733859,50.771799,15.0733947,50.7717888,15.0733272,50.7718127,15.0733182,50.771811,15.0733065,50.7718212,15.0733028,50.7718273,15.0732874,50.7718486,15.0732793,50.7718585,15.0732887,50.7719079,15.0732703,50.771918,15.0733378,50.7719208,15.0733367,50.7719287,15.0733887,50.7719259,15.0733898],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7751757,15.069743,50.7751839,15.0697366,50.7751654,15.0696776,50.7752004,15.0696503,50.7751982,15.0696435,50.7752493,15.0696041,50.7752513,15.0696105,50.7752848,15.0695843,50.7753064,15.0696531,50.7753108,15.0696496,50.7753404,15.0697437,50.775303,15.0697728,50.7753063,15.0697832,50.7752112,15.0698558,50.7751757,15.069743],[50.7749457,15.0698497,50.7749612,15.0698372,50.7749808,15.0698217,50.7750269,15.0699657,50.7750048,15.0699833,50.7750345,15.0700761,50.7749444,15.0701478,50.7749133,15.0700514,50.7749097,15.0700544,50.7748863,15.0699812,50.7748899,15.0699783,50.7748765,15.0699369,50.7748647,15.069931,50.7748729,15.0698913,50.7748852,15.0698978,50.7748909,15.0698934,50.7748799,15.0698582,50.7749345,15.0698148,50.7749357,15.0698185,50.7749457,15.0698497],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7754802,15.0700034,50.7754568,15.0699224,50.7755078,15.0698841,50.7755318,15.0699644,50.7754802,15.0700034],[50.7755729,15.0698217,50.7756268,15.0697811,50.7756388,15.0698203,50.775585,15.0698618,50.7755729,15.0698217],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7755464,15.0697349,50.7756002,15.0696945,50.7756135,15.0697378,50.7755597,15.0697782,50.7755464,15.0697349],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7755729,15.0698217,50.7755597,15.0697782,50.7756135,15.0697378,50.7756268,15.0697811,50.7755729,15.0698217],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7750917,15.0740684,50.7750446,15.0740687,50.7750446,15.0740646,50.7750446,15.0740255,50.7750914,15.0740253,50.7750916,15.0740637,50.7750917,15.0740684],[50.7752282,15.0698968,50.7752685,15.0698625,50.7752711,15.0698604,50.7752867,15.0699091,50.7752413,15.0699506,50.775225,15.0698993,50.7752282,15.0698968],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7749603,15.0691012,50.7749613,15.0691044,50.7749163,15.0691397,50.7749153,15.0691365,50.7748616,15.0691785,50.7748401,15.06911,50.7748218,15.0690522,50.7749105,15.0689829,50.7749733,15.0689339,50.775014,15.0690592,50.7749603,15.0691012],[50.7739711,15.0761319,50.7738446,15.0761819,50.7738343,15.0761154,50.7738088,15.0761255,50.7737169,15.0761618,50.7737224,15.0761963,50.7737301,15.0762455,50.7737604,15.0764368,50.773554,15.076518,50.7735537,15.0765142,50.7735481,15.076517,50.7735787,15.0767148,50.7735348,15.0767379,50.7734895,15.0767618,50.773491,15.0767745,50.7734697,15.076781,50.7734678,15.0767661,50.7734205,15.0767737,50.7733798,15.0767736,50.7733487,15.0767676,50.7733468,15.0767826,50.7733257,15.076777,50.7733276,15.0767626,50.7732819,15.0767419,50.7732389,15.0767224,50.7731961,15.0767112,50.7731617,15.0764947,50.7731586,15.076475,50.7731079,15.0764948,50.7730816,15.0765051,50.7730143,15.0765314,50.7728039,15.0766136,50.7728003,15.076615,50.7727861,15.0765238,50.7727185,15.0765508,50.7726806,15.0763094,50.7731032,15.0761443,50.773116,15.0761393,50.7731777,15.0761152,50.7737966,15.0758735,50.7738242,15.0760505,50.7739191,15.076014,50.7739532,15.0760867,50.7739711,15.0761319],[50.7761513,15.0730588,50.7761396,15.073011,50.7761923,15.0729796,50.7762038,15.073027,50.7761513,15.0730588],[50.7722268,15.0702958,50.7721707,15.070313,50.772161,15.0702337,50.7722152,15.0702171,50.7722268,15.0702958],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7761742,15.0731529,50.7762068,15.073133,50.7762157,15.0731699,50.7761833,15.073189,50.7761742,15.0731529],[50.7762038,15.073027,50.7762153,15.0730746,50.7761629,15.0731063,50.7761513,15.0730588,50.7762038,15.073027],[50.7728652,15.0699861,50.7728732,15.0700323,50.7728193,15.0700556,50.7728103,15.0700095,50.7728652,15.0699861],[50.7718716,15.0691948,50.7719229,15.0691532,50.7719392,15.069201,50.7718872,15.0692425,50.7718716,15.0691948],[50.771992,15.070692,50.7720069,15.0707766,50.7719748,15.0707914,50.7719598,15.070706,50.771992,15.070692],[50.7758015,15.0722067,50.7758574,15.0721629,50.7758802,15.0722351,50.7758243,15.0722789,50.7758015,15.0722067],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.776162,15.073267,50.7761779,15.073359,50.7761403,15.0733754,50.7761246,15.0732834,50.776162,15.073267],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7730944,15.0699634,50.7731272,15.0699618,50.7731289,15.0700443,50.7730725,15.0700473,50.773071,15.0699726,50.7730944,15.0699634],[50.7762261,15.0731208,50.7762068,15.073133,50.7761742,15.0731529,50.7761629,15.0731063,50.7762153,15.0730746,50.7762261,15.0731208],[50.7724605,15.0706468,50.7724735,15.0707292,50.7724148,15.070752,50.7724154,15.0707563,50.7724114,15.0707578,50.7723978,15.0706712,50.7724605,15.0706468],[50.7721698,15.0699582,50.7721542,15.0699706,50.7721581,15.0699811,50.772152,15.0699865,50.772122,15.0698938,50.7721531,15.0698664,50.7721612,15.0699006,50.7721698,15.0699582],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7728585,15.0746374,50.7727988,15.0746605,50.7727919,15.0746157,50.7728514,15.0745931,50.7728585,15.0746374],[50.7754474,15.0747899,50.7753918,15.0748091,50.7753852,15.0747609,50.7754407,15.0747417,50.7754474,15.0747899],[50.7730252,15.0756838,50.7730324,15.0757292,50.7729713,15.0757546,50.7729639,15.0757083,50.7730252,15.0756838],[50.7752578,15.0726231,50.7752262,15.0726483,50.7752015,15.0725718,50.7752331,15.0725457,50.7752578,15.0726231],[50.7737,15.0752819,50.7736634,15.0752963,50.773663,15.0752941,50.7736442,15.0753015,50.7736416,15.0752843,50.7735996,15.0753043,50.7735987,15.0753075,50.7735985,15.075311,50.7736003,15.0753246,50.7736,15.0753277,50.7735992,15.0753306,50.773598,15.0753331,50.7735963,15.0753349,50.7735945,15.075336,50.7734819,15.0753758,50.7734802,15.0753737,50.7734789,15.075371,50.7734781,15.0753679,50.7734771,15.0753608,50.7734764,15.075358,50.7734752,15.0753555,50.7734737,15.0753535,50.7734719,15.0753522,50.77347,15.0753517,50.773468,15.075352,50.7734319,15.0753659,50.7734345,15.0753831,50.7734157,15.0753903,50.7734161,15.0753928,50.7733818,15.0754061,50.7733791,15.0753883,50.7732956,15.0754181,50.7731776,15.074665,50.7732038,15.0746549,50.7731964,15.0746074,50.7731802,15.0746137,50.7731624,15.0744996,50.7731784,15.0744933,50.7731707,15.0744438,50.773228,15.0744221,50.7732604,15.0746333,50.7735766,15.0745127,50.7737,15.0752819],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7723274,15.0741104,50.7723162,15.0740362,50.7723939,15.0740069,50.7723948,15.0740127,50.7723877,15.0740153,50.7723914,15.0740399,50.7724625,15.0740131,50.7724722,15.0740768,50.7724569,15.0740826,50.7724654,15.0741383,50.7724262,15.074153,50.7724281,15.0741682,50.7724275,15.0741708,50.7724263,15.0741728,50.7724247,15.074174,50.7723821,15.074188,50.7723808,15.0741861,50.7723801,15.0741835,50.7723782,15.0741712,50.7723345,15.0741875,50.772334,15.074184,50.7723302,15.0741847,50.7723264,15.0741844,50.7723226,15.074183,50.7723191,15.0741807,50.7723158,15.0741774,50.772313,15.0741733,50.7723106,15.0741686,50.7723088,15.0741632,50.7723076,15.0741575,50.7723071,15.0741515,50.7723072,15.0741455,50.7723079,15.0741395,50.7723093,15.0741339,50.7723112,15.0741287,50.7723137,15.0741241,50.7723166,15.0741202,50.77232,15.0741172,50.7723236,15.0741151,50.7723231,15.074112,50.7723274,15.0741104],[50.7756028,15.0744849,50.7754221,15.0745546,50.7755188,15.0742609,50.7755324,15.0741885,50.7755417,15.0741161,50.7755477,15.0740732,50.7757614,15.0739833,50.7757775,15.0740879,50.7756147,15.0741563,50.7755943,15.0742368,50.7756148,15.0743756,50.7755872,15.0743868,50.7756028,15.0744849],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849],[50.7717099,15.073176,50.7717102,15.0731779,50.7717251,15.0732757,50.7716644,15.0732981,50.7716494,15.0731989,50.7716524,15.0731977,50.7716518,15.0731936,50.771653,15.0731932,50.7717099,15.073176],[50.7720571,15.0690614,50.7720871,15.0690447,50.7721037,15.0691176,50.772073,15.0691355,50.7720571,15.0690614]],"buildingTypes":["civic","yes","university","university","university","university","university","university","university","university","university","university","house","residential","residential","yes","yes","residential","residential","residential","civic","yes","residential","yes","residential","residential","residential","residential","yes","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","house","house","residential","house","yes","yes","civic","yes","residential","house","residential","house","residential","garage","house","house","house","yes","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","house","house","garage","residential","house","residential","house","residential","yes","residential","yes","residential","residential","yes","yes","house","residential","garage","garage","garage","civic","garage","garage","garage","residential","university","garage","garage","residential","garage","garage","garage","garage","garage","garage","garage","garage","residential","garage","yes","industrial","garage","garage","garage","garage","residential","garage","garage","garage","garage","garage","garage","civic","yes","garage","residential","residential","residential","school","yes","yes","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","residential","yes","garage","yes","garage","garage","garage","garage","garage","residential","yes","yes","yes","yes","civic","university","garage","garage","garage","yes","garage","garage","garage","garage","garage","garage","garage","industrial","garage","garage","garage","garage","yes","yes","garage","yes","yes","university","university","residential","yes","residential","residential","residential","garage","yes"],"pathways":[[50.7715459,15.0700709,50.771656,15.0699832,50.7723923,15.0693964,50.772695,15.0691552,50.7730954,15.068837,50.7733498,15.0686254,50.7734048,15.06858,50.7740134,15.0680991,50.7740728,15.0680574,50.7740879,15.0680453],[50.7716129,15.0797774,50.7716031,15.0796661,50.7716014,15.0796057,50.7716164,15.0795312,50.7716938,15.0793706,50.771781,15.0792223,50.7718397,15.0790894,50.771856,15.078991,50.7718582,15.078801,50.771778,15.0782997,50.7717808,15.0780215,50.7718767,15.0774542,50.7718859,15.07726,50.7718464,15.0765598,50.7719744,15.0759827,50.7719483,15.0753118,50.7719017,15.0750806,50.7718319,15.0747021,50.7717613,15.0745278,50.77168,15.0744196,50.7715864,15.0743525,50.7714745,15.0742406,50.7714122,15.0741301,50.7713819,15.0740077,50.77137,15.0734118,50.7712652,15.0728422],[50.7711332,15.0714264,50.771033,15.0714142,50.770947,15.0713776,50.7709048,15.071308,50.7708839,15.0712228,50.770714,15.0705472,50.7705945,15.0703433,50.7700624,15.0697128],[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7760072,15.0756735,50.7760409,15.0756266,50.7760694,15.075538,50.7760743,15.0754716,50.7760686,15.0753623,50.7760553,15.0752518,50.7758983,15.0742748],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7765517,15.0723103,50.7762383,15.0712693,50.7755564,15.0691771],[50.7753344,15.071967,50.7753517,15.0719544,50.7753804,15.0719323,50.7762383,15.0712693],[50.7723305,15.0668289,50.7723519,15.0668515,50.7730156,15.0675534,50.7733024,15.0684733],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.773066,15.0759402,50.7730339,15.0757391,50.7730324,15.0757292,50.7730252,15.0756838,50.7730037,15.0755384,50.7728821,15.0747749,50.7728585,15.0746374,50.7728514,15.0745931,50.7728485,15.0745747,50.7728164,15.0743732,50.7727895,15.0742394,50.7728744,15.0742161,50.7729429,15.0741972,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7732287,15.0751189,50.7733416,15.0758426,50.7731038,15.0759268,50.773066,15.0759402],[50.7738165,15.0757322,50.7737777,15.0757478,50.7733563,15.0759168,50.7731154,15.0760135],[50.7711332,15.0714264,50.7711324,15.0711608,50.7711535,15.0710184,50.771202,15.0709222,50.7715808,15.0707311,50.7716437,15.0707084],[50.7723217,15.0755726,50.7721356,15.0752059,50.7720841,15.0752515,50.7719744,15.0759827],[50.7739683,15.076005,50.7743953,15.0758402],[50.7713727,15.0753002,50.7715476,15.0752218,50.7716732,15.0751576,50.7719017,15.0750806],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7723923,15.0693964,50.7723561,15.069224,50.7720111,15.0675782],[50.7753777,15.0758812,50.7753356,15.075838,50.7752499,15.0757503,50.7750927,15.0755892],[50.7717613,15.0745278,50.7717041,15.074659,50.7716732,15.0751576],[50.7747787,15.0675679,50.7743396,15.0679369,50.7741922,15.0680561,50.7743099,15.0684176,50.7743908,15.068679,50.7746381,15.0694786,50.7747499,15.0698458],[50.7749559,15.0692244,50.7750732,15.0695777],[50.7747202,15.0694297,50.7746381,15.0694786],[50.7743949,15.0680923,50.7743396,15.0679369],[50.7750387,15.0683655,50.7748954,15.0684839,50.7751065,15.0690978],[50.7748725,15.0678604,50.7749106,15.0679816,50.7750387,15.0683655,50.7752927,15.0691174,50.7751065,15.0690978,50.7749559,15.0692244,50.7747202,15.0694297,50.7744933,15.0685831],[50.7741211,15.0678243,50.7741688,15.0679773,50.7741922,15.0680561],[50.7743099,15.0684176,50.7744227,15.0683162],[50.7744504,15.0682017,50.7744061,15.0681178],[50.7737778,15.0698608,50.773693,15.0697697,50.7736943,15.0697386,50.7736886,15.0697049,50.773571,15.0693442,50.773531,15.069168,50.7734981,15.0689719,50.7734977,15.0689399,50.7735128,15.0689055,50.7736997,15.0687658],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7726178,15.077,50.7724916,15.0762062,50.7724345,15.0758337,50.772214,15.0743908,50.7718091,15.0717795,50.7717093,15.0711425,50.7716437,15.0707084,50.7715836,15.0703009,50.7715459,15.0700709],[50.7755564,15.0691771,50.7754958,15.0692273,50.7750732,15.0695777,50.7747499,15.0698458,50.7746948,15.0698915,50.7746772,15.0699061],[50.7748971,15.067344,50.7747787,15.0675679,50.7748725,15.0678604,50.7746443,15.0680411,50.7744504,15.0682017,50.7744227,15.0683162,50.7744933,15.0685831],[50.7698151,15.0702249,50.7701993,15.0705427,50.7703241,15.070702,50.7704272,15.0709045,50.7706318,15.0716947,50.7707382,15.0719561,50.7708144,15.0720609,50.7709122,15.0720829,50.77099,15.0720804,50.7710765,15.0721508,50.7711376,15.0722365,50.7711779,15.0723353,50.7712134,15.0725567,50.7712652,15.0728422],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7708295,15.0727163,50.7708974,15.0726385,50.7709568,15.0726063,50.7710348,15.0725607,50.7711349,15.0725367,50.7712134,15.0725567],[50.7731154,15.0760135,50.7726758,15.0762043,50.7726598,15.07625,50.7726589,15.0763089,50.7726931,15.0765293],[50.7726758,15.0762043,50.7726398,15.0761601],[50.7730699,15.0766717,50.7731816,15.0769772,50.7732427,15.0770871,50.7733122,15.0771622,50.7733716,15.0771837,50.7734852,15.077181,50.7735683,15.0771247,50.7736786,15.0770067,50.7737617,15.0768672,50.7738703,15.0767009,50.7739669,15.0765105,50.7740593,15.076363],[50.7759677,15.0742358,50.7759191,15.0742639,50.7758983,15.0742748],[50.7731848,15.0676799,50.7733505,15.0684049],[50.7742114,15.0687462,50.7741565,15.0687932],[50.7741565,15.0687932,50.7738817,15.0690129],[50.7742925,15.0686768,50.774276,15.0686909,50.77425,15.0687132],[50.773693,15.0697697,50.7736867,15.069781,50.7736788,15.0697919,50.7736682,15.0697985,50.7736366,15.069801,50.7736109,15.0697856,50.7735708,15.0697393,50.7735531,15.0696834,50.773415,15.0690544,50.773355,15.0687429,50.7733545,15.0687308,50.7733498,15.0686254],[50.7740766,15.0699582,50.7739846,15.0696453,50.7738817,15.0690129,50.7737793,15.0687387,50.7737347,15.068768,50.7736997,15.0687658],[50.7752927,15.0691174,50.7754958,15.0692273],[50.7733505,15.0684049,50.7733597,15.0684339,50.7734048,15.06858],[50.774493,15.0757921,50.7745456,15.0757636,50.7747488,15.0756533],[50.7747488,15.0756533,50.7748029,15.0756269],[50.7743953,15.0758402,50.774493,15.0757921],[50.7748029,15.0756269,50.774918,15.0756289],[50.7749539,15.0756395,50.7750684,15.0756733],[50.774918,15.0756289,50.7749539,15.0756395],[50.7750684,15.0756733,50.7751112,15.0757077],[50.7712652,15.0728422,50.7713284,15.0727126,50.771394,15.0723563,50.7714013,15.0722316,50.7714013,15.0721689,50.7713909,15.072077,50.7713548,15.0719023,50.7713079,15.0717865,50.771231,15.0716655,50.7711332,15.0714264],[50.7758983,15.0742748,50.7758355,15.0738881,50.7758016,15.0736783,50.7757357,15.0732563,50.7757167,15.0731652,50.7756939,15.0730866,50.7756372,15.0729012,50.7756321,15.0728845,50.7755318,15.0725562,50.7753344,15.071967,50.77503,15.0710052,50.7746772,15.0699061,50.7746685,15.0698764,50.7743147,15.0687414,50.7742925,15.0686768,50.7740879,15.0680453],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731154,15.0760135,50.7731038,15.0759268,50.7728744,15.0742161,50.7728635,15.0741347],[50.7722811,15.0743641,50.7724322,15.0754314,50.7725526,15.076188],[50.7724322,15.0754314,50.7725489,15.0753746],[50.773116,15.0761393,50.7731079,15.0764948],[50.7731154,15.0760135,50.773116,15.0761393],[50.7723561,15.069224,50.7722533,15.0693217,50.7716141,15.0698396,50.7716066,15.0698438,50.7715884,15.069846,50.771572,15.0698333,50.7714947,15.0693786,50.7714275,15.0690023,50.771343,15.068509,50.7712399,15.0679127,50.7711974,15.067676,50.7710865,15.0670589,50.7710358,15.0667769,50.770959,15.0663327,50.770955,15.0662857,50.7709543,15.0659666,50.7709543,15.0658664,50.7709543,15.0657804],[50.7740879,15.0680453,50.7741022,15.068034,50.7741688,15.0679773,50.7748971,15.067344,50.7749488,15.0673038],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7740151,15.0746626,50.7740449,15.0745473,50.7740399,15.0744534],[50.7745456,15.0757636,50.7747511,15.076035,50.7748717,15.0759588,50.7750697,15.0760149,50.7751197,15.0760509,50.7751079,15.0762387,50.7751197,15.0762923,50.7751528,15.0762931],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7706436,15.0731123,50.7707549,15.0730542,50.7708042,15.0729497,50.7708295,15.0727163,50.7708703,15.0725421,50.7709276,15.0723567,50.7709653,15.0722763,50.7710107,15.0722508,50.7710363,15.072237,50.7710744,15.0722581,50.7711063,15.0723038,50.7711779,15.0723353],[50.7714013,15.0722316,50.7713583,15.0722828,50.7713092,15.0723414,50.7712733,15.0723577,50.7712316,15.0723563,50.7711779,15.0723353],[50.7715459,15.0700709,50.7714325,15.0693996,50.7714084,15.0692566,50.771381,15.0692035,50.7713338,15.0691419],[50.7740879,15.0680453,50.7740348,15.0678733,50.7738983,15.0674496,50.7737062,15.066848],[50.7746685,15.0698764,50.7746566,15.0698851,50.7744586,15.0700098,50.7742746,15.0700717,50.7741844,15.0700707],[50.7741844,15.0700707,50.7740766,15.0699582,50.7739733,15.0699259,50.7739407,15.0699098,50.7738653,15.0698945,50.7737778,15.0698608],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7735708,15.0697393,50.7734654,15.0699291],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7749533,15.0728495,50.7749634,15.0730713,50.7749421,15.0732859,50.774974,15.073339,50.7750239,15.0733565,50.7750812,15.0733641,50.7751475,15.0733291,50.7753573,15.0731141,50.7756188,15.0728955,50.7756321,15.0728845],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7744061,15.0681178,50.7743949,15.0680923],[50.7758355,15.0738881,50.7758193,15.0738958,50.7754356,15.0740837,50.7751453,15.0740909],[50.7759677,15.0742358,50.7759482,15.0741626,50.7759349,15.0741106],[50.7759482,15.0741626,50.7761574,15.074072,50.7764013,15.0739591,50.7766238,15.0738318,50.7769233,15.0736595,50.7769673,15.0736341,50.7770198,15.0736163,50.7770968,15.073578,50.7771959,15.0735287,50.7773889,15.0734382,50.7774336,15.0734172,50.7776657,15.0732977,50.7776906,15.0732844,50.7777965,15.0732221,50.7778857,15.0731683,50.7780718,15.073039,50.7780893,15.0730236,50.7782375,15.0728928,50.7782648,15.0728687,50.7783022,15.0728547],[50.7759349,15.0741106,50.7759016,15.074033,50.7757962,15.0733728,50.775742,15.0730658,50.7755817,15.0725688,50.775464,15.0721745],[50.775464,15.0721745,50.7753804,15.0719323,50.7752722,15.0716105,50.7751503,15.0712082,50.7750135,15.0707882,50.7748604,15.0703256,50.774761,15.0699766,50.7747499,15.0698458],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7744933,15.0685831,50.7743908,15.068679,50.7743249,15.068733,50.7743147,15.0687414],[50.77425,15.0687132,50.7742114,15.0687462],[50.7739677,15.0679441,50.7740134,15.0680991,50.7740383,15.0681862],[50.7740383,15.0681862,50.7740631,15.0681925,50.7740809,15.0682072,50.7740978,15.0682479,50.77425,15.0687132],[50.7733024,15.0684733,50.7733597,15.0684339,50.7739677,15.0679441],[50.7733024,15.0684733,50.7733498,15.0686254],[50.7726474,15.0690017,50.773097,15.0686402,50.7733024,15.0684733],[50.7725447,15.0686034,50.7724268,15.0686831,50.7724113,15.0686838,50.772382,15.0686522],[50.7725447,15.0686034,50.7725506,15.0686381,50.7726474,15.0690017],[50.7726225,15.0683118,50.7725431,15.0685027,50.7725373,15.0685595,50.7725447,15.0686034],[50.772695,15.0691552,50.7726474,15.0690017],[50.7723561,15.069224,50.7723988,15.0691799,50.7724206,15.0691778,50.7726474,15.0690017],[50.7715125,15.070326,50.7713687,15.0694249],[50.771643,15.0702755,50.7716341,15.0701891,50.7716346,15.0701449,50.7716439,15.0701084,50.7716616,15.070079,50.7716829,15.0700649,50.7723505,15.0695308,50.7723664,15.0695252,50.7723806,15.0695351,50.772412,15.0695239,50.7724508,15.0695112,50.772449,15.0694747,50.7724552,15.069448,50.7724667,15.069434,50.7730681,15.0689617,50.7730819,15.0689659,50.7731122,15.0689484,50.7731413,15.0689273,50.7731449,15.0688943,50.7731471,15.0688739,50.773156,15.0688606,50.7732918,15.0687624,50.7733002,15.0687603,50.7733078,15.0687631,50.7733158,15.0687624,50.7733545,15.0687308,50.773385,15.0687076,50.7733912,15.0686859,50.7733965,15.0686704,50.7737303,15.0684072,50.7740094,15.0682037,50.7740383,15.0681862],[50.7715125,15.070326,50.7715836,15.0703009,50.771643,15.0702755],[50.7715808,15.0707311,50.7715125,15.070326],[50.7724188,15.0743193,50.7724601,15.0743824,50.772512,15.0744154,50.7725462,15.0744147,50.7727832,15.0743235],[50.771643,15.0702755,50.7716807,15.0705127,50.7718715,15.0717545,50.7720176,15.0727114,50.7721849,15.0737642,50.7722811,15.0743641],[50.7723217,15.0755726,50.7720127,15.0735143,50.771734,15.0717429,50.7715808,15.0707311],[50.7724278,15.0762308,50.7723217,15.0755726],[50.7726398,15.0761601,50.7725526,15.076188],[50.7712426,15.0691399,50.7711978,15.0692242,50.771149,15.0692691,50.7711312,15.0692922,50.771121,15.0693252,50.7711157,15.0693617,50.771117,15.0694094,50.7712551,15.0703681,50.771264,15.0704039,50.7712773,15.0704207,50.7712964,15.0704256,50.7713376,15.070406],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7716141,15.0698396,50.771656,15.0699832,50.7716829,15.0700649],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,4,0,4,3,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,1,0,4,4,5,3,4,3,4,4,0,4,0,0,3,4,1,0,0,4,0,0,4,0,1,1,0,0,1,1,3,3,0,4,0,1,1,0,0,3,0,0,0,0,0,4,3,0,0,5,3,4,0,0,0,4,0,0,0,0,0,4,0,4,4,0,0,1,4,0,0,0,0,3,4,0,0,0,0,3,0,4,4,4,4,0,0,0,0,0,4,0,0,0,1,4,4,0,3],"areas":[[50.7731292,15.0785686,50.7734405,15.0785923,50.7736522,15.0784741,50.7737717,15.0782457,50.7739012,15.0776629,50.7739621,15.0772611,50.7740158,15.076828,50.7740485,15.0764449,50.7740061,15.0763347,50.7735162,15.0768301,50.7731364,15.076758,50.7730747,15.0771622,50.7730764,15.077291,50.7731292,15.0785686],[50.7749496,15.0675477,50.7748309,15.0676228,50.7749293,15.0679231,50.7748682,15.0680009,50.7749751,15.068347,50.7748546,15.068449,50.775048,15.0690684,50.7748733,15.0692107,50.7747495,15.0692188,50.7746341,15.0690041,50.7745154,15.0686582,50.7743543,15.0684329,50.7747698,15.0697579,50.7754941,15.0691624,50.7749496,15.0675477],[50.7739252,15.0690579,50.7737329,15.0684417,50.7740458,15.0682042,50.7742114,15.0687462,50.7742458,15.0688487,50.7739515,15.0690739,50.7739252,15.0690579],[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0,0,0,0],"poIs":[50.77119566363637,15.070085936363636,3,50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77357498000001,15.068754180000003,4,50.77401203333332,15.076621266666667,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.77338352,15.069208979999999,4,50.77362052,15.068302840000001,4,50.77320282,15.06863664,4,50.77347004,15.0691,4,50.77368628,15.06951072,4,50.7737409,15.0690773,0,50.7719988,15.0719208,0,50.7758355,15.0744028,0,50.7748387,15.0688781,3,50.7728491,15.0752552,0,50.773681,15.0692301,0,50.7710655,15.0712995,7,50.7735053,15.0755027,7,50.7726458,15.0751113,1,50.7760294,15.073928,0,50.7731232,15.075444,6,50.7731309,15.0755035,6,50.7731735,15.0755976,6,50.7732104,15.0755042,6,50.7740297,15.0744936,6,50.7723383,15.075738,7,50.7745187,15.0701967,7,50.7742687,15.0684062,7,50.7739087,15.0680313,7,50.773738,15.0696539,7,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.7747665,15.0752581,0,50.7730244,15.0744971,0,50.7738714,15.0698715,7,50.7743404,15.0686409,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T14:14:55.2849132Z","actor":"cb379618","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"cb379618","displayName":"Hr\u00E1\u010D723","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T14:14:55.2873079Z","actor":"1545672a","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"1545672a","displayName":"Hr\u00E1\u010D473","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T14:14:55.2892699Z","actor":"69e62b18","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"69e62b18","displayName":"Hr\u00E1\u010D276","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T14:14:55.2920613Z","actor":"d5b6a42a","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"d5b6a42a","displayName":"Hr\u00E1\u010D329","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T14:14:55.2976267Z","actor":"d5b6a42a","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T14:14:55.3014158Z","actor":"d5b6a42a","eventType":"RoleAssigned","payload":{"clientUuid":"d5b6a42a","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7744712,"lon":15.0716784},"type":"Progress","durationMs":5468,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7741888,"lon":15.0705734},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7743404,"lon":15.0686409},"type":"Progress","durationMs":6822,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7740297,"lon":15.0744936},"type":"Progress","durationMs":8038,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739087,"lon":15.0680313},"type":"Progress","durationMs":8266,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T14:14:55.3043219Z","actor":"cb379618","eventType":"RoleAssigned","payload":{"clientUuid":"cb379618","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7744712,"lon":15.0716784},"type":"Progress","durationMs":5468,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7741888,"lon":15.0705734},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7743404,"lon":15.0686409},"type":"Progress","durationMs":6822,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7740297,"lon":15.0744936},"type":"Progress","durationMs":8038,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739087,"lon":15.0680313},"type":"Progress","durationMs":8266,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T14:14:55.3061114Z","actor":"1545672a","eventType":"RoleAssigned","payload":{"clientUuid":"1545672a","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T14:14:55.307781Z","actor":"69e62b18","eventType":"RoleAssigned","payload":{"clientUuid":"69e62b18","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7744712,"lon":15.0716784},"type":"Progress","durationMs":5468,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7741888,"lon":15.0705734},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7743404,"lon":15.0686409},"type":"Progress","durationMs":6822,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7740297,"lon":15.0744936},"type":"Progress","durationMs":8038,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739087,"lon":15.0680313},"type":"Progress","durationMs":8266,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T14:15:18.1771512Z","actor":"d5b6a42a","eventType":"EmergencyMeetingCalled","payload":{"callerId":"d5b6a42a"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T14:15:18.18546Z","actor":"d5b6a42a","eventType":"MeetingStarted","payload":{"meetingId":"17f1046f","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T14:15:21.6854465Z","discussionEndTime":"2026-01-27T14:15:24.1854465Z","votingEndTime":"2026-01-27T14:15:34.1854465Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T14:15:34.1927521Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T14:17:23.8921888Z","actor":"d5b6a42a","eventType":"EmergencyMeetingCalled","payload":{"callerId":"d5b6a42a"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T14:17:23.8989826Z","actor":"d5b6a42a","eventType":"MeetingStarted","payload":{"meetingId":"b2ab6333","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T14:17:27.398788Z","discussionEndTime":"2026-01-27T14:17:29.898788Z","votingEndTime":"2026-01-27T14:17:39.898788Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T14:17:39.9203763Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T14:18:25.8440579Z","actor":"1545672a","eventType":"SabotageStarted","payload":{"sabotageId":"3118079b","type":"CommsBlackout","initiatorId":"1545672a","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.7733965,"lon":15.0686704},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T14:18:47.9779768Z","actor":"1545672a","eventType":"PlayerKilled","payload":{"victimId":"cb379618","killerId":"1545672a","bodyId":"096a1f19","location":{"lat":50.7735892,"lon":15.0721653}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T14:18:55.8822081Z","actor":"system","eventType":"SabotageExpired","payload":{"sabotageId":"3118079b","type":"CommsBlackout","repairerIds":[]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T14:19:27.6793157Z","actor":"d5b6a42a","eventType":"PlayerLeft","payload":{"clientUuid":"d5b6a42a","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T14:19:27.7050664Z","actor":"cb379618","eventType":"HostChanged","payload":{"newHostId":"cb379618","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T14:19:29.2234282Z","actor":"cb379618","eventType":"PlayerLeft","payload":{"clientUuid":"cb379618","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T14:19:29.2254663Z","actor":"1545672a","eventType":"HostChanged","payload":{"newHostId":"1545672a","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T14:19:29.3188882Z","actor":"69e62b18","eventType":"PlayerLeft","payload":{"clientUuid":"69e62b18","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T14:19:29.3384921Z","actor":"1545672a","eventType":"PlayerLeft","payload":{"clientUuid":"1545672a","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/9633ed64821c4f59/wal_20260127114933.ndjson b/data/lobbies/9633ed64821c4f59/wal_20260127114933.ndjson new file mode 100644 index 0000000..885053b --- /dev/null +++ b/data/lobbies/9633ed64821c4f59/wal_20260127114933.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T11:49:33.792173Z","actor":"c83f9f81","eventType":"PlayerJoined","payload":{"clientUuid":"c83f9f81","displayName":"MapTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T11:49:33.794349Z","actor":"c83f9f81","eventType":"PlayerLeft","payload":{"clientUuid":"c83f9f81","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/9861ad112aa74f77/wal_20260127114933.ndjson b/data/lobbies/9861ad112aa74f77/wal_20260127114933.ndjson new file mode 100644 index 0000000..1105006 --- /dev/null +++ b/data/lobbies/9861ad112aa74f77/wal_20260127114933.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T11:49:33.8073482Z","actor":"01f4a148","eventType":"PlayerJoined","payload":{"clientUuid":"01f4a148","displayName":"StructTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T11:49:34.9202313Z","actor":"01f4a148","eventType":"PlayerLeft","payload":{"clientUuid":"01f4a148","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/98fba7b53cf24839/wal_20260127114943.ndjson b/data/lobbies/98fba7b53cf24839/wal_20260127114943.ndjson new file mode 100644 index 0000000..e674b51 --- /dev/null +++ b/data/lobbies/98fba7b53cf24839/wal_20260127114943.ndjson @@ -0,0 +1,9 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T11:49:43.9628229Z","actor":"6a20a756","eventType":"PlayerJoined","payload":{"clientUuid":"6a20a756","displayName":"SabOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T11:49:46.6343648Z","actor":"62049952","eventType":"PlayerJoined","payload":{"clientUuid":"62049952","displayName":"SabPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T11:49:47.2663676Z","actor":"6a20a756","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T11:49:47.2831746Z","actor":"6a20a756","eventType":"RoleAssigned","payload":{"clientUuid":"6a20a756","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0868302,"lon":14.425143},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0871893,"lon":14.419048},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0860902,"lon":14.4190354},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T11:49:47.2942945Z","actor":"62049952","eventType":"RoleAssigned","payload":{"clientUuid":"62049952","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T11:49:49.8530005Z","actor":"62049952","eventType":"SabotageStarted","payload":{"sabotageId":"bb0ac272","type":"CriticalMeltdown","initiatorId":"62049952","deadline":"2026-01-27T11:50:34.8529253Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.0880045,"lon":14.4231977},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.0894879,"lon":14.4227094},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T11:49:52.3663876Z","actor":"6a20a756","eventType":"PlayerLeft","payload":{"clientUuid":"6a20a756","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T11:49:52.3732392Z","actor":"62049952","eventType":"HostChanged","payload":{"newHostId":"62049952","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T11:49:52.3786679Z","actor":"62049952","eventType":"PlayerLeft","payload":{"clientUuid":"62049952","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/a4cd2192a353419e/wal_20260127163056.ndjson b/data/lobbies/a4cd2192a353419e/wal_20260127163056.ndjson new file mode 100644 index 0000000..4f871ba --- /dev/null +++ b/data/lobbies/a4cd2192a353419e/wal_20260127163056.ndjson @@ -0,0 +1,16 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T16:30:56.9576317Z","actor":"309547c4","eventType":"PlayerJoined","payload":{"clientUuid":"309547c4","displayName":"Hr\u00E1\u010D580"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T16:31:21.2480977Z","actor":"47e79980","eventType":"PlayerJoined","payload":{"clientUuid":"47e79980","displayName":"Hr\u00E1\u010D100"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T16:31:23.9619909Z","actor":"02dc04bf","eventType":"PlayerJoined","payload":{"clientUuid":"02dc04bf","displayName":"Hr\u00E1\u010D168"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T16:31:25.2206431Z","actor":"309547c4","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T16:31:30.1340222Z","actor":"309547c4","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":102,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7741465,15.070948,50.7740958,15.0709872],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":102},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T16:31:30.1503632Z","actor":"47e79980","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"47e79980","displayName":"Hr\u00E1\u010D100","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T16:31:30.1536938Z","actor":"02dc04bf","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"02dc04bf","displayName":"Hr\u00E1\u010D168","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T16:31:30.1568513Z","actor":"309547c4","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"309547c4","displayName":"Hr\u00E1\u010D580","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T16:31:30.1608333Z","actor":"309547c4","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T16:31:30.1638211Z","actor":"309547c4","eventType":"RoleAssigned","payload":{"clientUuid":"309547c4","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T16:31:30.1667974Z","actor":"47e79980","eventType":"RoleAssigned","payload":{"clientUuid":"47e79980","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7739456,"lon":15.0716314},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7729586,"lon":15.0713674},"type":"Progress","durationMs":5450,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.773902,"lon":15.0727669},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7738661,"lon":15.0722328},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T16:31:30.169652Z","actor":"02dc04bf","eventType":"RoleAssigned","payload":{"clientUuid":"02dc04bf","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7735493,"lon":15.0730608},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7739456,"lon":15.0716314},"type":"Progress","durationMs":5425,"steps":1},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7737495,"lon":15.0715106},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7743116,"lon":15.0721514},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T16:33:31.7241792Z","actor":"309547c4","eventType":"PlayerLeft","payload":{"clientUuid":"309547c4","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T16:33:31.7292387Z","actor":"47e79980","eventType":"HostChanged","payload":{"newHostId":"47e79980","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T16:33:33.0661545Z","actor":"02dc04bf","eventType":"PlayerLeft","payload":{"clientUuid":"02dc04bf","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T16:33:33.0744712Z","actor":"47e79980","eventType":"PlayerLeft","payload":{"clientUuid":"47e79980","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/a561f103f69c4129/wal_20260127134123.ndjson b/data/lobbies/a561f103f69c4129/wal_20260127134123.ndjson new file mode 100644 index 0000000..20b6d9b --- /dev/null +++ b/data/lobbies/a561f103f69c4129/wal_20260127134123.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T13:41:23.838602Z","actor":"0cd837ac","eventType":"PlayerJoined","payload":{"clientUuid":"0cd837ac","displayName":"Hr\u00E1\u010D954"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T13:41:31.194902Z","actor":"0cd837ac","eventType":"PlayerLeft","payload":{"clientUuid":"0cd837ac","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/a58522391e4d4732/wal_20260127120653.ndjson b/data/lobbies/a58522391e4d4732/wal_20260127120653.ndjson new file mode 100644 index 0000000..d598453 --- /dev/null +++ b/data/lobbies/a58522391e4d4732/wal_20260127120653.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:06:53.5643991Z","actor":"0d06cf6c","eventType":"PlayerJoined","payload":{"clientUuid":"0d06cf6c","displayName":"Consist2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:06:53.6664537Z","actor":"0d06cf6c","eventType":"PlayerLeft","payload":{"clientUuid":"0d06cf6c","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/a6e5c9db98ee4dda/wal_20260127122201.ndjson b/data/lobbies/a6e5c9db98ee4dda/wal_20260127122201.ndjson new file mode 100644 index 0000000..82b2dbe --- /dev/null +++ b/data/lobbies/a6e5c9db98ee4dda/wal_20260127122201.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:22:01.7027907Z","actor":"493442cb","eventType":"PlayerJoined","payload":{"clientUuid":"493442cb","displayName":"Consist0"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:22:17.1966731Z","actor":"493442cb","eventType":"PlayerLeft","payload":{"clientUuid":"493442cb","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/a83ec6f472254f2a/wal_20260127102754.ndjson b/data/lobbies/a83ec6f472254f2a/wal_20260127102754.ndjson new file mode 100644 index 0000000..979bd1d --- /dev/null +++ b/data/lobbies/a83ec6f472254f2a/wal_20260127102754.ndjson @@ -0,0 +1,8 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:27:54.2207364Z","actor":"f0c85e21","eventType":"PlayerJoined","payload":{"clientUuid":"f0c85e21","displayName":"TaskOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:27:56.8852848Z","actor":"08df3130","eventType":"PlayerJoined","payload":{"clientUuid":"08df3130","displayName":"TaskPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T10:27:57.5502405Z","actor":"f0c85e21","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T10:27:57.554242Z","actor":"f0c85e21","eventType":"RoleAssigned","payload":{"clientUuid":"f0c85e21","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0890454,"lon":14.4202421},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0881174,"lon":14.4252451},"type":"Progress","durationMs":5801,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.087593633333334,"lon":14.419008166666666},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0880698,"lon":14.4177935},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.08820948571428,"lon":14.425135014285715},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T10:27:57.557628Z","actor":"08df3130","eventType":"RoleAssigned","payload":{"clientUuid":"08df3130","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T10:27:59.1141215Z","actor":"f0c85e21","eventType":"PlayerLeft","payload":{"clientUuid":"f0c85e21","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T10:27:59.1309103Z","actor":"08df3130","eventType":"HostChanged","payload":{"newHostId":"08df3130","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T10:27:59.136324Z","actor":"08df3130","eventType":"PlayerLeft","payload":{"clientUuid":"08df3130","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/a98dece2ef3948d5/wal_20260127200212.ndjson b/data/lobbies/a98dece2ef3948d5/wal_20260127200212.ndjson new file mode 100644 index 0000000..3de0085 --- /dev/null +++ b/data/lobbies/a98dece2ef3948d5/wal_20260127200212.ndjson @@ -0,0 +1,25 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T20:02:12.1476985Z","actor":"3d845778","eventType":"PlayerJoined","payload":{"clientUuid":"3d845778","displayName":"Hr\u00E1\u010D813"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T20:02:20.0388845Z","actor":"d9f08acf","eventType":"PlayerJoined","payload":{"clientUuid":"d9f08acf","displayName":"Hr\u00E1\u010D324"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T20:02:22.6694997Z","actor":"12853cdc","eventType":"PlayerJoined","payload":{"clientUuid":"12853cdc","displayName":"Hr\u00E1\u010D548"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T20:02:32.5100866Z","actor":"3d845778","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T20:02:36.9965402Z","actor":"3d845778","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":100,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":100},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T20:02:37.0382413Z","actor":"d9f08acf","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"d9f08acf","displayName":"Hr\u00E1\u010D324","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T20:02:37.0459966Z","actor":"3d845778","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"3d845778","displayName":"Hr\u00E1\u010D813","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T20:02:37.0521467Z","actor":"12853cdc","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"12853cdc","displayName":"Hr\u00E1\u010D548","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T20:02:37.067663Z","actor":"3d845778","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T20:02:37.0739858Z","actor":"3d845778","eventType":"RoleAssigned","payload":{"clientUuid":"3d845778","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T20:02:37.0952034Z","actor":"d9f08acf","eventType":"RoleAssigned","payload":{"clientUuid":"d9f08acf","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7743857,"lon":15.0723828},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7739135,"lon":15.0723859},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7736218,"lon":15.0734419},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7738899,"lon":15.0720892},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T20:02:37.1011082Z","actor":"12853cdc","eventType":"RoleAssigned","payload":{"clientUuid":"12853cdc","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7731305,"lon":15.072217},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7730142,"lon":15.0715442},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7735493,"lon":15.0730608},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7732768,"lon":15.0725856},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T20:02:43.7886899Z","actor":"3d845778","eventType":"SabotageStarted","payload":{"sabotageId":"001c9a05","type":"CriticalMeltdown","initiatorId":"3d845778","deadline":"2026-01-27T20:03:28.7874253Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.7739109,"lon":15.0728539},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.7731305,"lon":15.072217},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T20:03:04.2637649Z","actor":"12853cdc","eventType":"SabotageRepaired","payload":{"sabotageId":"001c9a05","type":"CriticalMeltdown","repairerIds":["12853cdc","d9f08acf"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T20:03:14.5396438Z","actor":"d9f08acf","eventType":"EmergencyMeetingCalled","payload":{"callerId":"d9f08acf"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T20:03:14.5455447Z","actor":"d9f08acf","eventType":"MeetingStarted","payload":{"meetingId":"3f27ce38","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T20:03:37.54522Z","discussionEndTime":"2026-01-27T20:03:49.54522Z","votingEndTime":"2026-01-27T20:04:19.54522Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T20:03:14.5564984Z","actor":"3d845778","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"3d845778","meetingId":"3f27ce38"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T20:03:14.56021Z","actor":"d9f08acf","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"d9f08acf","meetingId":"3f27ce38"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T20:03:22.6446085Z","actor":"12853cdc","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"12853cdc","meetingId":"3f27ce38"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T20:03:34.0529938Z","actor":"server","eventType":"SystemMessage","payload":{"message":"nene","timestamp":"2026-01-27T20:03:34.0529704Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T20:03:42.0863741Z","actor":"3d845778","eventType":"PlayerLeft","payload":{"clientUuid":"3d845778","reason":"NE"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T20:03:42.0924732Z","actor":"d9f08acf","eventType":"HostChanged","payload":{"newHostId":"d9f08acf","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T20:03:57.7341728Z","actor":"d9f08acf","eventType":"PlayerLeft","payload":{"clientUuid":"d9f08acf","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T20:03:57.7444602Z","actor":"12853cdc","eventType":"HostChanged","payload":{"newHostId":"12853cdc","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T20:03:58.3240419Z","actor":"12853cdc","eventType":"PlayerLeft","payload":{"clientUuid":"12853cdc","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/acf2a2337a134e18/wal_20260127134448.ndjson b/data/lobbies/acf2a2337a134e18/wal_20260127134448.ndjson new file mode 100644 index 0000000..b5341c9 --- /dev/null +++ b/data/lobbies/acf2a2337a134e18/wal_20260127134448.ndjson @@ -0,0 +1,5 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T13:44:48.3746976Z","actor":"2d3725a9","eventType":"PlayerJoined","payload":{"clientUuid":"2d3725a9","displayName":"Hr\u00E1\u010D958"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T13:44:58.5173391Z","actor":"52e7c652","eventType":"PlayerJoined","payload":{"clientUuid":"52e7c652","displayName":"Hr\u00E1\u010D807"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T13:46:08.2184716Z","actor":"2d3725a9","eventType":"PlayerLeft","payload":{"clientUuid":"2d3725a9","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T13:46:08.2372227Z","actor":"52e7c652","eventType":"HostChanged","payload":{"newHostId":"52e7c652","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T13:46:19.6482643Z","actor":"52e7c652","eventType":"PlayerLeft","payload":{"clientUuid":"52e7c652","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/ad26459c014341b3/wal_20260127120645.ndjson b/data/lobbies/ad26459c014341b3/wal_20260127120645.ndjson new file mode 100644 index 0000000..04d4329 --- /dev/null +++ b/data/lobbies/ad26459c014341b3/wal_20260127120645.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:06:45.4810446Z","actor":"26d6d2d6","eventType":"PlayerJoined","payload":{"clientUuid":"26d6d2d6","displayName":"BoundTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:06:45.559154Z","actor":"26d6d2d6","eventType":"PlayerLeft","payload":{"clientUuid":"26d6d2d6","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/aff86e5dfa5f4c59/wal_20260127120050.ndjson b/data/lobbies/aff86e5dfa5f4c59/wal_20260127120050.ndjson new file mode 100644 index 0000000..f1b8770 --- /dev/null +++ b/data/lobbies/aff86e5dfa5f4c59/wal_20260127120050.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:00:50.7861797Z","actor":"a2b72ec3","eventType":"PlayerJoined","payload":{"clientUuid":"a2b72ec3","displayName":"Consist0"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:00:50.8775953Z","actor":"a2b72ec3","eventType":"PlayerLeft","payload":{"clientUuid":"a2b72ec3","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/b07fc51e1e0245a7/wal_20260127120625.ndjson b/data/lobbies/b07fc51e1e0245a7/wal_20260127120625.ndjson new file mode 100644 index 0000000..970e2af --- /dev/null +++ b/data/lobbies/b07fc51e1e0245a7/wal_20260127120625.ndjson @@ -0,0 +1,11 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:06:25.9441627Z","actor":"be865b37","eventType":"PlayerJoined","payload":{"clientUuid":"be865b37","displayName":"SabOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:06:28.0728391Z","actor":"7f2dcff0","eventType":"PlayerJoined","payload":{"clientUuid":"7f2dcff0","displayName":"SabPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:06:28.5249839Z","actor":"be865b37","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:06:28.5283931Z","actor":"be865b37","eventType":"RoleAssigned","payload":{"clientUuid":"be865b37","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0850458,"lon":14.4209564},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0873335,"lon":14.4229653},"type":"Progress","durationMs":7084,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0873211,"lon":14.4246087},"type":"Progress","durationMs":8373,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:06:28.5299613Z","actor":"7f2dcff0","eventType":"RoleAssigned","payload":{"clientUuid":"7f2dcff0","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:06:39.8729333Z","actor":"7f2dcff0","eventType":"SabotageStarted","payload":{"sabotageId":"272d2db6","type":"CriticalMeltdown","initiatorId":"7f2dcff0","deadline":"2026-01-27T12:07:24.8728064Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.0870918,"lon":14.4201829},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.0878742,"lon":14.42055},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:06:42.3913365Z","actor":"be865b37","eventType":"PlayerLeft","payload":{"clientUuid":"be865b37","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:06:42.4065848Z","actor":"7f2dcff0","eventType":"HostChanged","payload":{"newHostId":"7f2dcff0","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:06:42.4118124Z","actor":"7f2dcff0","eventType":"PlayerLeft","payload":{"clientUuid":"7f2dcff0","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:07:24.8729448Z","actor":"7f2dcff0","eventType":"SabotageMeltdown","payload":{"sabotageId":"272d2db6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:07:24.8764922Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Kritick\u00E1 sabot\u00E1\u017E - meltdown","winners":[]},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/b6302c1b809247c1/wal_20260127022019.ndjson b/data/lobbies/b6302c1b809247c1/wal_20260127022019.ndjson new file mode 100644 index 0000000..c4b6cd9 --- /dev/null +++ b/data/lobbies/b6302c1b809247c1/wal_20260127022019.ndjson @@ -0,0 +1,38 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T02:20:19.5524534Z","actor":"71c2da6d","eventType":"PlayerJoined","payload":{"clientUuid":"71c2da6d","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T02:20:19.5865245Z","actor":"8c9e0929","eventType":"PlayerJoined","payload":{"clientUuid":"8c9e0929","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T02:20:19.9017729Z","actor":"526c0dc6","eventType":"PlayerJoined","payload":{"clientUuid":"526c0dc6","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T02:20:20.2344856Z","actor":"a53b9ee4","eventType":"PlayerJoined","payload":{"clientUuid":"a53b9ee4","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T02:20:20.5355752Z","actor":"485d661f","eventType":"PlayerJoined","payload":{"clientUuid":"485d661f","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T02:20:20.8510849Z","actor":"599f2c66","eventType":"PlayerJoined","payload":{"clientUuid":"599f2c66","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T02:20:21.1314047Z","actor":"71c2da6d","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T02:20:21.1351817Z","actor":"71c2da6d","eventType":"RoleAssigned","payload":{"clientUuid":"71c2da6d","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00041534993005,"lon":14.001856352667545},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.000993296840555,"lon":14.001146724286377},"type":"Progress","durationMs":6220,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00005688336041,"lon":13.999830607573784},"type":"Progress","durationMs":8985,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T02:20:21.1444363Z","actor":"8c9e0929","eventType":"RoleAssigned","payload":{"clientUuid":"8c9e0929","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00041534993005,"lon":14.001856352667545},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.000993296840555,"lon":14.001146724286377},"type":"Progress","durationMs":6220,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00005688336041,"lon":13.999830607573784},"type":"Progress","durationMs":8985,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T02:20:21.1478035Z","actor":"526c0dc6","eventType":"RoleAssigned","payload":{"clientUuid":"526c0dc6","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00041534993005,"lon":14.001856352667545},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.000993296840555,"lon":14.001146724286377},"type":"Progress","durationMs":6220,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00005688336041,"lon":13.999830607573784},"type":"Progress","durationMs":8985,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T02:20:21.1506831Z","actor":"a53b9ee4","eventType":"RoleAssigned","payload":{"clientUuid":"a53b9ee4","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T02:20:21.1536008Z","actor":"485d661f","eventType":"RoleAssigned","payload":{"clientUuid":"485d661f","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00041534993005,"lon":14.001856352667545},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.000993296840555,"lon":14.001146724286377},"type":"Progress","durationMs":6220,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00005688336041,"lon":13.999830607573784},"type":"Progress","durationMs":8985,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T02:20:21.1566075Z","actor":"599f2c66","eventType":"RoleAssigned","payload":{"clientUuid":"599f2c66","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00041534993005,"lon":14.001856352667545},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.000993296840555,"lon":14.001146724286377},"type":"Progress","durationMs":6220,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00005688336041,"lon":13.999830607573784},"type":"Progress","durationMs":8985,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T02:20:23.386318Z","actor":"71c2da6d","eventType":"TaskCompleted","payload":{"clientUuid":"71c2da6d","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T02:20:24.1961832Z","actor":"a53b9ee4","eventType":"SabotageStarted","payload":{"sabotageId":"de955967","type":"CommsBlackout","initiatorId":"a53b9ee4","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.000253504633875,"lon":14.000173386882613},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T02:20:27.3736177Z","actor":"71c2da6d","eventType":"RepairStarted","payload":{"sabotageId":"de955967","stationId":"comms_station","playerId":"71c2da6d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T02:20:30.410144Z","actor":"71c2da6d","eventType":"SabotageRepaired","payload":{"sabotageId":"de955967","type":"CommsBlackout","repairerIds":["71c2da6d"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T02:21:04.522664Z","actor":"a53b9ee4","eventType":"SabotageStarted","payload":{"sabotageId":"f7da2d3d","type":"CriticalMeltdown","initiatorId":"a53b9ee4","deadline":"2026-01-27T02:21:49.5226071Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.00315315315315,"lon":14},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":49.99684684684685,"lon":14},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T02:21:06.1458546Z","actor":"71c2da6d","eventType":"RepairStarted","payload":{"sabotageId":"f7da2d3d","stationId":"reactor_alpha","playerId":"71c2da6d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T02:21:06.166639Z","actor":"8c9e0929","eventType":"RepairStarted","payload":{"sabotageId":"f7da2d3d","stationId":"reactor_beta","playerId":"8c9e0929"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T02:21:09.1916976Z","actor":"71c2da6d","eventType":"SabotageRepaired","payload":{"sabotageId":"f7da2d3d","type":"CriticalMeltdown","repairerIds":["71c2da6d","8c9e0929"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T02:21:15.2895474Z","actor":"a53b9ee4","eventType":"PlayerKilled","payload":{"victimId":"71c2da6d","killerId":"a53b9ee4","bodyId":"57068e4f","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T02:21:15.9050306Z","actor":"8c9e0929","eventType":"BodyReported","payload":{"reporterId":"8c9e0929","bodyId":"57068e4f","victimId":"71c2da6d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T02:21:15.9099036Z","actor":"8c9e0929","eventType":"MeetingStarted","payload":{"meetingId":"fd09c40b","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T02:21:19.4092024Z","discussionEndTime":"2026-01-27T02:21:21.9092024Z","votingEndTime":"2026-01-27T02:21:31.9092024Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T02:21:21.9604829Z","actor":"8c9e0929","eventType":"PlayerVoted","payload":{"voterId":"8c9e0929","targetId":"a53b9ee4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T02:21:22.082289Z","actor":"526c0dc6","eventType":"PlayerVoted","payload":{"voterId":"526c0dc6","targetId":"a53b9ee4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T02:21:22.2067888Z","actor":"a53b9ee4","eventType":"PlayerVoted","payload":{"voterId":"a53b9ee4","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T02:21:22.3317975Z","actor":"485d661f","eventType":"PlayerVoted","payload":{"voterId":"485d661f","targetId":"a53b9ee4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T02:21:22.4571612Z","actor":"599f2c66","eventType":"PlayerVoted","payload":{"voterId":"599f2c66","targetId":"a53b9ee4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T02:21:31.9191624Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"a53b9ee4":4,"__SKIP__":1},"ejectedPlayerId":"a53b9ee4","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T02:21:31.9724435Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"a53b9ee4","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T02:21:31.976517Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["71c2da6d","8c9e0929","526c0dc6","485d661f","599f2c66"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T02:21:32.0759472Z","actor":"a53b9ee4","eventType":"PlayerLeft","payload":{"clientUuid":"a53b9ee4","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T02:21:32.0792475Z","actor":"485d661f","eventType":"PlayerLeft","payload":{"clientUuid":"485d661f","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T02:21:32.0819393Z","actor":"526c0dc6","eventType":"PlayerLeft","payload":{"clientUuid":"526c0dc6","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T02:21:32.084699Z","actor":"8c9e0929","eventType":"PlayerLeft","payload":{"clientUuid":"8c9e0929","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T02:21:32.0874731Z","actor":"599f2c66","eventType":"PlayerLeft","payload":{"clientUuid":"599f2c66","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T02:21:32.090225Z","actor":"71c2da6d","eventType":"PlayerLeft","payload":{"clientUuid":"71c2da6d","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/bc748c56a7394dcf/wal_20260127114936.ndjson b/data/lobbies/bc748c56a7394dcf/wal_20260127114936.ndjson new file mode 100644 index 0000000..9e8b179 --- /dev/null +++ b/data/lobbies/bc748c56a7394dcf/wal_20260127114936.ndjson @@ -0,0 +1,8 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T11:49:36.98134Z","actor":"a4e1bdf4","eventType":"PlayerJoined","payload":{"clientUuid":"a4e1bdf4","displayName":"TaskOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T11:49:39.6868783Z","actor":"72d43cf5","eventType":"PlayerJoined","payload":{"clientUuid":"72d43cf5","displayName":"TaskPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T11:49:40.3007906Z","actor":"a4e1bdf4","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T11:49:40.3042176Z","actor":"a4e1bdf4","eventType":"RoleAssigned","payload":{"clientUuid":"a4e1bdf4","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0876715,"lon":14.4194963},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0868455,"lon":14.4251958},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.087509957142856,"lon":14.4185082},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.0872147,"lon":14.4175128},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.088022,"lon":14.4178204},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T11:49:40.3069104Z","actor":"72d43cf5","eventType":"RoleAssigned","payload":{"clientUuid":"72d43cf5","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T11:49:41.8802958Z","actor":"a4e1bdf4","eventType":"PlayerLeft","payload":{"clientUuid":"a4e1bdf4","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T11:49:41.8969702Z","actor":"72d43cf5","eventType":"HostChanged","payload":{"newHostId":"72d43cf5","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T11:49:41.9027541Z","actor":"72d43cf5","eventType":"PlayerLeft","payload":{"clientUuid":"72d43cf5","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/be023e33ba514766/wal_20260127121855.ndjson b/data/lobbies/be023e33ba514766/wal_20260127121855.ndjson new file mode 100644 index 0000000..23c23a5 --- /dev/null +++ b/data/lobbies/be023e33ba514766/wal_20260127121855.ndjson @@ -0,0 +1,51 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:18:55.0319636Z","actor":"3e656288","eventType":"PlayerJoined","payload":{"clientUuid":"3e656288","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:18:55.0571831Z","actor":"7727729d","eventType":"PlayerJoined","payload":{"clientUuid":"7727729d","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:18:55.3839787Z","actor":"7cba1fa1","eventType":"PlayerJoined","payload":{"clientUuid":"7cba1fa1","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:18:55.6812971Z","actor":"452b3607","eventType":"PlayerJoined","payload":{"clientUuid":"452b3607","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:18:55.9874319Z","actor":"d40cd2a4","eventType":"PlayerJoined","payload":{"clientUuid":"d40cd2a4","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:18:56.3188041Z","actor":"dea0db05","eventType":"PlayerJoined","payload":{"clientUuid":"dea0db05","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:18:56.6036324Z","actor":"3e656288","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:19:00.0469754Z","actor":"3e656288","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50,"lon":14},"radiusMeters":500,"buildings":[[49.9995982,13.9988557,49.9996139,13.9989847,49.9995247,13.999015,49.999559,13.9992526,49.9994732,13.9992804,49.9994004,13.9989207,49.9995982,13.9988557],[50.0030291,14.0032499,50.0029731,14.0032212,50.0029823,14.0031782,50.0030377,14.0032066,50.0030291,14.0032499],[50.002806,14.0021477,50.002748,14.0021207,50.002764,14.0020337,50.002822,14.0020597,50.002806,14.0021477],[50.0002085,14.0062707,50.0001621,14.0062201,50.0001805,14.0061796,50.0001608,14.0061581,50.0002677,14.0059227,50.0003585,14.0060063,50.0002485,14.0062487,50.0002284,14.0062268,50.0002085,14.0062707],[49.999899,14.005295,49.999799,14.005295,49.999799,14.0052505,49.999872,14.0052485,49.999898,14.005245,49.999899,14.005281,49.999899,14.005295],[50.0002725,14.0049187,50.0003091,14.0047966,50.0004265,14.0048825,50.0003904,14.0050026,50.0002725,14.0049187],[50.0025376,14.0038882,50.0025128,14.0040283,50.0024703,14.0040102,50.0024724,14.0039982,50.0024449,14.0039864,50.0024675,14.0038583,50.0025376,14.0038882],[49.999825,14.004864,49.99981,14.004863,49.999766,14.004863,49.999784,14.004678,49.999839,14.004689,49.999825,14.004864],[50.0036755,14.0025612,50.0037485,14.0026096,50.0037346,14.0026601,50.0037497,14.0026702,50.0037394,14.0027077,50.0037243,14.0026977,50.0037166,14.0027253,50.0036438,14.0026771,50.0036755,14.0025612],[49.9988227,14.0036285,49.9988392,14.003592,49.9988846,14.0036412,49.9988967,14.0036143,49.9989384,14.0036595,49.9989263,14.0036865,49.9989579,14.0037206,49.9989262,14.003791,49.9989496,14.0038163,49.998924,14.003873,49.9988748,14.0038196,49.9988637,14.003844,49.9988322,14.0038097,49.9988491,14.0037726,49.998808,14.0037279,49.9988159,14.0037105,49.9988062,14.0036997,49.9988335,14.0036425,49.9988227,14.0036285],[49.9996402,14.0024034,49.9997675,14.002696,49.9996703,14.0027962,49.9995799,14.0025854,49.9995351,14.0026321,49.9994409,14.0024135,49.9995933,14.0022555,49.9996516,14.0023915,49.9996402,14.0024034],[49.9998422,14.0063047,49.9997811,14.0062829,49.9998174,14.0060935,49.9998223,14.0060926,49.9998763,14.0061207,49.9998422,14.0063047],[50.0016226,14.0052186,50.0016915,14.0052447,50.0016703,14.0053854,50.0016425,14.0053754,50.0016477,14.0053406,50.0016065,14.0053256,50.0016226,14.0052186],[50.0022752,14.0026312,50.002178,14.002604,50.002203,14.002429,50.0022976,14.0024533,50.0022752,14.0026312],[49.999809,14.0028468,49.9999025,14.0027879,49.9999897,14.0031336,49.9998853,14.003147,49.999813,14.002865,49.999809,14.0028468],[50.0030396,14.0023877,50.0032625,14.0023218,50.0032735,14.0024267,50.0030525,14.0024922,50.0030396,14.0023877],[49.9981375,14.0057495,49.9980966,14.0057372,49.9981073,14.0056513,49.9981486,14.0056645,49.9981375,14.0057495],[50.0028193,14.002589,50.0028035,14.0025638,50.0027936,14.0025779,50.0027726,14.0025426,50.00281,14.0024951,50.0028457,14.0025492,50.0028193,14.002589],[50.003142,14.0042086,50.0030918,14.0041832,50.0030999,14.0041447,50.0030873,14.0041203,50.0030943,14.0040875,50.0031123,14.0040864,50.0031186,14.0040563,50.0031876,14.0040913,50.0031666,14.0041909,50.0031477,14.0041814,50.003142,14.0042086],[49.999281,14.0016022,49.9991701,14.0013284,49.9992571,14.0012409,49.9993678,14.0015148,49.999281,14.0016022],[50.0017765,14.004599,50.001802,14.0044812,50.0018347,14.0044983,50.0018146,14.0045687,50.0018019,14.0046127,50.0017765,14.004599],[50.0026585,14.0033609,50.0026256,14.0035217,50.0025431,14.003481,50.0025559,14.003418,50.0025437,14.003412,50.0025638,14.0033142,50.0026585,14.0033609],[49.9998956,14.0042403,49.9998972,14.0043541,49.9999263,14.0043558,49.9999258,14.0044366,49.999827,14.0044362,49.9998352,14.004252,49.9998956,14.0042403],[50.0026136,14.0051481,50.0025786,14.0052733,50.0025303,14.0052408,50.0025355,14.005222,50.002506,14.0052019,50.0025359,14.0050961,50.0026136,14.0051481],[50.000048,14.004866,49.999966,14.004854,49.999978,14.004686,50.00006,14.004698,50.000048,14.004866],[50.0024131,14.004281,50.0024434,14.0041361,50.0025255,14.0041767,50.0024965,14.0043225,50.0024131,14.004281],[50.0029989,14.0046288,50.0030108,14.0046356,50.0030018,14.0046737,50.0029899,14.0046669,50.0029704,14.0047497,50.0028937,14.0047063,50.0029276,14.0045618,50.0030044,14.0046053,50.0029989,14.0046288],[50.0021764,14.0053793,50.0022256,14.0054025,50.0022224,14.0054187,50.002262,14.0054374,50.0022466,14.0055161,50.002207,14.0054974,50.0022039,14.0055136,50.0021547,14.0054904,50.0021764,14.0053793],[50.0021019,14.0057844,50.0021246,14.0056611,50.0021763,14.0056837,50.0021734,14.0056999,50.0022107,14.0057161,50.0021971,14.0057912,50.0021605,14.0057755,50.0021548,14.0058072,50.0021019,14.0057844],[49.9998475,14.0059393,49.99985,14.0058676,49.9999031,14.0058703,49.9999218,14.0059026,49.999921,14.0059438,49.9998475,14.0059393],[50.0004046,14.0030002,50.000309,14.003016,50.000299,14.002893,50.000348,14.002883,50.0003536,14.0029477,50.000399,14.00294,50.0004046,14.0030002],[50.0038795,14.0032397,50.0038253,14.0032326,50.0038292,14.0031617,50.0038833,14.0031688,50.0038795,14.0032397],[50.0025182,14.0047938,50.0025905,14.0048459,50.0025582,14.0049531,50.002486,14.004901,50.0025182,14.0047938],[50.0023577,14.0058221,50.002424,14.0058799,50.0023977,14.0059524,50.0023883,14.0059442,50.0023705,14.0059936,50.0023228,14.005952,50.0023407,14.0059027,50.0023314,14.0058946,50.0023577,14.0058221],[50.0038795,14.0032397,50.0038756,14.0033106,50.0038214,14.0033035,50.0038253,14.0032326,50.0038795,14.0032397],[50.0033082,14.0042516,50.0033379,14.0041191,50.003341,14.0041207,50.0033454,14.004101,50.003372,14.0041155,50.0033846,14.0040586,50.0034775,14.0041088,50.0034651,14.004164,50.0034064,14.004132,50.0034016,14.0041529,50.0034153,14.0041604,50.0033852,14.0042932,50.0033082,14.0042516],[49.9998422,14.0063047,49.9998231,14.0064172,49.9997598,14.0063935,49.9997811,14.0062829,49.9998422,14.0063047],[50.0005518,14.0027695,50.0005668,14.0029724,50.0004046,14.0030002,50.0004012,14.0029547,50.0004462,14.0029477,50.000445,14.0029318,50.0004349,14.00279,50.0005518,14.0027695],[49.99993,14.0053745,49.999899,14.005371,49.999899,14.005295,49.999899,14.005281,49.999933,14.005281,49.99993,14.0053745],[50.00017,14.004985,50.000135,14.004981,50.000135,14.004886,50.000166,14.004881,50.00017,14.004985],[50.0021187,14.0042587,50.0021147,14.0042775,50.0020878,14.0042639,50.0020917,14.0042453,50.0020662,14.0042323,50.0020968,14.0040859,50.0021199,14.0040975,50.0021261,14.0040675,50.0021612,14.0040851,50.0021549,14.0041151,50.00217,14.0041226,50.0021668,14.0041378,50.0021793,14.0041441,50.0021517,14.0042755,50.0021187,14.0042587],[50.0032342,14.0032132,50.0033435,14.0032743,50.0033011,14.0034554,50.003192,14.0033951,50.0032342,14.0032132],[50.0021489,14.0030901,50.0021626,14.0029766,50.0022268,14.0029943,50.0022408,14.0030268,50.0022151,14.0032464,50.0021334,14.0032233,50.0021444,14.0031306,50.0021369,14.0031283,50.0021416,14.0030882,50.0021489,14.0030901],[49.9998746,14.0053593,49.9998743,14.0058198,49.9997439,14.0058183,49.999744,14.0056595,49.9997688,14.0056596,49.9997689,14.0056164,49.9998103,14.0056165,49.9998104,14.0053592,49.9998746,14.0053593],[50.0022087,14.0026653,50.002346,14.0027086,50.0023343,14.0028031,50.0021943,14.002759,50.0022087,14.0026653],[50.0031321,14.0044273,50.0031208,14.0044753,50.0030609,14.0044417,50.0030479,14.0044973,50.0029634,14.0044499,50.0029876,14.0043461,50.0031321,14.0044273],[50.0023667,14.0055598,50.0024085,14.0055984,50.0023971,14.0056282,50.0024175,14.0056469,50.0023926,14.0057116,50.0023124,14.0056374,50.0023371,14.0055733,50.0023552,14.00559,50.0023667,14.0055598],[50.0029304,14.0034397,50.0029394,14.0033949,50.0029945,14.0034217,50.0029854,14.0034665,50.0029304,14.0034397],[50.0021363,14.0059144,50.0020819,14.0058922,50.0020927,14.0058297,50.002147,14.0058547,50.0021363,14.0059144],[50.0023559,14.0019577,50.002403,14.0019807,50.0023953,14.0020185,50.0023482,14.0019953,50.0023559,14.0019577],[50.0002165,14.002022,50.000237,14.0019317,50.0002783,14.0019529,50.0002673,14.0019991,50.0002565,14.0020441,50.0002165,14.002022],[50.0031422,14.0036097,50.003251,14.0036714,50.0032086,14.0038522,50.0030998,14.0037913,50.0031422,14.0036097],[50.0029523,14.0020308,50.0029805,14.0015162,50.003049,14.0015254,50.0030209,14.0020398,50.0029523,14.0020308],[50.0020056,14.0036438,50.0020158,14.0035866,50.0020871,14.0036205,50.0020795,14.0036551,50.0020716,14.0036512,50.0020627,14.0036947,50.0020544,14.0036909,50.0020485,14.0037213,50.002001,14.0036985,50.0020113,14.0036465,50.0020056,14.0036438],[50.0002759,14.0050389,50.0003652,14.0050889,50.0003508,14.0051509,50.0003214,14.0051344,50.0003173,14.0051538,50.0002577,14.0051204,50.0002759,14.0050389],[50.0033549,14.0022199,50.0031945,14.0022171,50.0031956,14.0020711,50.0032814,14.0020726,50.0032811,14.0021067,50.0033571,14.0021081,50.0033587,14.0018791,50.0035439,14.0018825,50.0035423,14.0021023,50.0034042,14.0020999,50.0034036,14.0021885,50.0033551,14.0021876,50.0033549,14.0022199],[50.0030377,14.0032066,50.0029823,14.0031782,50.0029915,14.0031351,50.0030463,14.0031633,50.0030377,14.0032066],[49.9999135,14.0048762,49.9999185,14.0048821,49.9999162,14.0049173,49.9998525,14.0049198,49.9998512,14.0048383,49.9998966,14.0048361,49.9999135,14.0048762],[50.003012,14.0033352,50.0030033,14.0033784,50.0029482,14.0033516,50.0029569,14.0033084,50.003012,14.0033352],[49.9984387,14.006532,49.9984509,14.006454,49.9984873,14.0064666,49.9984754,14.0065473,49.9984387,14.006532],[49.9999896,14.0019357,50.0000375,14.0020321,50.0000627,14.002002,50.0000952,14.0020674,50.0000676,14.002101,50.0000829,14.0021314,49.9999063,14.0023472,49.999814,14.0021634,49.9999896,14.0019357],[50.0027611,14.0053662,50.0027568,14.0053821,50.0027263,14.0053622,50.0027306,14.0053463,50.0027116,14.0053339,50.0027141,14.0053245,50.0027018,14.0053165,50.0027171,14.0052601,50.0027294,14.0052681,50.0027418,14.0052221,50.0027768,14.0052449,50.0027745,14.0052534,50.00282,14.0052832,50.0028157,14.005299,50.0027921,14.0053863,50.0027611,14.0053662],[50.0035249,14.0022892,50.0035316,14.0023745,50.003323,14.0024141,50.0033141,14.0023292,50.0035249,14.0022892],[49.9999976,14.0052821,49.9999968,14.0053054,50.0000809,14.0053129,50.0000781,14.0053872,49.9999701,14.005378,49.9999737,14.0052799,49.9999976,14.0052821],[50.0024904,14.003704,50.0024965,14.0037068,50.0025101,14.0036367,50.0025896,14.0036738,50.0025592,14.0038299,50.0025103,14.0038071,50.0025141,14.0037878,50.0024775,14.0037707,50.0024904,14.003704],[50.0030007,14.0030922,50.0030549,14.00312,50.0030463,14.0031633,50.0029915,14.0031351,50.0030007,14.0030922],[49.9997787,14.001727,49.9998311,14.0018469,49.9997727,14.0018964,49.999728,14.0017795,49.9996577,14.0018415,49.9995709,14.001611,49.999709,14.001484,49.9997595,14.0016206,49.9997238,14.0016521,49.999732,14.0016501,49.9997394,14.0016572,49.9997706,14.0017352,49.9997787,14.001727],[50.0023319,14.0046916,50.0023584,14.0045522,50.0024411,14.0045901,50.0024285,14.0046563,50.0024547,14.0046682,50.0024408,14.0047415,50.0024127,14.0047286,50.0024085,14.0047509,50.0023575,14.0047276,50.0023617,14.0047053,50.0023319,14.0046916],[50.0000742,14.0068532,50.0000849,14.006777,50.0002268,14.0068246,50.0002156,14.0069056,50.0001899,14.0069188,50.0001825,14.0068834,50.0001352,14.0068671,50.0001392,14.0068372,50.0001206,14.0068312,50.0001163,14.0068603,50.0001139,14.0068594,50.0001128,14.006867,50.0000742,14.0068532],[49.999796,14.003733,49.999744,14.003541,49.99978,14.003516,49.999791,14.003549,49.99994,14.003431,49.9999907,14.0035527,49.999999,14.003593,49.999796,14.003733],[49.9998348,14.0070019,49.9998548,14.0068631,50.0000508,14.0069388,50.0000347,14.0070653,49.9998348,14.0070019],[50.0029657,14.0032651,50.0029731,14.0032212,50.0030291,14.0032499,50.0030208,14.0032918,50.0029657,14.0032651],[50.0003434,14.0028059,50.0004349,14.00279,50.000445,14.0029318,50.000399,14.00294,50.0003536,14.0029477,50.000348,14.002883,50.0003434,14.0028059],[50.0038558,14.0025727,50.0038334,14.0026341,50.003772,14.0025936,50.0037896,14.0025291,50.0038558,14.0025727],[49.9983043,14.0046921,49.9982391,14.0046849,49.9982416,14.0046073,49.9983059,14.0046111,49.9983043,14.0046921],[50.0024204,14.0021684,50.0024103,14.0022574,50.0023962,14.0022535,50.0023878,14.0023266,50.0022932,14.0023007,50.0023016,14.0022278,50.0022831,14.0022227,50.0022933,14.0021337,50.0023142,14.0021394,50.0023179,14.0021072,50.0024025,14.0021302,50.0023988,14.0021625,50.0024204,14.0021684],[50.0018852,14.0058154,50.0019104,14.005825,50.0018963,14.005912,50.0018713,14.0059023,50.0018852,14.0058154],[49.9997165,14.0034574,49.9997228,14.0034791,49.9996893,14.0035031,49.9996829,14.0034814,49.9996324,14.0035174,49.9996035,14.0034269,49.999765,14.0032998,49.9997964,14.0034005,49.9997165,14.0034574],[50.0032948,14.0047884,50.0032745,14.0049024,50.0032666,14.0048991,50.0032596,14.0049381,50.0032097,14.0049167,50.0032167,14.0048776,50.0032067,14.0048734,50.0032271,14.0047592,50.0032948,14.0047884],[49.999872,14.0052485,49.999799,14.0052505,49.9998,14.005171,49.999873,14.00517,49.999872,14.0052485],[49.998496,14.0052224,49.9983907,14.0052185,49.9983938,14.0051093,49.9984974,14.0051148,49.998496,14.0052224],[50.002826,14.00541,50.002851,14.00532,50.0028157,14.005299,50.0027921,14.0053863,50.002826,14.00541],[50.0036617,14.002026,50.0037212,14.0020337,50.0037126,14.0021925,50.0036531,14.0021847,50.0036617,14.002026],[50.0038208,14.0034987,50.0038493,14.0033942,50.0039433,14.0034559,50.0039279,14.0035122,50.0039147,14.0035034,50.0039015,14.0035516,50.0038208,14.0034987],[50.0001254,14.004246,50.0001338,14.0043788,50.0000727,14.0043889,50.0000636,14.0042562,50.0001254,14.004246],[50.0029931,14.0027045,50.0030356,14.0029272,50.0028083,14.0030094,50.0028044,14.0029835,50.0027336,14.0030093,50.0027033,14.0031449,50.0026117,14.0031065,50.00267,14.0028559,50.0029931,14.0027045],[50.0021603,14.0059731,50.0021448,14.0060567,50.0021102,14.0060413,50.0021069,14.0060594,50.0020574,14.0060373,50.0020801,14.0059152,50.0021295,14.0059374,50.0021257,14.0059577,50.0021603,14.0059731],[49.9980185,14.0054444,49.9980145,14.00534,49.9980607,14.0053357,49.9980647,14.0054402,49.9980185,14.0054444],[49.9993364,14.0037512,49.9993797,14.0037769,49.9993734,14.0038021,49.9994105,14.0038243,49.999384,14.0039307,49.9992414,14.0038453,49.9992678,14.0037391,49.9993302,14.0037765,49.9993364,14.0037512],[49.9991521,14.0024795,49.9991829,14.0025391,49.9991343,14.0026021,49.9991031,14.0025451,49.9991521,14.0024795],[50.003733,14.00333,50.0036913,14.0033075,50.0036995,14.0032705,50.0036765,14.0032581,50.0036944,14.0031785,50.0037218,14.0031933,50.0037151,14.0032232,50.0037174,14.0032246,50.003716,14.0032305,50.0037511,14.0032492,50.003733,14.00333],[49.9994059,14.0022412,49.9993361,14.0023177,49.9993043,14.0022476,49.9993736,14.0021726,49.9993133,14.0020448,49.9992417,14.0021375,49.9991666,14.001991,49.9993373,14.0017644,49.9993929,14.0018713,49.9994456,14.0019819,49.9994876,14.0019318,49.9995666,14.002085,49.9994184,14.0022628,49.9994059,14.0022412],[50.000006,14.00499,49.999911,14.004978,49.9999162,14.0049173,49.9999185,14.0048821,50.000015,14.004891,50.000006,14.00499],[49.99988,14.003285,49.999791,14.003253,49.9998,14.003189,49.999889,14.003223,49.99988,14.003285],[49.9997173,14.0066379,49.9997418,14.0064334,49.9998164,14.0064572,49.999803,14.0066433,49.9997173,14.0066379],[50.0030033,14.0033784,50.0029945,14.0034217,50.0029394,14.0033949,50.0029482,14.0033516,50.0030033,14.0033784],[50.0001719,14.0033403,50.0001793,14.003404,50.0001659,14.0034077,50.0001806,14.0035345,50.0001239,14.0035503,50.0000982,14.0033654,50.0001719,14.0033403],[50.0028722,14.0049376,50.0029498,14.0050098,50.0028965,14.0051472,50.0028068,14.0050636,50.0028389,14.0049805,50.0028512,14.004992,50.0028722,14.0049376],[50.0035615,14.0037886,50.0035872,14.0038038,50.0035704,14.0038723,50.0035448,14.0038572,50.0035615,14.0037886],[50.0023691,14.0044474,50.0023805,14.0043819,50.002386,14.0043842,50.0023949,14.0043334,50.00245,14.0043568,50.0024207,14.0045239,50.0023655,14.0045005,50.0023745,14.0044497,50.0023691,14.0044474],[50.0000341,14.0049623,50.0001719,14.0049994,50.0001431,14.005262,50.0000058,14.0052277,50.0000341,14.0049623],[49.9988616,14.0013829,49.9989582,14.0015292,49.9989194,14.001591,49.9989374,14.0016183,49.9989661,14.0015727,49.9990807,14.0017463,49.9990025,14.0018705,49.9988897,14.001699,49.9988642,14.0017395,49.9989039,14.0017997,49.9988089,14.0019509,49.9987284,14.001829,49.9988162,14.0016896,49.9988291,14.001709,49.9988718,14.0016411,49.9987834,14.0015072,49.9988616,14.0013829],[49.9997105,14.0060476,49.9997176,14.0059104,49.9997724,14.0059144,49.9997737,14.0058603,49.99985,14.0058676,49.9998475,14.0059393,49.9998435,14.0060607,49.9998251,14.0060615,49.9997105,14.0060476],[49.9995106,14.0011178,49.9995464,14.0012241,49.999575,14.0012008,49.9995888,14.0012419,49.9996193,14.001217,49.9996378,14.0012717,49.9995702,14.0013356,49.9996273,14.0014927,49.9995536,14.0015621,49.99938,14.0010714,49.9994234,14.0010363,49.9994637,14.0011558,49.9995106,14.0011178],[50.0025741,14.0057461,50.002563,14.0057759,50.002581,14.0057919,50.0025568,14.0058572,50.0024818,14.0057901,50.002506,14.0057249,50.002527,14.0057437,50.0025382,14.0057139,50.0025741,14.0057461],[49.9990579,14.002951,49.9990108,14.0029159,49.9990348,14.0028388,49.9989193,14.0027527,49.998935,14.0027024,49.998894,14.0026718,49.9989025,14.0026471,49.9989808,14.0026507,49.9991191,14.0027539,49.9990579,14.002951],[50.0020179,14.0062313,50.0020418,14.0061123,50.0020939,14.0061375,50.0020915,14.0061492,50.0021249,14.0061654,50.0021133,14.0062234,50.0021118,14.0062227,50.0021084,14.0062476,50.0020751,14.0062315,50.00207,14.0062565,50.0020179,14.0062313],[49.9989047,14.0025267,49.9988968,14.0025405,49.9988837,14.0025257,49.9988923,14.0025094,49.9988583,14.002463,49.998937,14.0023056,49.999017,14.002418,49.9989327,14.0025648,49.9989047,14.0025267],[50.0000796,14.003715,50.0001045,14.0039789,49.9999785,14.0040069,49.9999556,14.0037535,50.0000796,14.003715],[49.9995622,14.0039036,49.9995981,14.00382,49.9997173,14.0039351,49.9996834,14.0040165,49.9995622,14.0039036],[50.0030208,14.0032918,50.003012,14.0033352,50.0029569,14.0033084,50.0029657,14.0032651,50.0030208,14.0032918],[50.0001661,14.0047996,50.0001082,14.0048097,50.0001042,14.0047576,50.0000997,14.0047576,50.0000861,14.0045795,50.0001492,14.0045693,50.0001643,14.0047458,50.0001661,14.0047996],[50.0000082,14.0025378,50.0000118,14.002625,49.9999768,14.0026307,49.9999711,14.0025428,50.0000082,14.0025378],[50.002095,14.0035466,50.0021133,14.0034877,50.0021377,14.0035059,50.0021194,14.0035649,50.002095,14.0035466],[50.0020444,14.004814,50.0020388,14.0048892,50.0019577,14.0048745,50.0019637,14.0047996,50.0020444,14.004814],[50.0022752,14.0026312,50.0022976,14.0024533,50.0024379,14.0024913,50.0024255,14.0026732,50.0022752,14.0026312],[50.0040237,14.0030839,50.0040413,14.0030187,50.0040931,14.0030521,50.0040755,14.0031175,50.0040237,14.0030839],[50.0000326,14.003336,50.0000645,14.0035314,49.9999907,14.0035527,49.9999646,14.0033575,50.0000326,14.003336],[50.0004206,14.0051081,50.0005078,14.0051664,50.0004939,14.0052163,50.0004049,14.0051652,50.0004206,14.0051081],[49.9980347,14.005094,49.9980308,14.0051558,49.9979973,14.005149,49.998002,14.005089,49.9980347,14.005094],[49.9984221,14.000129,49.9984505,14.0002445,49.9984419,14.0002497,49.9984577,14.0003135,49.9983708,14.000365,49.998355,14.0003002,49.9983838,14.0002828,49.9983556,14.0001685,49.9984221,14.000129],[49.9987509,13.9981882,49.9987038,13.9981859,49.9987064,13.9980509,49.9987536,13.9980531,49.9987509,13.9981882],[49.9987704,13.995411,49.9986234,13.9954568,49.9986074,13.9953329,49.9987929,13.9952753,49.9987988,13.9953214,49.9987603,13.9953332,49.9987704,13.995411],[50.0040856,13.9999091,50.0040585,14.0001404,50.0040172,14.0001286,50.0040174,14.0001273,50.0040019,14.0001225,50.0040188,13.9999953,50.0040013,13.9999897,50.0040149,13.9998866,50.0040856,13.9999091],[50.0041044,14.0011678,50.0041065,14.0012235,50.0040399,14.0012296,50.0040378,14.0011738,50.0041044,14.0011678],[50.0035051,13.9964781,50.0034033,13.9970095,50.0033043,13.9969637,50.0034055,13.9964322,50.0035051,13.9964781],[50.0041024,14.0011121,50.0041044,14.0011678,50.0040378,14.0011738,50.0040358,14.0011182,50.0041024,14.0011121],[49.9971776,13.9962706,49.9971297,13.9963449,49.9970421,13.9962121,49.9970868,13.9961384,49.9971776,13.9962706],[49.9980364,13.9966922,49.9980769,13.9966498,49.9981478,13.9968252,49.9981116,13.9968647,49.9980868,13.9968078,49.9980697,13.9968256,49.9980635,13.996811,49.9980485,13.9968266,49.9980163,13.9967525,49.9980312,13.996737,49.9980246,13.9967219,49.9980417,13.9967041,49.9980364,13.9966922],[49.9969325,13.9959332,49.996948,13.9959155,49.9970246,13.9960467,49.9969846,13.9961064,49.9968856,13.9959231,49.9969065,13.9958884,49.9969325,13.9959332],[49.9979819,14.000558,49.9979733,14.0005615,49.9979808,14.0006126,49.9979418,14.0006271,49.9979287,14.0005794,49.9979119,14.0003792,49.9979694,14.0003651,49.9979819,14.000558],[49.9980491,13.9979692,49.9980793,13.9979576,49.9980952,13.9980522,49.998086,13.9980558,49.9980932,13.9980985,49.9979989,13.9981359,49.9979699,13.9979439,49.9980124,13.9979274,49.9980369,13.9979321,49.9980394,13.9979478,49.9980455,13.9979456,49.9980491,13.9979692],[50.0023249,14.001661,50.0023235,14.0016222,50.0023686,14.001618,50.0023699,14.0016564,50.002386,14.0016558,50.0023919,14.0018097,50.0023874,14.0018102,50.0023884,14.0018404,50.0023381,14.0018462,50.0023367,14.0018148,50.0023151,14.0018168,50.0023147,14.0018056,50.0023048,14.0018068,50.0023004,14.001678,50.0023098,14.0016776,50.0023092,14.0016624,50.0023249,14.001661],[49.9979029,14.0013244,49.997896,14.0015071,49.9978311,14.0015011,49.9978354,14.001384,49.9978167,14.0013823,49.9978191,14.0013166,49.9979029,14.0013244],[49.9988207,13.9999422,49.9989001,13.9998837,49.9989492,14.0000561,49.998875,14.0001126,49.9988207,13.9999422],[49.9998238,13.9977942,49.9999325,13.9978198,49.9999168,13.9979798,49.9998272,13.9979587,49.9998335,13.9978942,49.9998145,13.9978897,49.9998238,13.9977942],[49.9992389,13.9981081,49.9993022,13.9984984,49.9991842,13.9985521,49.9991134,13.9981681,49.9992389,13.9981081],[49.9968993,13.9967579,49.9969557,13.99684,49.9969182,13.9969021,49.9968619,13.99682,49.9968993,13.9967579],[50.0031638,13.9971067,50.0031495,13.997158,50.0031,13.9971246,50.0031143,13.9970733,50.0031638,13.9971067],[49.9990744,14.0004157,49.999116,14.0005593,49.9990576,14.0006003,49.9990152,14.0004619,49.9990744,14.0004157],[50.0029197,13.9978451,50.0029397,13.9977673,50.0029815,13.9977933,50.0029612,13.9978718,50.0029197,13.9978451],[49.9982475,13.999441,49.9982856,13.9995627,49.9982125,13.9996191,49.9981734,13.9994969,49.9982475,13.999441],[49.9985706,13.9967499,49.9985426,13.9966622,49.9985827,13.9966313,49.9986159,13.9967355,49.9985897,13.9967557,49.9985845,13.9967392,49.9985706,13.9967499],[49.9976033,13.9982162,49.9975541,13.9982607,49.9975398,13.9982234,49.9975895,13.9981785,49.9976033,13.9982162],[49.9978875,13.9986978,49.9979339,13.998671,49.9979287,13.9986493,49.9979531,13.9986353,49.9979583,13.9986568,49.9980121,13.9986256,49.9980285,13.9986941,49.9980419,13.9986862,49.9980593,13.9987584,49.998047,13.9987655,49.9980613,13.9988245,49.997994,13.9988636,49.9979612,13.9987272,49.9979028,13.9987612,49.9978875,13.9986978],[49.9981748,14.0016393,49.9981386,14.0015463,49.998236,14.001456,49.9983106,14.0016459,49.9982412,14.0017161,49.9981986,14.0016165,49.9981748,14.0016393],[49.9982996,13.9978022,49.9982377,13.9975762,49.9982839,13.9975449,49.998349,13.997758,49.9982996,13.9978022],[50.004017,14.0008261,50.0040005,14.000777,50.0040521,14.0007357,50.0040685,14.0007851,50.004017,14.0008261],[50.0040982,14.0010007,50.0041002,14.0010565,50.0040337,14.0010626,50.0040315,14.0010067,50.0040982,14.0010007],[50.0043852,13.999732,50.0043802,13.9997837,50.004322,13.99977,50.004327,13.9997183,50.0043852,13.999732],[50.0001166,13.9971706,50.0001139,13.9971938,50.0000841,13.9971854,50.0000884,13.9971483,50.0000367,13.9971337,50.0000555,13.9969862,50.0000856,13.9969935,50.0000885,13.9969675,50.0001712,13.9969906,50.0001685,13.9970135,50.000199,13.9970209,50.0001809,13.9971872,50.0001166,13.9971706],[50.0030289,13.9973812,50.0030426,13.9973297,50.0030921,13.9973631,50.0030778,13.9974142,50.0030289,13.9973812],[50.0044147,13.9986719,50.0044121,13.9986962,50.0043762,13.9986868,50.0043788,13.9986626,50.0043586,13.9986574,50.0043731,13.9985224,50.0044595,13.9985447,50.004445,13.9986797,50.0044147,13.9986719],[50.0028846,13.9980739,50.0028899,13.9980531,50.0028832,13.9980489,50.0029136,13.9979283,50.0029908,13.9979748,50.0029598,13.9980959,50.0029462,13.9980875,50.0029408,13.9981086,50.0028846,13.9980739],[49.9989935,14.0004563,49.9989419,14.0003142,49.9989973,14.0002603,49.9990134,14.0002446,49.9990635,14.0003975,49.9989935,14.0004563],[49.997309,13.998451,49.997319,13.998475,49.997291,13.998503,49.997299,13.998521,49.99728,13.99854,49.997226,13.998413,49.9972835,13.9983525,49.9973062,13.9983304,49.997319,13.998364,49.997328,13.998355,49.997339,13.998379,49.997329,13.998389,49.997341,13.998419,49.997309,13.998451],[49.9985329,13.994575,49.998473,13.994575,49.998473,13.994521,49.9985328,13.994522,49.9985329,13.994575],[49.9991798,14.0001766,49.9991049,14.0002388,49.999038,14.0000492,49.9991133,13.9999874,49.9991798,14.0001766],[49.9980478,13.9970577,49.9980703,13.9970348,49.9980836,13.9970651,49.9980809,13.9970678,49.9981203,13.9971581,49.9980924,13.9971873,49.9980804,13.9971595,49.9980214,13.9972214,49.9979925,13.9971552,49.9980271,13.9971188,49.9980117,13.9970834,49.998044,13.9970497,49.9980478,13.9970577],[50.0034016,13.9961165,50.0034691,13.9961625,50.0034181,13.9963431,50.0033792,13.9963164,50.0033861,13.9962916,50.0033575,13.9962719,50.0034016,13.9961165],[50.0041002,14.0010565,50.0041024,14.0011121,50.0040358,14.0011182,50.0040337,14.0010626,50.0041002,14.0010565],[49.998535,13.9997582,49.9986312,13.9999284,49.9985741,14.0000021,49.9984795,13.9998321,49.998535,13.9997582],[50.004213,13.997789,50.00413,13.997779,50.004145,13.997506,50.004191,13.997511,50.004228,13.997515,50.004213,13.997789],[49.9974004,13.9969382,49.9973246,13.9968034,49.9974566,13.996553,49.9975096,13.9966195,49.9975465,13.9966749,49.9975104,13.9967399,49.9974004,13.9969382],[49.9980128,13.9982213,49.9981155,13.9981804,49.9981028,13.998095,49.9980932,13.9980985,49.9979989,13.9981359,49.9980128,13.9982213],[50.0025801,14.0011936,50.0025678,14.0013315,50.0025302,14.0013235,50.0025299,14.0013263,50.0025054,14.001321,50.0025066,14.0013073,50.0024749,14.0013006,50.0024871,14.001173,50.0025801,14.0011936],[49.9996548,13.998191,49.9997084,13.9981819,49.9997123,13.9982374,49.9996586,13.9982464,49.9996548,13.998191],[50.0030856,13.9971758,50.0031,13.9971246,50.0031495,13.997158,50.0031351,13.9972092,50.0030856,13.9971758],[50.0025441,14.0004177,50.0025358,14.0004164,50.0025382,14.0003757,50.0025464,14.000377,50.002551,14.0002989,50.0026168,14.0003082,50.0026134,14.0003656,50.0026218,14.0003668,50.0026199,14.0004004,50.0026113,14.0003992,50.0026064,14.0004823,50.0025408,14.0004731,50.0025441,14.0004177],[49.9982708,14.0010027,49.998295,14.0010678,49.9982756,14.0010848,49.9982836,14.001107,49.9982272,14.0011556,49.9981824,14.0010304,49.998238,14.0009821,49.9982517,14.0010197,49.9982708,14.0010027],[49.9986224,13.9979389,49.9986208,13.9980238,49.9985606,13.99802,49.9985621,13.9979351,49.9986224,13.9979389],[50.0039917,13.9989065,50.004014,13.9989117,50.0040027,13.9990304,50.003946,13.9990173,50.0039403,13.9990762,50.0038647,13.9990587,50.003871,13.9989924,50.0038485,13.9989873,50.0038573,13.9988964,50.0038123,13.998886,50.0038181,13.9988251,50.0038391,13.99883,50.003847,13.9987468,50.0038306,13.998743,50.0038378,13.9986676,50.0039058,13.9986834,50.0039021,13.998722,50.0039774,13.9987393,50.0039792,13.9987196,50.0040036,13.9987252,50.0040017,13.9987449,50.0040071,13.9987463,50.0039917,13.9989065],[49.9985492,14.0009187,49.998606,14.0008352,49.9986509,14.0009054,49.9985932,14.0009906,49.9985492,14.0009187],[50.0039837,14.0007274,50.0040358,14.0006865,50.0040521,14.0007357,50.0040005,14.000777,50.0039837,14.0007274],[50.0032642,13.9981801,50.0032195,13.9984248,50.0031495,13.9983947,50.0031944,13.9981511,50.0032642,13.9981801],[49.9966015,13.9957863,49.9965214,13.9959239,49.9964906,13.9958808,49.9965685,13.99574,49.9966015,13.9957863],[49.9977263,13.999427,49.9976454,13.9994724,49.997632,13.9994206,49.9976426,13.9994141,49.9976243,13.9993427,49.997639,13.9993336,49.9976272,13.9992878,49.9976873,13.9992554,49.9977263,13.999427],[50.0036002,14.0000161,50.0034691,14.0006512,50.0034027,14.0006183,50.0034956,14.0001676,50.0035396,14.0001893,50.0035614,14.0000839,50.0035256,14.0000661,50.0035419,13.999987,50.0036002,14.0000161],[49.9985585,13.9992899,49.9985654,13.9993073,49.9985755,13.9992977,49.9985866,13.9993223,49.9985887,13.99932,49.9986464,13.9994614,49.9986487,13.9994593,49.9986582,13.9994826,49.998617,13.9995221,49.9985945,13.9994669,49.9985831,13.9994782,49.9985615,13.9994248,49.9985724,13.9994136,49.9985324,13.9993204,49.9985585,13.9992899],[49.9975443,13.9970046,49.9975781,13.9969638,49.9975671,13.9969419,49.9975837,13.9969219,49.9975946,13.9969437,49.9976218,13.9969101,49.9976724,13.9970112,49.9975945,13.9971049,49.9975443,13.9970046],[49.9977852,14.0009241,49.9978246,14.0009026,49.9978451,14.0009923,49.9977451,14.0010478,49.9977397,14.0010239,49.9977364,14.0010256,49.9977349,14.001019,49.9977381,14.0010172,49.9977245,14.0009574,49.9977395,14.0009492,49.9977311,14.0009078,49.9977435,14.0009019,49.997744,14.0009048,49.9977781,14.0008882,49.9977852,14.0009241],[49.9996756,13.9977514,49.9996617,13.9979021,49.999548,13.997877,49.9995619,13.9977262,49.9996756,13.9977514],[49.9976153,13.9988597,49.9976343,13.9989077,49.9975757,13.9989613,49.9975572,13.9989133,49.9975498,13.9989202,49.997512,13.9988223,49.9975855,13.9987537,49.997624,13.9988514,49.9976153,13.9988597],[50.0027432,13.9985754,50.0027494,13.9985384,50.0027605,13.9985428,50.0027692,13.9984917,50.0028474,13.9985235,50.0028295,13.9986297,50.0027513,13.9985979,50.0027542,13.99858,50.0027432,13.9985754],[50.0030899,13.9992694,50.0030559,13.9994586,50.0029858,13.9994281,50.0030199,13.9992389,50.0030899,13.9992694],[49.9980685,13.9974567,49.9980182,13.9974882,49.9979739,13.9973182,49.9980241,13.9972866,49.9980685,13.9974567],[49.9983358,13.9997267,49.9982644,13.9997803,49.998225,13.9996524,49.9982961,13.9995997,49.9983358,13.9997267],[49.9982799,13.9992439,49.9983342,13.9992076,49.9983464,13.9992525,49.9982921,13.9992889,49.9982799,13.9992439],[49.9968943,13.9958455,49.9968453,13.9959161,49.9967882,13.9958322,49.9967657,13.9958069,49.996815,13.9957249,49.9968943,13.9958455],[49.9978926,14.000156,49.9978762,14.0001042,49.9978599,14.0001166,49.9978481,14.0000793,49.9978249,14.0000972,49.9978091,14.0000473,49.9978323,14.0000296,49.997801,13.9999311,49.9978563,13.9998888,49.9979265,14.0001099,49.9978926,14.000156],[50.0042346,14.0012246,50.0043753,14.0011791,50.0043971,14.0013409,50.0042563,14.0013864,50.0042346,14.0012246],[49.9979107,13.9978556,49.9978497,13.9976361,49.9979298,13.9975834,49.9979888,13.9978057,49.9979107,13.9978556],[50.0030634,13.9974654,50.0030151,13.9974329,50.0030289,13.9973812,50.0030778,13.9974142,50.0030634,13.9974654],[50.0032083,14.0017397,50.003204,14.0017627,50.0032545,14.0017856,50.0032364,14.0018818,50.0031859,14.0018591,50.0031816,14.0018826,50.0031323,14.0018606,50.0031591,14.0017175,50.0032083,14.0017397],[49.9982418,13.9991043,49.998296,13.9990679,49.9983093,13.9991166,49.9982549,13.9991521,49.9982418,13.9991043],[49.9994951,13.9969897,49.9995177,13.996817,49.9999785,13.9969678,49.9999626,13.9971223,49.9994951,13.9969897],[49.9979584,13.9983162,49.9980023,13.9985218,49.9979344,13.9985613,49.9978896,13.9983517,49.9979584,13.9983162],[49.9980712,13.9978316,49.9981839,13.9977617,49.9982103,13.9978645,49.9980976,13.9979343,49.9980746,13.9978447,49.9980712,13.9978316],[50.0025798,13.9998618,50.0026661,13.9998788,50.0026491,14.0000565,50.0026276,14.0000517,50.0026271,14.000057,50.0025658,14.0000433,50.0025798,13.9998618],[49.9970738,13.9968818,49.9971227,13.9968204,49.9971723,13.9969149,49.9971243,13.9969784,49.9970738,13.9968818],[50.0028039,13.9988167,50.0027874,13.9989394,50.002729,13.9989205,50.0027453,13.9987978,50.0028039,13.9988167],[49.998861,13.997864,49.998835,13.99786,49.998839,13.997776,49.998868,13.99778,49.998861,13.997864],[49.9988537,13.9962534,49.9988884,13.996248,49.9988936,13.9963293,49.9988588,13.9963346,49.9988537,13.9962534],[50.0024945,13.9988677,50.0025543,13.9988978,50.0025292,13.9990164,50.0024697,13.9989863,50.0024945,13.9988677],[49.9972714,13.9965118,49.9973494,13.9966404,49.9972855,13.9967296,49.9972056,13.9965969,49.9972714,13.9965118],[49.9976532,13.9989558,49.9976619,13.9989475,49.997698,13.9990447,49.9976245,13.9991132,49.9975869,13.9990161,49.9975942,13.9990092,49.9975757,13.9989613,49.9976343,13.9989077,49.9976532,13.9989558],[49.9998382,13.9930774,49.9998224,13.9930698,49.9998166,13.9931004,49.9997257,13.993052,49.9997624,13.9928811,49.9998693,13.992938,49.9998382,13.9930774],[49.9996508,13.9981355,49.9997045,13.9981264,49.9997084,13.9981819,49.9996548,13.998191,49.9996508,13.9981355],[50.0030856,13.9971758,50.0031351,13.9972092,50.0031208,13.9972605,50.0030713,13.9972271,50.0030856,13.9971758],[50.0044205,13.9990085,50.004409,13.9991665,50.0043451,13.9991553,50.0043566,13.9989973,50.0044205,13.9990085],[49.9973046,13.9985675,49.99737,13.9985036,49.9974383,13.9986737,49.9973734,13.9987371,49.9973046,13.9985675],[49.9987791,13.998549,49.9988011,13.9986908,49.9987516,13.9987092,49.9987296,13.9985675,49.9987791,13.998549],[49.9991857,14.0008127,49.9991233,14.0008557,49.9990717,14.0006788,49.999134,14.0006352,49.9991857,14.0008127],[50.0032473,13.9972481,50.0032203,13.9972359,50.0032301,13.9971817,50.003245,13.9971883,50.0032491,13.9971657,50.0032613,13.9971711,50.0032791,13.9970739,50.0033816,13.9971186,50.0032999,13.9975704,50.003197,13.9975244,50.003214,13.9974267,50.0032016,13.9974216,50.0032061,13.9973996,50.0031917,13.9973927,50.0032015,13.9973385,50.0032286,13.9973503,50.0032473,13.9972481],[50.004394,14.0000699,50.0044,14.0000119,50.0044896,14.000034,50.004479,14.000137,50.0044852,14.0001384,50.0044818,14.0001715,50.0044744,14.0001697,50.0044724,14.0001892,50.0043915,14.0001691,50.0044015,14.0000718,50.004394,14.0000699],[50.00405,14.001343,50.0040485,14.001285,50.0041085,14.0012792,50.00405,14.001343],[49.9984213,13.9994912,49.9984747,13.9996669,49.9984086,13.9997192,49.9983586,13.9995342,49.9984213,13.9994912],[49.998374,13.995921,49.9984048,13.9960019,49.9983723,13.9960316,49.9983415,13.9959506,49.998374,13.995921],[50.004191,13.997511,50.004145,13.997506,50.004109,13.997501,50.004121,13.997228,50.004205,13.997238,50.004191,13.997511],[49.9969457,13.9962831,49.9968993,13.9963422,49.9968334,13.9962176,49.9968799,13.9961585,49.9969457,13.9962831],[49.9978211,14.0002379,49.997834,14.0002357,49.9979412,14.0001922,49.9979577,14.0002828,49.9978452,14.0003302,49.9978211,14.0002379],[50.0042109,13.9984861,50.0041298,13.9984639,50.0041601,13.9981965,50.0042059,13.998209,50.0042412,13.9982187,50.0042109,13.9984861],[49.9987591,13.9994904,49.9988099,13.9996555,49.9987504,13.9996961,49.9987005,13.9995311,49.9987591,13.9994904],[49.9980245,13.9982939,49.9980128,13.9982213,49.9981155,13.9981804,49.9981265,13.9982542,49.9980245,13.9982939],[50.0038604,14.0014229,50.0039772,14.0014089,50.003985,14.0015665,50.0039997,14.0015648,50.0040027,14.0016239,50.0039879,14.0016256,50.0039939,14.0017441,50.0038771,14.0017581,50.0038604,14.0014229],[49.9977241,13.9955965,49.9977969,13.9956672,49.997769,13.9957361,49.9976962,13.9956654,49.9977241,13.9955965],[50.0025188,14.000832,50.0025293,14.0008351,50.0025298,14.0008312,50.0026031,14.0008528,50.0026063,14.000827,50.0026315,14.0008345,50.0026227,14.0009064,50.0026201,14.0009055,50.0026213,14.000896,50.0026039,14.0008908,50.0025893,14.0010101,50.0025107,14.000987,50.0025112,14.0009829,50.0025007,14.0009797,50.0025188,14.000832],[49.9984982,13.9976838,49.9984862,13.9978806,49.9984296,13.9978731,49.9984396,13.9976735,49.9984982,13.9976838],[49.9984577,13.9962924,49.9984919,13.9962637,49.9985264,13.9963627,49.9984922,13.9963914,49.9984577,13.9962924],[50.003434,13.9998855,50.0034094,14.0000157,50.0034649,14.0000409,50.0033008,14.0008417,50.0033147,14.0008486,50.0032938,14.0009508,50.0031049,14.0008575,50.003391,13.9994183,50.0033673,13.9994062,50.0034122,13.999195,50.0036994,13.9992926,50.003684,13.9993786,50.0035254,13.9993092,50.0035052,13.9994349,50.0036008,13.99947,50.0035899,13.999535,50.0035715,13.9995265,50.0035217,13.9997886,50.0035189,13.9998346,50.0035033,13.9999171,50.003434,13.9998855],[49.9978121,13.9974468,49.997725,13.9975268,49.9976692,13.9973808,49.9977047,13.9973482,49.9977255,13.9974027,49.9977771,13.9973552,49.9978121,13.9974468],[50.0030492,13.9975165,50.0030013,13.9974845,50.0030151,13.9974329,50.0030634,13.9974654,50.0030492,13.9975165],[49.9982549,13.9991521,49.9983093,13.9991166,49.9983217,13.9991622,49.9982673,13.9991977,49.9982549,13.9991521],[50.0032336,14.0012967,50.0031961,14.0014803,50.0030003,14.001384,50.0031049,14.0008575,50.0032938,14.0009508,50.0033357,14.0009712,50.0032845,14.0012213,50.0032435,14.0012012,50.0032249,14.0012925,50.0032336,14.0012967],[50.0033921,14.0008441,50.0035011,14.000876,50.0034481,14.0013115,50.003339,14.0012794,50.0033921,14.0008441],[50.0036813,14.0015337,50.0037313,14.0014719,50.0037996,14.0016049,50.0037508,14.0016654,50.0037222,14.0016096,50.0036292,14.0017246,50.0036135,14.0016938,50.0035595,14.0017605,50.0035037,14.0016517,50.0036494,14.0014715,50.0036813,14.0015337],[49.9988199,13.9978462,49.9988195,13.9978622,49.9987976,13.9978604,49.9987951,13.9979369,49.9987058,13.9979302,49.9987096,13.9977849,49.9987455,13.9977875,49.9987457,13.9977805,49.9987504,13.9977809,49.9987502,13.9977878,49.9988337,13.9977939,49.9988321,13.9978464,49.9988199,13.9978462],[49.9989271,13.9994554,49.9988834,13.9994934,49.9988415,13.9993773,49.9988853,13.9993393,49.9989271,13.9994554],[49.998567,13.999254,49.99852,13.999311,49.998503,13.999331,49.998465,13.999254,49.998533,13.999181,49.998567,13.999254],[50.0043852,13.999732,50.004327,13.9997183,50.004332,13.9996665,50.0043903,13.9996802,50.0043852,13.999732],[50.0026626,13.9990432,50.0027303,13.9990587,50.0027246,13.9991175,50.0027049,13.999113,50.0026949,13.9992168,50.002647,13.9992058,50.0026626,13.9990432],[49.9966165,13.9956203,49.9966631,13.9955389,49.996754,13.9956693,49.9967056,13.9957501,49.9966165,13.9956203],[50.0035525,13.9957891,50.003548,13.9958043,50.0034857,13.9957604,50.0035177,13.9956491,50.0035806,13.9956935,50.0035774,13.9957043,50.0035958,13.9957174,50.003571,13.9958022,50.0035525,13.9957891],[50.0042561,14.0007276,50.0043359,14.0007041,50.0043522,14.000837,50.004272,14.0008606,50.0042561,14.0007276],[49.9971523,13.9965084,49.9971708,13.9964795,49.9971561,13.9964561,49.9971979,13.9963908,49.9972714,13.9965118,49.9972056,13.9965969,49.9971523,13.9965084],[49.9977218,13.9965528,49.9976942,13.9966294,49.9976485,13.9965898,49.9976401,13.9966132,49.9975972,13.996576,49.9976057,13.9965527,49.9975453,13.9965002,49.9975723,13.9964246,49.9977218,13.9965528],[50.0031208,13.9972605,50.0031065,13.9973118,50.003057,13.9972785,50.0030713,13.9972271,50.0031208,13.9972605],[49.9989973,14.0002603,49.9989419,14.0003142,49.9989271,14.0003286,49.9988743,14.0001865,49.9989449,14.0001202,49.9989973,14.0002603],[49.9988158,13.9991484,49.9988631,13.9992795,49.9988371,13.9993021,49.9988303,13.9992836,49.998813,13.9992987,49.9987719,13.9991848,49.9988158,13.9991484],[49.9987531,13.9947513,49.9985332,13.9947523,49.9985329,13.994575,49.9985328,13.994522,49.9987527,13.994521,49.9987531,13.9947513],[50.0029197,13.9978451,50.0029612,13.9978718,50.0029655,13.9978745,50.002954,13.9979185,50.0029083,13.9978892,50.0029197,13.9978451],[49.9982273,13.9971024,49.9982479,13.997171,49.998264,13.9971597,49.9983028,13.9973076,49.9982264,13.9973558,49.9981675,13.9971457,49.9982273,13.9971024],[49.9991486,13.9951684,49.9991606,13.9952979,49.9990283,13.9953273,49.9990163,13.9951978,49.9991486,13.9951684],[50.0041085,14.0012792,50.0040485,14.001285,50.004042,14.0012852,50.0040399,14.0012296,50.0041065,14.0012235,50.0041085,14.0012792],[49.9981586,13.9991637,49.9980958,13.9992065,49.9980365,13.9989974,49.9980989,13.9989531,49.9981586,13.9991637],[49.9996793,13.993636,49.9996149,13.9936044,49.999642,13.9934713,49.999707,13.993503,49.9996793,13.993636],[49.9980309,13.9983295,49.9980915,13.9982902,49.9980962,13.99831,49.9981542,13.9982758,49.9981783,13.9983898,49.9980482,13.9984397,49.9980309,13.9983295],[49.9977636,13.9965925,49.9978599,13.9967644,49.9978218,13.9968189,49.9978382,13.9968466,49.9978275,13.9968621,49.9977086,13.9966628,49.9977636,13.9965925],[49.9980495,14.0010836,49.9980994,14.0010442,49.9981708,14.0012706,49.9981217,14.0013095,49.9980495,14.0010836],[49.999647,13.99808,49.9997006,13.998071,49.9997045,13.9981264,49.9996508,13.9981355,49.999647,13.99808],[50.0039832,14.0007023,50.0039564,14.0009784,50.0038943,14.0009646,50.0039201,14.0006883,50.0039832,14.0007023],[50.003196,13.997031,50.003135,13.996993,50.003158,13.996904,50.003215,13.996929,50.003196,13.997031],[50.0026194,13.9993387,50.0027168,13.9993736,50.0026913,13.9995471,50.0026293,13.9995258,50.0026402,13.9994498,50.0026054,13.999438,50.0026194,13.9993387],[50.0043334,13.9999464,50.0043146,14.0002019,50.004216,14.0001845,50.0042348,13.999929,50.0043334,13.9999464],[49.9966055,13.996087,49.9966231,13.9960173,49.9966881,13.9960543,49.9966736,13.9961223,49.9966055,13.996087],[49.9977805,13.9972585,49.9977527,13.9971647,49.9978737,13.9970767,49.9978659,13.9970522,49.9979063,13.9970231,49.9979404,13.9971352,49.9977805,13.9972585],[49.9982673,13.9991977,49.9983217,13.9991622,49.9983342,13.9992076,49.9982799,13.9992439,49.9982673,13.9991977],[49.9984428,13.9961228,49.9984751,13.9962154,49.9984409,13.9962442,49.9984086,13.9961514,49.9984428,13.9961228],[49.9968143,13.9959776,49.9967681,13.9960539,49.9966722,13.9959143,49.9967195,13.9958397,49.9968143,13.9959776],[50.0042059,13.998209,50.0041601,13.9981965,50.0041242,13.9981866,50.0041546,13.9979179,50.0042363,13.9979403,50.0042059,13.998209],[49.9975636,13.9975208,49.9976406,13.9976855,49.9975968,13.9977345,49.9975196,13.9975699,49.9975636,13.9975208],[49.9980547,14.0008614,49.9979941,14.0008897,49.9979648,14.0007368,49.9980271,14.000712,49.9980547,14.0008614],[49.9978354,14.0017517,49.9978716,14.0016744,49.9979646,14.0017792,49.9979386,14.0018347,49.9979331,14.0018285,49.9979208,14.001853,49.9978354,14.0017517],[49.999256,13.9971367,49.9991709,13.9971044,49.9991878,13.9969972,49.9992729,13.9970294,49.999256,13.9971367],[50.0040898,13.9995911,50.0040946,13.9995618,50.004078,13.9995552,50.0040842,13.9995013,50.004131,13.999521,50.0040856,13.9999091,50.0040149,13.9998866,50.0040555,13.9995801,50.0040898,13.9995911],[50.0040685,14.0007851,50.0040849,14.0008343,50.0040333,14.0008754,50.004017,14.0008261,50.0040685,14.0007851],[49.9988776,13.9971176,49.9988207,13.9971294,49.998804,13.9970049,49.9988775,13.9969897,49.9988807,13.9970259,49.9988699,13.9970282,49.9988776,13.9971176],[49.9988653,13.9967075,49.9988696,13.9968472,49.998813,13.9968513,49.9988087,13.9967101,49.9988653,13.9967075],[49.9965691,13.9956886,49.9965847,13.9957107,49.9966024,13.9956788,49.9966809,13.9957864,49.9966451,13.9958477,49.9966015,13.9957863,49.9965685,13.99574,49.9965524,13.9957172,49.9965691,13.9956886],[50.0030492,13.9975165,50.0030348,13.9975678,50.0029876,13.997536,50.0030013,13.9974845,50.0030492,13.9975165],[50.0045275,13.9994514,50.0045523,13.9994537,50.0045511,13.9994849,50.0045638,13.9994859,50.0045595,13.9996064,50.0044831,13.9995998,50.0044873,13.9994794,50.0045264,13.9994828,50.0045275,13.9994514],[50.003057,13.9972785,50.0031065,13.9973118,50.0030921,13.9973631,50.0030426,13.9973297,50.003057,13.9972785],[50.0043826,13.9994853,50.0042942,13.9994561,50.0043117,13.9993285,50.0042986,13.9993241,50.0043078,13.9992573,50.0044093,13.9992908,50.0043826,13.9994853],[50.0003269,14.0042746,50.0003281,14.0042678,50.00035,14.0042782,50.0003315,14.0043716,50.0003492,14.00438,50.00038,14.0043946,50.0003711,14.0044388,50.0003382,14.0044232,50.0002562,14.0043843,50.000282,14.0042533,50.0003269,14.0042746],[49.9980615,14.0003713,49.9980947,14.0003627,49.9981025,14.0004332,49.9980354,14.000451,49.9980207,14.0003184,49.99803,14.0003159,49.9980141,14.0001718,49.9980697,14.0001567,49.9980747,14.0002049,49.9980877,14.0002015,49.9980933,14.0002563,49.9980806,14.0002594,49.9980858,14.0003075,49.9980555,14.0003153,49.9980615,14.0003713],[49.9998196,14.0019033,49.9998451,14.0019735,49.9997882,14.0020232,49.9997615,14.0019499,49.9998196,14.0019033],[49.9998853,14.003147,49.999863,14.00315,49.999781,14.003101,49.999731,14.00291,49.999813,14.002865,49.9998853,14.003147],[49.9998696,14.0006321,49.9998102,14.000645,49.9998051,14.0005857,49.9997847,14.0005898,49.9997758,14.0004834,49.9997576,14.0004872,49.9997464,14.0003541,49.9997335,14.0003567,49.9997263,14.0002712,49.9997145,14.0002736,49.9997053,14.0001636,49.9998064,14.0001432,49.9998004,14.0000726,49.9998785,14.0000566,49.9998822,14.0000968,49.9999016,14.0000925,49.999906,14.0001398,49.9998825,14.000145,49.9998872,14.0001963,49.9999055,14.0001926,49.9999088,14.0002315,49.9998951,14.0002343,49.9998967,14.000254,49.9998777,14.000258,49.9998943,14.0004563,49.9998756,14.00046,49.9998848,14.0005696,49.9998646,14.0005736,49.9998696,14.0006321],[49.9985884,13.9972239,49.9986359,13.9972216,49.9986387,13.9973552,49.9985912,13.9973576,49.9985884,13.9972239],[50.0040174,14.0001273,50.0040172,14.0001286,50.0039517,14.0006222,50.0038435,14.0005877,50.0039091,14.0000928,50.0040019,14.0001225,50.0040174,14.0001273],[50.0039604,13.9976365,50.003941,13.9976317,50.0039238,13.9978003,50.0038617,13.9977853,50.0038665,13.9977369,50.0038488,13.9977325,50.0038587,13.9976362,50.0038765,13.9976407,50.0038815,13.9975921,50.0039185,13.9976005,50.0039284,13.9975047,50.0039728,13.9975158,50.0039604,13.9976365],[50.0037669,14.0008389,50.00373,14.0008249,50.0037597,14.0006375,50.0037967,14.0006515,50.0037669,14.0008389],[50.0025569,13.9999922,50.0025536,14.0000637,50.0025073,14.0000583,50.0025128,13.9999839,50.0025569,13.9999922],[50.0038627,14.0000581,50.0037859,14.0005472,50.0036929,14.0005119,50.0037697,14.000023,50.0038627,14.0000581],[50.0035597,14.0005027,50.0035924,14.0003505,50.0036373,14.0003737,50.0036047,14.0005258,50.0035597,14.0005027],[50.0044093,13.9983481,50.004344,13.9983298,50.0043496,13.9982756,50.0044156,13.998294,50.0044093,13.9983481],[50.0035354,14.0010858,50.0035766,14.0010977,50.0035442,14.0013685,50.003503,14.0013566,50.0035354,14.0010858],[50.0034489,14.0030051,50.0034348,14.0030639,50.0034152,14.0030519,50.0034065,14.0030888,50.0033271,14.0030444,50.0033296,14.0030331,50.0033236,14.0030152,50.0033291,14.0029931,50.0033411,14.0029842,50.0033443,14.0029728,50.0033495,14.0029755,50.0033625,14.0029153,50.003438,14.0029572,50.0034292,14.0029938,50.0034489,14.0030051],[50.0035225,14.0027623,50.0034882,14.002911,50.0034493,14.0028858,50.0034529,14.0028723,50.0034141,14.0028472,50.0034208,14.0028218,50.0033973,14.0028066,50.0034115,14.0027535,50.0034033,14.0027324,50.0034108,14.0027049,50.003433,14.0027055,50.003444,14.0027193,50.0035225,14.0027623],[50.0027173,14.0022526,50.0027331,14.0021645,50.0027899,14.0021891,50.002774,14.0022771,50.0027173,14.0022526],[49.998895,13.9998151,49.9988044,13.9998912,49.9987702,13.9997835,49.9988584,13.9997109,49.998895,13.9998151],[49.9981807,14.0007423,49.9982153,14.0008909,49.9981578,14.0009231,49.9981234,14.0007745,49.9981807,14.0007423],[49.9987185,14.0006568,49.9986244,14.0005142,49.9986933,14.000398,49.9987903,14.0005334,49.9987185,14.0006568],[49.99938,14.0015043,49.999346,14.0014024,49.9993856,14.0013719,49.9994184,14.0014741,49.99938,14.0015043],[50.0022088,14.0061569,50.0022011,14.006205,50.0021534,14.0061867,50.002161,14.0061386,50.0022088,14.0061569],[50.0022804,14.0049357,50.0023459,14.0049785,50.0023281,14.0050442,50.0023467,14.0050564,50.0023278,14.0051263,50.0022436,14.0050714,50.0022804,14.0049357],[50.0040295,14.0009515,50.0040961,14.0009451,50.0040982,14.0010007,50.0040315,14.0010067,50.0040295,14.0009515],[49.9992801,13.9992774,49.9993059,13.9993313,49.9992797,13.9993623,49.9992592,13.9993205,49.999276,13.9993008,49.9992702,13.9992885,49.9992801,13.9992774],[50.0003015,14.0065949,50.0003458,14.0066108,50.000338,14.0066636,50.0002937,14.0066478,50.0003015,14.0065949],[50.0002025,14.0029243,50.0002687,14.0029133,50.0002531,14.0026863,50.0001869,14.0026974,50.0001882,14.0027162,50.000202,14.0029171,50.0002025,14.0029243],[49.9990692,13.9962558,49.9990931,13.9962574,49.9990945,13.9962083,49.9990705,13.9962068,49.9990692,13.9962558],[49.9975773,13.9967212,49.9975304,13.9967976,49.9975104,13.9967399,49.9975465,13.9966749,49.9975773,13.9967212],[49.9980504,13.9978915,49.9980454,13.9978916,49.9980265,13.9978562,49.9980294,13.9978528,49.9980305,13.9978542,49.9980547,13.9978147,49.9980602,13.997821,49.9980629,13.9978153,49.9980722,13.9978279,49.9980712,13.9978316,49.9980746,13.9978447,49.9980596,13.9978579,49.9980659,13.9978758,49.9980504,13.9978915],[49.9999061,13.9998657,49.9998826,13.9998709,49.9998917,13.9999698,49.9999042,13.999967,49.9999086,14.0000143,49.9998753,14.0000217,49.9998785,14.0000566,49.9998004,14.0000726,49.9997565,13.9995506,49.9997533,13.9995122,49.999864,13.9994811,49.9998817,13.9997395,49.9998928,13.999737,49.999896,13.9997714,49.9998836,13.9997742,49.9998887,13.9998301,49.9999025,13.9998271,49.9999061,13.9998657],[49.9972835,13.9983525,49.9972759,13.9983355,49.9972922,13.9982969,49.9973062,13.9983304,49.9972835,13.9983525],[49.9993534,13.9975598,49.9993096,13.9975457,49.9993141,13.9975108,49.9992731,13.9974976,49.9992928,13.9973501,49.9993778,13.9973774,49.9993534,13.9975598],[49.9998612,13.9993316,49.9998762,13.9993273,49.9998796,13.9993554,49.9998556,13.9993623,49.9997621,13.9993813,49.9997568,13.9990581,49.9998597,13.9990531,49.9998612,13.9993316],[49.997206,13.9984375,49.9971896,13.998402,49.9972888,13.998289,49.9972922,13.9982969,49.9972759,13.9983355,49.9972835,13.9983525,49.997226,13.998413,49.997206,13.9984375],[49.9998556,13.9993623,49.9998646,13.9994382,49.9998772,13.9994347,49.9998821,13.9994759,49.999864,13.9994811,49.9997533,13.9995122,49.9997427,13.9993852,49.9997621,13.9993813,49.9998556,13.9993623],[49.9996644,13.9988355,49.9999118,13.9987584,49.9999337,13.9988902,49.9998589,13.9989051,49.9998597,13.9990531,49.9997568,13.9990581,49.9997549,13.9989367,49.9996814,13.9989556,49.9996644,13.9988355],[49.9997068,13.9995252,49.99971,13.9995637,49.9997035,13.9995655,49.9995401,13.9996116,49.9994732,13.9992804,49.999559,13.9992526,49.9995812,13.9992454,49.999632,13.9995462,49.9996992,13.9995273,49.9997068,13.9995252],[50.0032086,13.9980076,50.0031535,13.9979815,50.0031422,13.9980405,50.0031974,13.9980707,50.0032086,13.9980076],[50.0031944,13.99808,50.0031797,13.9981511,50.0031392,13.998131,50.003156,13.9980559,50.0031944,13.99808],[50.0032147,13.9976053,50.0031776,13.9977816,50.0031293,13.9977575,50.0031655,13.9975791,50.0032147,13.9976053],[50.0031428,13.9990193,50.0031047,13.9992385,50.0030499,13.9992155,50.003088,13.9989962,50.0031428,13.9990193],[50.0030609,13.9994808,50.0030121,13.9997651,50.0029908,13.9997562,50.0030396,13.9994719,50.0030609,13.9994808],[50.0018146,14.0045687,50.001834,14.0045789,50.0018241,14.0046248,50.0018019,14.0046127,50.0018146,14.0045687],[50.001834,14.0045789,50.0018146,14.0045687,50.0018347,14.0044983,50.0018498,14.0045061,50.001834,14.0045789],[50.0030064,13.9979842,50.0030129,13.997956,50.0030231,13.9979113,50.0030289,13.9979149,50.003031,13.9979174,50.0030458,13.997975,50.0030282,13.9979975,50.0030064,13.9979842],[50.0030022,13.997898,50.0030231,13.9979113,50.0030129,13.997956,50.0029907,13.9979418,50.0030022,13.997898],[50.0029655,13.9978745,50.0030022,13.997898,50.0029907,13.9979418,50.002954,13.9979185,50.0029655,13.9978745],[49.9982932,13.9941214,49.9982158,13.9941599,49.9981966,13.9940662,49.9982742,13.994028,49.9982932,13.9941214],[50.0018952,14.005416,50.0019735,14.0054481,50.0019436,14.0056235,50.0018652,14.0055914,50.0018952,14.005416],[50.0030133,14.0030339,50.0030674,14.0030606,50.0030549,14.00312,50.0030007,14.0030922,50.0030133,14.0030339],[49.9988788,13.9941785,49.9989177,13.9941608,49.9989454,13.9943086,49.9988331,13.9943595,49.9988255,13.9943193,49.9988189,13.9943222,49.9988062,13.9942556,49.9988131,13.9942522,49.9988054,13.9942119,49.9988441,13.9941941,49.9988422,13.9941838,49.998877,13.9941685,49.9988788,13.9941785],[49.9987778,13.9974943,49.9987601,13.9976862,49.9986784,13.9976684,49.9986956,13.9974764,49.9987778,13.9974943],[49.9977305,13.9979198,49.997782,13.9980653,49.9976946,13.9981394,49.9975776,13.9978079,49.9976631,13.9977296,49.9977151,13.9978765,49.9977459,13.9978509,49.9977609,13.9978927,49.9977305,13.9979198],[50.0006183,14.0058164,50.0005932,14.0060042,50.0005135,14.0059783,50.0005387,14.0057905,50.0006183,14.0058164],[50.0034403,14.0035649,50.0034149,14.0036671,50.0033618,14.0036361,50.0033843,14.0035337,50.0034403,14.0035649],[50.0035081,14.003292,50.0035679,14.0033256,50.0035143,14.0035548,50.0034545,14.003521,50.0035081,14.003292],[49.9975338,13.9980303,49.9974842,13.9980754,49.9974704,13.9980388,49.9975199,13.9979935,49.9975338,13.9980303],[49.9975476,13.9980668,49.9974979,13.9981121,49.9974842,13.9980754,49.9975338,13.9980303,49.9975476,13.9980668],[49.9975616,13.9981039,49.9975118,13.998149,49.9974979,13.9981121,49.9975476,13.9980668,49.9975616,13.9981039],[49.9975757,13.9981409,49.9975256,13.9981863,49.9975118,13.998149,49.9975616,13.9981039,49.9975757,13.9981409],[49.9975895,13.9981785,49.9975398,13.9982234,49.9975256,13.9981863,49.9975757,13.9981409,49.9975895,13.9981785],[49.9988476,13.9937961,49.9988744,13.9939308,49.9988347,13.9939499,49.998839,13.9939713,49.9988005,13.9939896,49.9987963,13.9939685,49.9987533,13.9939889,49.998748,13.9939619,49.9987366,13.9939481,49.9987305,13.993935,49.9987273,13.9939187,49.9987276,13.9939027,49.9987322,13.9938818,49.9987266,13.9938541,49.9987696,13.9938335,49.9987688,13.9938293,49.998807,13.9938111,49.9988078,13.9938151,49.9988476,13.9937961],[50.002842,14.0043704,50.0028192,14.004476,50.0027928,14.0044625,50.0028152,14.0043568,50.002842,14.0043704],[50.0026018,14.0043518,50.002594,14.004402,50.0025194,14.0043708,50.0025285,14.0043223,50.0026018,14.0043518],[49.99971,13.9995637,49.9997068,13.9995252,49.9997533,13.9995122,49.9997565,13.9995506,49.99971,13.9995637],[49.9995933,14.0022555,49.9996152,14.0022371,49.9996934,14.0024177,49.9996816,14.0024306,49.9997872,14.0026738,49.9997675,14.002696,49.9996402,14.0024034,49.9996516,14.0023915,49.9995933,14.0022555]],"buildingTypes":["residential","garage","yes","residential","yes","residential","residential","yes","residential","residential","civic","yes","residential","yes","residential","civic","yes","yes","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","yes","garage","residential","residential","garage","residential","garage","yes","yes","yes","residential","residential","residential","residential","yes","garage","residential","garage","garage","garage","transformer_tower","residential","yes","yes","residential","yes","garage","yes","garage","yes","residential","residential","residential","civic","residential","garage","residential","residential","civic","yes","residential","garage","yes","garage","yes","residential","garage","residential","residential","yes","yes","yes","yes","residential","residential","hotel","residential","yes","residential","yes","garage","residential","yes","yes","residential","garage","residential","residential","yes","residential","house","civic","residential","residential","residential","residential","residential","residential","residential","residential","garage","house","yes","yes","yes","residential","yes","residential","barn","yes","house","residential","civic","barn","garage","residential","garage","yes","residential","residential","house","residential","residential","residential","residential","residential","residential","barn","garage","residential","garage","residential","yes","garage","residential","residential","residential","garage","garage","garage","residential","garage","residential","residential","residential","yes","yes","residential","residential","residential","garage","house","residential","barn","barn","residential","garage","garage","residential","garage","garage","residential","yes","garage","residential","residential","residential","yes","residential","residential","residential","residential","house","residential","retail","yes","residential","garage","residential","yes","residential","residential","garage","yes","garage","residential","residential","residential","residential","barn","garage","yes","yes","residential","residential","house","residential","garage","garage","residential","residential","residential","residential","residential","residential","yes","yes","yes","residential","yes","yes","residential","residential","barn","hotel","residential","residential","residential","yes","residential","residential","garage","garage","yes","barn","yes","residential","residential","yes","garage","residential","residential","residential","yes","residential","residential","garage","yes","residential","yes","garage","residential","yes","garage","residential","residential","residential","residential","residential","garage","residential","yes","residential","residential","yes","residential","garage","yes","residential","residential","yes","residential","house","industrial","residential","garage","residential","residential","residential","garage","residential","garage","house","residential","house","civic","yes","church","house","yes","house","yes","garage","barn","yes","garage","yes","residential","residential","residential","yes","house","residential","house","garage","residential","garage","industrial","yes","roof","yes","garage","garage","residential","barn","residential","residential","barn","residential","residential","residential","yes","yes","yes","transportation","transportation","garage","yes","yes","yes","yes","yes","house","garage","house","house","residential","yes","garage","house","garage","garage","garage","garage","garage","house","yes","garage","yes","roof"],"pathways":[[50.002391,14.0028971,50.0023646,14.0030044,50.0022123,14.0034298,50.002129,14.003694,50.00201,14.004216,50.001811,14.005434,50.0016382,14.0066793],[50.002391,14.0028971,50.0020864,14.0027947],[50.0020864,14.0027947,50.0010496,14.0024731],[50.0010496,14.0024731,50.0009016,14.0024388,50.0008368,14.0024237,50.0008014,14.0024163,50.0007143,14.0024026,50.0005265,14.0023732,50.0004158,14.002368,50.0002942,14.0023624],[49.9992247,13.9958212,49.9992349,13.9959518,49.9992149,13.99608,49.9990872,13.9966278],[49.9998659,14.0024862,49.999896,14.002582,49.9999063,14.0026257,49.9999559,14.0028368,50.0000125,14.00309,50.0000249,14.0031445],[50.0002942,14.0023624,50.0002998,14.0022706,50.0003117,14.0021219,50.0003319,14.0018696,50.0006638,13.998975,50.0006658,13.9989573],[49.9998659,14.0024862,49.9997407,14.0021885,49.999646,14.0019445],[49.9993559,14.0011673,49.999234,14.0010458,49.999108,14.000885,49.9990402,14.0007643,49.9988021,14.0004645,49.9986673,14.0002601,49.9983905,13.9997697,49.9981109,13.9988758,49.9979187,13.9980422,49.9978071,13.9977227,49.9976538,13.9975456,49.9975256,13.9972796,49.9971027,13.9965092,49.9968203,13.995935,49.9965951,13.9956374,49.9963019,13.9953677,49.9958551,13.9949061,49.9952752,13.9942007,49.9951003,13.9939521,49.9949636,13.9937572,49.9948809,13.9935339,49.9946738,13.9930385,49.9945879,13.9927509,49.9944441,13.9923913,49.9942588,13.9920435,49.9939539,13.9916857],[49.9985244,13.998317,49.9987351,13.9989316,49.9988838,13.9991521,49.9991637,13.9994102],[50.0004701,14.0048319,50.0004782,14.0049,50.0005079,14.0049504,50.0006516,14.0049606,50.0006961,14.0050431],[49.9993875,13.9946375,49.9993428,13.994843,49.9993364,13.9949255,49.9993269,13.99503,49.9993037,13.9951021,49.999265,13.995159],[49.9994918,13.9996146,49.9994356,13.9995332,49.9993813,13.9994534,49.9993672,13.9994728,49.9993718,13.9995222,49.9994134,13.9996395,49.9995392,13.9999415,49.9996675,14.0004258,49.9997239,14.0006545,49.9998112,14.0009153,49.9999152,14.0011609,49.9999003,14.00117,49.9998501,14.0011423,49.9998115,14.0010996,49.9998024,14.0011143,49.9999997,14.0016426,50.000024,14.0017034,50.00003,14.0017185,50.000028,14.0017343,50.0000213,14.0017398,49.9999697,14.00171,49.9997321,14.0014663,49.9997231,14.0014632,49.9997194,14.0014862,49.9998445,14.0018413],[49.9992247,13.9958212,49.9992648,13.9956893,49.999281,13.9955574,49.999265,13.995159],[50.0002011,14.0046407,50.0004701,14.0048319],[49.999265,13.995159,49.9992611,13.9950935,49.9992207,13.9948961,49.9986401,13.9919642,49.9983126,13.9906812,49.9981638,13.9902459,49.9978929,13.9896067,49.9978214,13.9894122,49.9977648,13.9891111,49.9971723,13.9846862,49.9970823,13.9841993,49.9967822,13.9831188,49.9967028,13.9828606,49.9963577,13.9817382,49.9948357,13.9766027,49.9947569,13.9760349],[50.0021026,14.0055517,50.0024822,14.0058871,50.0027369,14.0061007],[50.00264,14.0027956,50.00263,14.0028287,50.0024724,14.0035561,50.0023015,14.0044372,50.0022383,14.004844],[50.0022383,14.004844,50.0029572,14.0053144,50.003214,14.0055103,50.0034594,14.0056899,50.0038358,14.0059972,50.0041941,14.006184,50.0044195,14.006321,50.0045719,14.0064753,50.0047715,14.0067642],[50.0029572,14.0053144,50.0032464,14.0040124,50.0035686,14.0026461,50.0036116,14.0023844],[50.0030123,14.0034616,50.0030905,14.0030921,50.0031724,14.0025792],[50.0007166,14.0057544,50.0006725,14.0057361],[49.9975537,13.9950138,49.9973988,13.9948446,49.997065,13.9945003,49.9968362,13.9943195,49.9966837,13.9942028,49.9966177,13.9941428,49.9965037,13.9939811,49.9964674,13.9938877,49.9964299,13.9936738,49.9963887,13.9933199,49.9963862,13.9931546,49.9963999,13.9927734,49.9964004,13.9927037,49.9964021,13.9924295,49.9964024,13.9923903,49.9964037,13.9920577],[49.999917,14.0009335,49.999911,14.0009517,49.9998983,14.0009561,49.9998112,14.0009153],[49.9994918,13.9996146,49.9995201,13.9996816,49.9995401,13.9996892,49.9995598,13.9996957],[49.9995401,13.9996892,49.9996685,14.0002104,49.9997387,14.0004671,49.9998017,14.000709,49.9998747,14.000811,49.999888,14.0008284,49.999917,14.0009335,49.9999646,14.0010813,49.9999983,14.0011406,50.0000108,14.0011801,50.0000132,14.0012191,50.0000047,14.0012355,49.9999835,14.0012396,49.9999489,14.0012129,49.9999152,14.0011609],[49.9996276,13.9987988,49.9996331,13.998845,49.9996466,13.9989476,49.9996784,13.9992626,49.9996838,13.9993708,49.9996992,13.9995273],[49.9993615,13.9988452,49.9994285,13.9988536,49.9995948,13.9988095,49.9996276,13.9987988,49.9999136,13.9987058],[49.9990872,13.9966278,49.9990748,13.9964006,49.9990571,13.9963377,49.9989864,13.9961508],[50.0008715,14.0042468,50.0007925,14.0044065],[50.0000125,14.00309,50.0000752,14.003077,50.0001456,14.0031015,50.0002079,14.0031427,50.0002661,14.0032025,50.0004203,14.003452,50.0005505,14.0036569,50.0006707,14.0037727,50.000894,14.0038131],[50.0007925,14.0044065,50.0007569,14.0046027,50.000714,14.0049183,50.0006961,14.0050431,50.0006005,14.0053425,50.0005112,14.0055765,50.0004675,14.0058024,50.0004326,14.0062064,50.0004756,14.006405,50.0005114,14.0065799,50.0005262,14.0068682,50.0005091,14.0071815,50.0004194,14.0077089,50.0003053,14.0082272,50.0001883,14.0086791,50.0000675,14.0090612,49.9999494,14.0094046,49.9997921,14.009754,49.9996564,14.0099649],[49.9990784,14.0046633,49.9991816,14.0049551,49.9992402,14.0052381,49.9992418,14.0056762,49.9992275,14.0061931,49.9991975,14.0064073,49.9991168,14.0067248,49.9989522,14.0074115,49.9985826,14.0085229,49.9985154,14.0087198,49.9984106,14.0089136,49.9982207,14.0091905,49.9980308,14.0094736,49.9978647,14.0097259],[49.9983037,14.0062248,49.9983164,14.0052082,49.9983148,14.0050605,49.9982927,14.004967,49.9982436,14.0049079,49.9981487,14.0048857,49.9981202,14.0048562,49.9980664,14.0046962,49.9979904,14.0044919,49.9978971,14.004199,49.9978259,14.0039332,49.9977832,14.0036698,49.9977658,14.0035615,49.9977515,14.0032784,49.9977499,14.0031603,49.9977633,14.0031151,49.9977828,14.0030869,49.9978126,14.0030939,49.9978327,14.0031171,49.997867,14.0031967,49.997915,14.0033469,49.9980096,14.0035385,49.9982609,14.0040241,49.9983795,14.0042318,49.9987133,14.0045164,49.9990088,14.0046791,49.9990784,14.0046633,49.998939,14.0044209,49.9987859,14.0039866],[49.9963068,14.0000985,49.996465,14.0011485,49.9965185,14.0016124,49.9965441,14.0018715,49.9966134,14.0023292,49.9966925,14.0025254,49.9968878,14.0028292,49.9970782,14.0028869,49.9974144,14.0029138,49.9976789,14.0029561,49.9977828,14.0030869],[50.002491,14.0022031,50.0024509,14.0018249,50.0024308,14.0012957,50.0024456,14.0006703,50.0024805,14.0001077,50.0025141,13.9995974,50.0025545,13.9991351,50.0027111,13.998434,50.0028865,13.9978216,50.0029268,13.9977003],[50.002391,14.0028971,50.0024492,14.0027171,50.002482,14.0023143,50.002491,14.0022031,50.0026388,14.0013932,50.0027921,14.0005527],[50.0029268,13.9977003,50.0030653,13.9976041,50.0031594,13.9973197,50.003349,13.9965542],[50.0029268,13.9977003,50.0030115,13.9973092,50.003228,13.9965793,50.0035049,13.9956109,50.0035936,13.9953055,50.003681,13.9951047],[49.9910708,13.9927923,49.9912149,13.9928338,49.9930403,13.9927217,49.9934786,13.9928992,49.993953,13.9933475,49.9943968,13.9944703,49.9944572,13.9946104,49.9945264,13.9947703,49.9947702,13.9951539,49.9953293,13.9957944,49.9958903,13.9964971,49.9961754,13.996855,49.996504,13.9971968,49.9969289,13.9976639,49.9972573,13.9981973,49.9974451,13.9984012],[50.002947,13.9994309,50.003018,13.9990343,50.0030793,13.9988017,50.0031556,13.9986629,50.0031836,13.998539,50.0031363,13.9984386,50.0030696,13.9984453],[49.999646,14.0019445,49.9995894,14.001971,49.9995774,14.0019766,49.9995671,14.0019776,49.9995424,14.0019428,49.9994093,14.0017146,49.9993869,14.0016901,49.999327,14.0016743,49.999289,14.0016819,49.9992613,14.0017013,49.9991016,14.0019429,49.9990553,14.002024,49.9990419,14.002077,49.9990426,14.0021208],[49.9993559,14.0011673,49.9993064,14.0010247,49.9990387,14.0001773,49.9988951,13.9997739,49.998707,13.9993063,49.9986279,13.9990318,49.9985244,13.998317,49.9985192,13.99819,49.9985283,13.9980179,49.998564,13.9972377,49.9985244,13.996788,49.9983784,13.9963099,49.9980619,13.9955667,49.9979158,13.9953727,49.9976024,13.9951502],[50.0022383,14.004844,50.0021026,14.0055517,50.0019401,14.0064766,50.0019382,14.0064878,50.0017833,14.0074012,50.0017352,14.0076849,50.0015986,14.0083197],[50.00264,14.0027956,50.0025195,14.0028385,50.002447,14.0028697,50.002391,14.0028971],[50.0003117,14.0021219,50.0005463,14.0021633,50.0008306,14.0022134],[49.9999559,14.0028368,50.0000769,14.002799,50.0001823,14.0027854,50.0003224,14.0027456,50.0003716,14.0027325,50.0004575,14.0027103,50.0004788,14.0026671,50.0005112,14.002492,50.0005265,14.0023732],[50.0000479,14.0032535,50.0001041,14.0036236,50.0002011,14.0046407,50.0002061,14.0048702,50.0002036,14.0051027,50.0001633,14.00535,49.9999361,14.0060865,49.9996855,14.0077271,49.999247,14.009725,49.999059,14.0102772,49.9987577,14.0108939,49.9980567,14.0123076,49.9975956,14.0133414],[50.0000249,14.0031445,50.0000479,14.0032535],[50.000894,14.0038131,50.0009063,14.0036006,50.0009832,14.0033227,50.0010293,14.0030706,50.0010801,14.0026346,50.0010955,14.0023604,50.0010612,14.0021782,50.0010447,14.0020273,50.0010506,14.0010153,50.0010754,14.0000493,50.0011038,13.9989361,50.0011002,13.9987723,50.001034,13.9986288,50.0009394,13.9985203,50.0009146,13.9985],[49.9997649,14.0019072,49.9996899,14.0019693],[49.9998445,14.0018413,49.9997649,14.0019072],[49.9991865,13.99756,49.9991351,13.9977552,49.9990698,13.9980207,49.9990456,13.9981573,49.9990623,13.9983069],[49.9992106,13.9977535,49.9993492,13.9979855,49.999383,13.998005,49.9994081,13.9979823,49.9994587,13.9976056,49.9999078,13.9977279],[50.009866,14.0010918,50.008617,14.0013447,50.0083035,14.0014163,50.007374,14.0016282,50.0072313,14.001666,50.0070443,14.0015906,50.0068778,14.0014108,50.006741,14.001202,50.0065516,14.0006416,50.0064096,14.0004538,50.0062847,14.0003666,50.0062106,14.0003474,50.006133,14.000355,50.005978,14.0004113,50.0053,14.001183,50.005074,14.001358,50.0049479,14.0013933,50.00482,14.0014004,50.0045605,14.0014933,50.0043223,14.001683,50.0042123,14.0018443,50.003844,14.002239,50.0036116,14.0023844,50.003574,14.002408,50.0031724,14.0025792,50.002726,14.0027611,50.00264,14.0027956],[49.9996092,14.0018512,49.9993559,14.0011673],[50.0002942,14.0023624,50.0000817,14.0023877,49.9999659,14.0024291,49.9998659,14.0024862],[50.0042123,14.0018443,50.0042099,14.001621,50.0041519,14.0010128,50.0041255,14.0008016,50.0041141,14.0007518,50.0040645,14.0005558,50.0040857,14.0002523,50.004265,13.9987502,50.0043234,13.9982958,50.0044037,13.9974907],[50.004554,13.998224,50.0043469,14.0003398,50.004321,14.000464,50.0041255,14.0008016],[50.0026388,14.0013932,50.0026734,14.0013732,50.0027115,14.0013088,50.0027508,14.0011885,50.0027578,14.0011464,50.0028771,14.0004275,50.0028891,14.0003139,50.0028877,14.0002375,50.002853,14.0001635],[49.9976724,13.9949087,49.997858,13.9951407,49.9982506,13.99542,49.9986577,13.9960184,49.9987049,13.9960703,49.9987637,13.996118,49.9988257,13.9961508,49.9988926,13.9961655,49.9989492,13.996158,49.9989864,13.9961508,49.9990647,13.9961,49.9991128,13.996042,49.9991645,13.9959645,49.9992247,13.9958212],[49.9975537,13.9949608,49.9975994,13.9949087,49.9976724,13.9949087],[49.9976024,13.9951502,49.9975537,13.9950508,49.9975537,13.9950138,49.9975537,13.9949608],[50.0033703,13.9977981,50.0032832,13.9982763,50.0032514,13.9984511,50.0032403,13.9985241,50.0031836,13.998539],[49.9990872,13.9966278,49.999084,13.9967815,49.9991865,13.99756,49.9992106,13.9977535],[49.9987859,14.0039866,49.998648,14.003249,49.9985393,14.0028249,49.9983338,14.0023415,49.9981841,14.0019426,49.9981072,14.0018312,49.9980247,14.0017257,49.9979759,14.0016639,49.9979454,14.0016138,49.9979283,14.0015711,49.9979168,14.0015308,49.9979119,14.0014574,49.9979153,14.0013525,49.9979172,14.0012913,49.9979133,14.0012312,49.9979021,14.0011333,49.9978674,14.0009511,49.9977765,14.0003947,49.9977238,13.9995153,49.9977392,13.9993769,49.9977654,13.999199,49.9978134,13.9991166],[49.9975256,13.9972796,49.9976966,13.9970936,49.9976693,13.9967563,49.9977076,13.9966866],[49.9996992,13.9995273,49.9997035,13.9995655],[49.9997035,13.9995655,49.9997141,13.9996285,49.9997355,13.9997992,49.9997742,14.0001325],[50.0044037,13.9974907,50.0043926,13.9971289,50.0044159,13.9967776,50.004205,13.9967425,50.0041499,13.9967936,50.004095,13.9970339,50.0040718,13.9973451,50.0040692,13.9984173,50.0041107,13.9984907,50.0042408,13.9985281,50.004265,13.9987502],[49.9994451,14.0037573,49.9996802,14.0037726,49.9997819,14.0037601,49.9998972,14.0037129,50.0000084,14.0036507,50.0001041,14.0036236],[50.0062847,14.0003666,50.0062695,14.0002469,50.0062404,14.0002068,50.0061087,14.0001322,50.0059855,14.0001237,50.0057286,14.0001199,50.0055824,14.0001884,50.0053457,14.0003521,50.0050588,14.0005987,50.0049501,14.000673,50.0045864,14.0008406,50.0045199,14.000869,50.0043872,14.0009368,50.0042394,14.0009779,50.0041519,14.0010128],[49.9990872,13.9966278,49.9990422,13.9967131,49.9990212,13.9968673,49.9989938,13.9972128,49.9989641,13.9974839,49.9989164,13.9978799,49.9988768,13.9981951,49.998862,13.9983551,49.9987079,13.9984843,49.9986762,13.9984928,49.9986562,13.9984669,49.9985917,13.9983118,49.9985562,13.9981193,49.9985283,13.9980179],[50.0051576,14.0068141,50.0050328,14.0065924,50.0048426,14.0063395,50.0046662,14.0061314,50.0044074,14.0058807,50.0042824,14.0058045,50.004044,14.0057249,50.0039169,14.005624,50.0038185,14.005503,50.0037755,14.0053939,50.0037366,14.0052484,50.0036536,14.004575,50.0036486,14.0040206,50.0036505,14.0038158,50.0037659,14.0033832,50.0037716,14.0031258,50.0037701,14.003033,50.0037842,14.0028112,50.0038462,14.0026325,50.0039917,14.0022873,50.0041259,14.0021137,50.0041671,14.0020369,50.0042123,14.0018443],[49.9974451,13.9984012,49.9976071,13.9986702,49.9977822,13.9990045,49.9978134,13.9991166],[49.9993615,13.9988452,49.9993663,13.998934,49.9994096,13.9992555,49.9994918,13.9996146],[49.9992106,13.9977535,49.9992191,13.9978219,49.9993574,13.9984878,49.9993615,13.9988452],[49.9982775,13.9978306,49.9982457,13.9977178,49.9982188,13.9976073,49.9981964,13.997444,49.9981767,13.997342,49.9981269,13.9971042,49.9981096,13.9970615],[49.9978071,13.9977227,49.9978269,13.9975857,49.9978261,13.9974028,49.997843,13.9973345,49.997875,13.9972808,49.9979668,13.997219,49.998001,13.9972272,49.9980701,13.9972923,49.9981964,13.997444],[49.9990426,14.0021208,49.9990531,14.0021998,49.9990765,14.0023349,49.9991365,14.0024603],[50.002726,14.0027611,50.0027401,14.0025346,50.0034875,14.0017017],[50.0009146,13.9985,50.0008569,13.9985868,50.0006638,13.998975],[50.000894,14.0038131,50.0009214,14.0039886,50.0009075,14.0041105,50.0008967,14.0041851,50.0008715,14.0042468],[49.9999867,13.9916003,49.9993875,13.9946375],[50.0006658,13.9989573,50.0013695,13.9952674,50.0013791,13.9951593,50.0013837,13.9950721,50.0013672,13.9949736,50.0013056,13.9947685,50.0012678,13.994484,50.0012679,13.9941772,50.0012924,13.9939516,50.001352,13.9937235,50.0017432,13.9924571,50.0021895,13.9911365,50.0030288,13.9888375,50.0031984,13.9883708,50.0034218,13.9876812,50.0034622,13.9874579,50.003486,13.9873291,50.0035899,13.9867659,50.0037589,13.9860095,50.0044476,13.9828923,50.0047809,13.9816735,50.0052041,13.9800512,50.0052641,13.979607,50.0052839,13.9791489,50.0052403,13.9784945,50.0050929,13.9779031,50.0050019,13.977625,50.0047364,13.9765056,50.0046386,13.9761691,50.0045638,13.9758353,50.0045017,13.9754256,50.0044607,13.9744777,50.0044188,13.9733141,50.004551,13.9722429,50.0047466,13.9712024,50.0051509,13.9696545,50.0058086,13.9682362,50.0065075,13.9669726,50.0069544,13.9658468,50.0072143,13.9650782,50.0075082,13.9643603,50.0078188,13.9636425,50.0081287,13.9629664,50.0086349,13.9619557,50.0090231,13.9612284,50.009154,13.9609417,50.0096778,13.959897,50.010031,13.9593331,50.010271,13.9589765,50.0108859,13.9584009],[50.0000769,14.002799,50.0001118,14.0026538,50.0003369,14.0026339,50.0003716,14.0027325],[49.9999536,14.0025929,49.999896,14.002582,49.9998312,14.002562],[49.9994287,14.0012585,49.9996366,14.0018256],[49.9996192,14.0020725,49.9996076,14.0020941,49.9996018,14.0021779,49.9996099,14.002238],[49.9998312,14.002562,49.9997373,14.002322,49.9996873,14.0021832],[49.9996873,14.0021832,49.9996709,14.0021449,49.9996377,14.0020839,49.9996192,14.0020725],[49.9996092,14.0018512,49.9995653,14.0018888,49.9995894,14.001971,49.9996192,14.0020725],[49.9996366,14.0018256,49.9996899,14.0019693],[49.9993559,14.0011673,49.9994287,14.0012585],[49.9999696,14.0027115,49.9999536,14.0025929,49.9999494,14.0025452,49.9999665,14.0024905,49.9999878,14.0024683,50.000061,14.0024476,50.0004161,14.0024344,50.0004356,14.0024351,50.0004507,14.0024449,50.0004619,14.0024627,50.0004669,14.0024843],[50.000628,14.0024928,50.0006039,14.0024708,50.000588,14.002466,50.0005718,14.0024703,50.0005563,14.0024783,50.0005449,14.0024959,50.0005112,14.002492,50.0004669,14.0024843],[50.0004155,14.002286,50.0004158,14.002368,50.0004161,14.0024344],[50.0030696,13.9984453,50.0030293,13.9985426,50.0029975,13.9986193,50.0029094,13.9990477,50.0028104,13.999625,50.0027566,14.0000198,50.0027695,14.0002675,50.0027921,14.0005527],[50.0027921,14.0005527,50.002853,14.0001635,50.0028878,13.9999412,50.002947,13.9994309],[50.0003581,14.0022652,50.0003669,14.0022828,50.0003828,14.0022879,50.0004155,14.002286,50.0004727,14.0022883,50.000531,14.0022955,50.0007089,14.0023374,50.0009269,14.0023923,50.0010204,14.0024152,50.0010496,14.0024731],[49.9936861,13.9995022,49.9937896,13.9995653,49.9940422,13.999905,49.9942094,14.000153,49.9944791,14.0002118,49.9946315,14.0007048,49.9948454,14.0007968,49.9952276,14.0007296,49.9954892,14.0006517,49.9957031,14.0008074,49.9960421,14.0012109,49.9964675,14.0015542,49.9965185,14.0016124],[50.004321,14.000464,50.0043407,14.0004914,50.0044408,14.0005885,50.0049895,13.9998742],[49.9998747,14.000811,49.9999947,14.0003935,49.9999779,14.0002018],[50.0008709,14.0019979,50.0005325,14.0019492,50.0005463,14.0021633],[50.0007143,14.0024026,50.0007236,14.0025319,50.0007435,14.0026007,50.0007581,14.0026303,50.0007768,14.0026518,50.0008145,14.0026558,50.0008443,14.0026404,50.000866,14.0026077,50.0008804,14.0025538,50.0009016,14.0024388],[49.999646,14.0019445,49.9996092,14.0018512],[49.9996366,14.0018256,49.9996092,14.0018512],[50.0033708,13.9983121,50.003351,13.998304,50.0033321,13.9982963,50.0033004,13.9982833,50.0032832,13.9982763],[50.0000047,14.0012355,50.0000111,14.0012605,50.0000087,14.0012879,49.9999938,14.0013147,49.9999804,14.0013372,49.9999776,14.0013544,49.9999804,14.0013775,49.9999918,14.0013952,49.9999956,14.0014268,49.9999956,14.0015078,50.0000169,14.0015803,50.0000349,14.0016296,50.0000421,14.001672,50.000024,14.0017034],[49.9996899,14.0019693,49.9998183,14.002267,49.9998581,14.0023327,49.9998926,14.0023561,49.9999103,14.00235,49.9999396,14.0023342,50.000009,14.0023062,50.000075,14.0022899,50.0001557,14.0022827,50.000211,14.002278],[50.0002663,14.0022734,50.0002998,14.0022706,50.0003581,14.0022652],[50.000211,14.002278,50.0002663,14.0022734],[49.9999063,14.0026257,49.9997024,14.0028324,49.999682,14.0028408,49.9996568,14.0028446,49.999637,14.0028343,49.9995547,14.0026662]],"pathwayTypes":[5,5,5,5,3,5,5,5,3,6,6,4,0,5,4,5,3,3,3,3,4,0,3,0,6,0,6,6,3,2,6,2,6,6,6,3,3,4,4,0,3,3,5,3,5,4,4,5,5,2,0,1,6,3,5,5,5,3,3,4,5,5,5,0,3,6,3,6,6,3,3,3,0,3,0,6,6,3,3,3,4,4,2,4,5,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,4,4,5,0,0,0,0,0,0,4],"areas":[[50.0010112,13.999894,50.000744,13.9998439,50.0007226,13.9999721,50.000727,14.000076,50.0007538,14.000195,50.0007937,14.0002595,50.0008435,14.0002936,50.0009122,14.000277,50.0009644,14.0002193,50.0009941,14.0001238,50.0010068,14.0000555,50.0010112,13.999894]],"areaTypes":[0],"poIs":[50.00071416666666,14.002033849999998,4,50.00285014,13.99991212,4,50.002869687499995,14.00042415,4,50.0030134625,13.999101749999998,4,49.99883071111112,14.001819111111109,7,49.999322333333325,14.002257572222225,3,50.000235599999996,14.002608216666667,4,50.00073472857143,14.002719957142858,4,50.00099971428572,13.998831671428572,4,50.0031177,13.998514216666669,4,50.0002324,14.0028236,4,50.0026695,14.0029779,0,50.0030234,13.9993778,0,50.0008623,14.0019217,6,50.0003647,14.0028616,7,49.9998941,14.0020782,7,49.9998905,14.0027825,7,50.0024305,14.0030475,7,49.9999946,14.0022033,0,49.9999798,14.0026563,7,49.9998093,14.0010834,6,49.9996681,14.0003986,6,50.00001,14.00266,7,49.99977,14.00246,7,50.0004711,14.0066497,6,50.0004706,14.0066172,6,50.0009308,14.0025683,6,49.9997602,14.0027387,7,50.0030444,13.9982462,7]},"playAreaCenter":{"lat":50,"lon":14},"playAreaRadius":500},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:19:00.0817448Z","actor":"7727729d","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"7727729d","displayName":"Player2","playersReady":1,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:19:00.0852532Z","actor":"3e656288","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"3e656288","displayName":"Player1","playersReady":2,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:19:00.0881894Z","actor":"7cba1fa1","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"7cba1fa1","displayName":"Player3","playersReady":3,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T12:19:00.0958137Z","actor":"452b3607","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"452b3607","displayName":"Player4","playersReady":4,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T12:19:00.0986515Z","actor":"d40cd2a4","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"d40cd2a4","displayName":"Player5","playersReady":5,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T12:19:00.1014023Z","actor":"dea0db05","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"dea0db05","displayName":"Player6","playersReady":6,"totalPlayers":6},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T12:19:00.1072234Z","actor":"3e656288","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T12:19:00.1104661Z","actor":"3e656288","eventType":"RoleAssigned","payload":{"clientUuid":"3e656288","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9997602,"lon":14.0027387},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0009308,"lon":14.0025683},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0030234,"lon":13.9993778},"type":"Progress","durationMs":8172,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T12:19:00.1179988Z","actor":"7727729d","eventType":"RoleAssigned","payload":{"clientUuid":"7727729d","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9997602,"lon":14.0027387},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0009308,"lon":14.0025683},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0030234,"lon":13.9993778},"type":"Progress","durationMs":8172,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T12:19:00.1206944Z","actor":"7cba1fa1","eventType":"RoleAssigned","payload":{"clientUuid":"7cba1fa1","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9997602,"lon":14.0027387},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0009308,"lon":14.0025683},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0030234,"lon":13.9993778},"type":"Progress","durationMs":8172,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T12:19:00.123679Z","actor":"452b3607","eventType":"RoleAssigned","payload":{"clientUuid":"452b3607","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9997602,"lon":14.0027387},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0009308,"lon":14.0025683},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0030234,"lon":13.9993778},"type":"Progress","durationMs":8172,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T12:19:00.1264165Z","actor":"d40cd2a4","eventType":"RoleAssigned","payload":{"clientUuid":"d40cd2a4","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T12:19:00.1290474Z","actor":"dea0db05","eventType":"RoleAssigned","payload":{"clientUuid":"dea0db05","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9997602,"lon":14.0027387},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0009308,"lon":14.0025683},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.0030234,"lon":13.9993778},"type":"Progress","durationMs":8172,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T12:19:02.3491311Z","actor":"3e656288","eventType":"TaskCompleted","payload":{"clientUuid":"3e656288","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T12:19:03.1401252Z","actor":"d40cd2a4","eventType":"SabotageStarted","payload":{"sabotageId":"0c240269","type":"CommsBlackout","initiatorId":"d40cd2a4","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":49.9998747,"lon":14.000811},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T12:19:06.3066604Z","actor":"3e656288","eventType":"RepairStarted","payload":{"sabotageId":"0c240269","stationId":"comms_station","playerId":"3e656288"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T12:19:09.3384583Z","actor":"3e656288","eventType":"SabotageRepaired","payload":{"sabotageId":"0c240269","type":"CommsBlackout","repairerIds":["3e656288"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T12:19:43.4204918Z","actor":"d40cd2a4","eventType":"SabotageStarted","payload":{"sabotageId":"73373685","type":"CriticalMeltdown","initiatorId":"d40cd2a4","deadline":"2026-01-27T12:20:28.4203689Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":49.9996899,"lon":14.0019693},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.000866,"lon":14.0026077},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T12:19:45.0353138Z","actor":"3e656288","eventType":"RepairStarted","payload":{"sabotageId":"73373685","stationId":"reactor_alpha","playerId":"3e656288"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T12:19:45.0384716Z","actor":"7727729d","eventType":"RepairStarted","payload":{"sabotageId":"73373685","stationId":"reactor_beta","playerId":"7727729d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T12:19:48.0529564Z","actor":"3e656288","eventType":"SabotageRepaired","payload":{"sabotageId":"73373685","type":"CriticalMeltdown","repairerIds":["3e656288","7727729d"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T12:19:54.206922Z","actor":"d40cd2a4","eventType":"PlayerKilled","payload":{"victimId":"3e656288","killerId":"d40cd2a4","bodyId":"76f342d5","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T12:19:54.8079619Z","actor":"7727729d","eventType":"BodyReported","payload":{"reporterId":"7727729d","bodyId":"76f342d5","victimId":"3e656288"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T12:19:54.8123593Z","actor":"7727729d","eventType":"MeetingStarted","payload":{"meetingId":"9d9e85f1","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T12:19:58.3118406Z","discussionEndTime":"2026-01-27T12:20:00.8118406Z","votingEndTime":"2026-01-27T12:20:10.8118406Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T12:20:00.82122Z","actor":"7727729d","eventType":"PlayerVoted","payload":{"voterId":"7727729d","targetId":"d40cd2a4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T12:20:00.9434078Z","actor":"7cba1fa1","eventType":"PlayerVoted","payload":{"voterId":"7cba1fa1","targetId":"d40cd2a4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T12:20:01.0680712Z","actor":"452b3607","eventType":"PlayerVoted","payload":{"voterId":"452b3607","targetId":"d40cd2a4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T12:20:01.1919456Z","actor":"d40cd2a4","eventType":"PlayerVoted","payload":{"voterId":"d40cd2a4","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T12:20:01.315892Z","actor":"dea0db05","eventType":"PlayerVoted","payload":{"voterId":"dea0db05","targetId":"d40cd2a4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T12:20:10.8226228Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"d40cd2a4":4,"__SKIP__":1},"ejectedPlayerId":"d40cd2a4","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T12:20:10.8714891Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"d40cd2a4","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T12:20:10.8756515Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["3e656288","7727729d","7cba1fa1","452b3607","dea0db05"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T12:22:53.1803591Z","actor":"3e656288","eventType":"PlayerLeft","payload":{"clientUuid":"3e656288","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T12:22:53.183458Z","actor":"7727729d","eventType":"HostChanged","payload":{"newHostId":"7727729d","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":43,"serverSeq":43,"timestamp":"2026-01-27T12:22:53.186062Z","actor":"7727729d","eventType":"PlayerLeft","payload":{"clientUuid":"7727729d","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":44,"serverSeq":44,"timestamp":"2026-01-27T12:22:53.1884734Z","actor":"7cba1fa1","eventType":"HostChanged","payload":{"newHostId":"7cba1fa1","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":45,"serverSeq":45,"timestamp":"2026-01-27T12:22:53.1909189Z","actor":"7cba1fa1","eventType":"PlayerLeft","payload":{"clientUuid":"7cba1fa1","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":46,"serverSeq":46,"timestamp":"2026-01-27T12:22:53.1941133Z","actor":"452b3607","eventType":"HostChanged","payload":{"newHostId":"452b3607","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":47,"serverSeq":47,"timestamp":"2026-01-27T12:22:53.1965267Z","actor":"452b3607","eventType":"PlayerLeft","payload":{"clientUuid":"452b3607","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":48,"serverSeq":48,"timestamp":"2026-01-27T12:22:53.1989405Z","actor":"d40cd2a4","eventType":"HostChanged","payload":{"newHostId":"d40cd2a4","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":49,"serverSeq":49,"timestamp":"2026-01-27T12:22:53.2013655Z","actor":"d40cd2a4","eventType":"PlayerLeft","payload":{"clientUuid":"d40cd2a4","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":50,"serverSeq":50,"timestamp":"2026-01-27T12:22:53.2084153Z","actor":"dea0db05","eventType":"HostChanged","payload":{"newHostId":"dea0db05","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":51,"serverSeq":51,"timestamp":"2026-01-27T12:22:53.2106109Z","actor":"dea0db05","eventType":"PlayerLeft","payload":{"clientUuid":"dea0db05","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/c20295d1ca0241b3/snapshot_39.json b/data/lobbies/c20295d1ca0241b3/snapshot_39.json new file mode 100644 index 0000000..a923493 --- /dev/null +++ b/data/lobbies/c20295d1ca0241b3/snapshot_39.json @@ -0,0 +1,212 @@ +{ + "lobbyId": "c20295d1ca0241b3", + "lastEventId": 39, + "timestamp": "2026-01-27T18:46:44.0153464Z", + "checksum": "c869a0099601f13a5f3e7ef86940bb965849277cd84a2f7f3e88ecbdcb03f320", + "phase": "Lobby", + "players": [ + { + "clientUuid": "e8888b3e", + "displayName": "Hr\u00E1\u010D229", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:41:34.084531Z", + "lastPositionUpdate": "2026-01-27T18:45:44.9225573Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "7614bb77", + "displayName": "Hr\u00E1\u010D423", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:41:47.9066426Z", + "lastPositionUpdate": "2026-01-27T18:45:44.9999768Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "a482eaf8", + "displayName": "Hr\u00E1\u010D755", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:41:49.9957639Z", + "lastPositionUpdate": "2026-01-27T18:45:45.0762014Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "b0172c9f", + "displayName": "Hr\u00E1\u010D382", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:46:12.1783916Z", + "lastPositionUpdate": "2026-01-27T18:46:12.1783917Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [] + }, + { + "clientUuid": "0d634cf6", + "displayName": "Hr\u00E1\u010D27", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T18:46:43.9875318Z", + "lastPositionUpdate": "2026-01-27T18:46:43.987532Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [] + } + ], + "bodies": [], + "tasks": [], + "currentMeeting": null, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 248, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/c20295d1ca0241b3/wal_20260127184134.ndjson b/data/lobbies/c20295d1ca0241b3/wal_20260127184134.ndjson new file mode 100644 index 0000000..aec41f6 --- /dev/null +++ b/data/lobbies/c20295d1ca0241b3/wal_20260127184134.ndjson @@ -0,0 +1,69 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T18:41:34.0938422Z","actor":"e8888b3e","eventType":"PlayerJoined","payload":{"clientUuid":"e8888b3e","displayName":"Hr\u00E1\u010D229"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T18:41:47.9107046Z","actor":"7614bb77","eventType":"PlayerJoined","payload":{"clientUuid":"7614bb77","displayName":"Hr\u00E1\u010D423"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T18:41:49.9995825Z","actor":"a482eaf8","eventType":"PlayerJoined","payload":{"clientUuid":"a482eaf8","displayName":"Hr\u00E1\u010D755"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T18:41:54.3079461Z","actor":"e8888b3e","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T18:41:59.1256126Z","actor":"e8888b3e","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":248,"buildings":[[50.7745461,15.068435,50.7745442,15.0684319,50.7745427,15.0684282,50.7745418,15.0684242,50.7745414,15.0684199,50.7745416,15.0684156,50.7745424,15.0684115,50.7745436,15.0684076,50.7745325,15.0684021,50.7745114,15.0683361,50.7745265,15.0682651,50.7745687,15.0682323,50.7745794,15.0682386,50.7745799,15.0682342,50.7745809,15.06823,50.7745825,15.0682262,50.7745845,15.068223,50.7745868,15.0682205,50.7745894,15.0682187,50.7745922,15.0682178,50.7745902,15.0682115,50.7747555,15.0680808,50.7747568,15.0680849,50.7747999,15.0680509,50.7748009,15.068054,50.7748521,15.0680136,50.7748892,15.0681308,50.7748793,15.0681387,50.7749449,15.0683455,50.774878,15.0683975,50.7748685,15.0683671,50.7747463,15.0684635,50.7749105,15.0689829,50.7748218,15.0690522,50.7748401,15.06911,50.7748162,15.0691292,50.7748175,15.0691336,50.7748119,15.069138,50.7748105,15.0691336,50.7747865,15.0691526,50.7747888,15.0691596,50.774743,15.0691962,50.7747199,15.0691237,50.7747243,15.0691202,50.7747121,15.069082,50.7747093,15.0690841,50.7747062,15.0690744,50.774709,15.0690722,50.774697,15.0690349,50.7746942,15.0690371,50.774691,15.0690269,50.7746938,15.0690248,50.7746815,15.0689863,50.7746787,15.0689885,50.7746752,15.0689775,50.774678,15.0689753,50.7746594,15.0689171,50.7746476,15.0689265,50.7746447,15.0689406,50.7746371,15.0689371,50.7746403,15.0689213,50.7746221,15.0688631,50.7746152,15.0688687,50.7746114,15.0688568,50.7746184,15.0688513,50.7746011,15.0687979,50.7745942,15.0688035,50.7745905,15.0687918,50.7745975,15.0687862,50.7745802,15.0687324,50.7745732,15.068738,50.7745695,15.0687266,50.7745766,15.068721,50.7745579,15.0686635,50.7745476,15.068658,50.7745502,15.0686462,50.7745591,15.0686512,50.7745712,15.0686416,50.7745565,15.068596,50.7745853,15.068573,50.7745419,15.0684384,50.7745461,15.068435],[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7737609,15.0756722,50.7733592,15.0758264,50.7733283,15.0756269,50.7734115,15.075595,50.7737306,15.0754725,50.7737609,15.0756722],[50.7728164,15.0743732,50.7728485,15.0745747,50.7725941,15.0746753,50.7725605,15.0746887,50.77243,15.0747403,50.7723979,15.074539,50.7728164,15.0743732],[50.7725313,15.0749147,50.7726529,15.0756781,50.7727128,15.0756542,50.772748,15.0756402,50.7730037,15.0755384,50.7728821,15.0747749,50.7726287,15.0748818,50.7725942,15.0748893,50.7725313,15.0749147],[50.7730564,15.0742132,50.7730091,15.0742672,50.7729888,15.0743735,50.7729855,15.0744805,50.7730088,15.0745931,50.773075,15.0746995,50.7731352,15.0747229,50.7730564,15.0742132],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.7725942,15.0748893,50.7725605,15.0746887,50.7725941,15.0746753,50.7726287,15.0748818,50.7725942,15.0748893],[50.7730091,15.0742672,50.7729836,15.0743201,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7731352,15.0747229,50.773075,15.0746995,50.7730088,15.0745931,50.7729855,15.0744805,50.7729888,15.0743735,50.7730091,15.0742672],[50.7755317,15.0731221,50.7755497,15.0731082,50.7755709,15.0731759,50.7755529,15.0731898,50.7755682,15.0732392,50.7754771,15.07331,50.7754254,15.0731437,50.775516,15.0730717,50.7755317,15.0731221],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7723782,15.0704051,50.7724179,15.0703895,50.7724196,15.0703994,50.7724249,15.0703973,50.7724371,15.0704083,50.7724617,15.0705635,50.7724001,15.0705882,50.7723991,15.0705819,50.7723733,15.0705922,50.7723705,15.0705752,50.772345,15.0705852,50.7723394,15.0705505,50.7722933,15.0705688,50.772276,15.0704604,50.7722947,15.0704531,50.7722899,15.070425,50.7723176,15.0704137,50.7723156,15.0704012,50.7723743,15.0703783,50.7723782,15.0704051],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7718969,15.070342,50.7717392,15.0704035,50.771738,15.0703959,50.7717168,15.0703753,50.7717125,15.0703768,50.7717008,15.0703037,50.7717466,15.0702859,50.7717422,15.070258,50.7717129,15.0702695,50.7717107,15.0702632,50.7717123,15.070262,50.7716835,15.0701797,50.7716816,15.0701804,50.7716801,15.0701694,50.7716857,15.0701674,50.7716867,15.0701745,50.7717862,15.0700924,50.7718536,15.0700661,50.7718969,15.070342],[50.7720818,15.0698367,50.772105,15.0699079,50.772122,15.0698938,50.772152,15.0699865,50.7721535,15.0699909,50.7721365,15.0700047,50.772137,15.0700063,50.7720541,15.0700728,50.7720501,15.0700601,50.772013,15.0700895,50.7719676,15.0699485,50.7719655,15.06995,50.7719594,15.0699311,50.7719689,15.0699235,50.7719698,15.0699266,50.772043,15.0698679,50.772048,15.0698457,50.7720609,15.0698353,50.7720728,15.0698439,50.7720818,15.0698367],[50.7723238,15.0696814,50.7723396,15.0696894,50.772346,15.0697092,50.7723402,15.0697316,50.7723347,15.069736,50.7723767,15.0698618,50.7723655,15.069871,50.7723664,15.0698737,50.772361,15.0698996,50.7723311,15.0699239,50.7723126,15.0699145,50.7723091,15.0699037,50.7722507,15.0699512,50.7722036,15.0698068,50.7722091,15.0698024,50.7721972,15.0697668,50.7722286,15.0697414,50.7722269,15.0697363,50.7722739,15.0696982,50.77228,15.069717,50.7723238,15.0696814],[50.7726999,15.0698343,50.772729,15.0698615,50.7727152,15.0698967,50.7727324,15.0700044,50.7727307,15.0700051,50.7727353,15.0700342,50.7726769,15.0700574,50.7726809,15.0700825,50.772646,15.0700963,50.7726447,15.0700879,50.7726056,15.0701034,50.7726003,15.0700707,50.7725917,15.0700742,50.7725816,15.0700099,50.7725771,15.0700118,50.7725627,15.0699211,50.7725734,15.0699165,50.7725698,15.0698931,50.7726598,15.0698571,50.7726603,15.0698612,50.772695,15.0698471,50.7726999,15.0698343],[50.773142,15.069712,50.773132,15.069731,50.773141,15.069786,50.773051,15.069821,50.773027,15.069671,50.773074,15.069656,50.773066,15.069626,50.773114,15.069608,50.773125,15.069682,50.77314,15.069691,50.773142,15.069712],[50.7727178,15.0695693,50.7726282,15.0696411,50.7726029,15.0695624,50.7726109,15.069556,50.7725855,15.0694771,50.7726289,15.0694425,50.7726328,15.069455,50.7726712,15.0694243,50.7727178,15.0695693],[50.7730417,15.0690918,50.7730463,15.0691046,50.7730429,15.0691219,50.7730551,15.0691603,50.7730628,15.0691543,50.773084,15.0692213,50.7730762,15.069227,50.7730986,15.0693044,50.773047,15.0693451,50.7730505,15.069356,50.7730453,15.0693602,50.7730537,15.0693865,50.7730341,15.0694018,50.7730259,15.0693757,50.7730211,15.0693794,50.7730176,15.0693684,50.7729658,15.0694094,50.7729325,15.0693072,50.7729279,15.069311,50.7729036,15.0692366,50.7729082,15.0692328,50.7728972,15.069199,50.7729328,15.0691702,50.7729299,15.0691614,50.7729809,15.06912,50.7729837,15.0691289,50.7730122,15.0691058,50.7730157,15.0690888,50.773024,15.069082,50.7730247,15.069079,50.7730424,15.0690888,50.7730417,15.0690918],[50.7716696,15.0716616,50.7716897,15.0717914,50.771695,15.0717895,50.7717047,15.0718521,50.7716994,15.0718541,50.77172,15.0719862,50.7716258,15.0720225,50.7716232,15.0720236,50.7715726,15.071699,50.7715753,15.071698,50.7716696,15.0716616],[50.77188,15.0705055,50.7719168,15.0707362,50.771912,15.070738,50.7719144,15.0707531,50.7718739,15.0707692,50.7718715,15.0707541,50.7717996,15.0707827,50.7718002,15.0707866,50.7717919,15.0707898,50.7717846,15.0707436,50.771787,15.0707426,50.7717741,15.0706612,50.7717619,15.070666,50.7717533,15.0706117,50.7717636,15.0706076,50.7717609,15.0705907,50.7717972,15.0705759,50.7717916,15.0705415,50.77188,15.0705055],[50.7716314,15.0714165,50.7716475,15.0715199,50.7716527,15.0715178,50.7716625,15.0715804,50.7716572,15.0715825,50.7716696,15.0716616,50.7715753,15.071698,50.7715372,15.0714534,50.7716314,15.0714165],[50.7715727,15.0711217,50.7715782,15.0711196,50.7715878,15.071183,50.7715824,15.0711849,50.7716025,15.0713169,50.7715079,15.071353,50.7714576,15.0710256,50.7715525,15.0709895,50.7715727,15.0711217],[50.77172,15.0719862,50.771732,15.0720637,50.7717372,15.0720616,50.7717469,15.0721238,50.7717416,15.0721259,50.7717577,15.0722293,50.7716638,15.0722668,50.7716258,15.0720225,50.77172,15.0719862],[50.7717616,15.0723435,50.77178,15.072462,50.7717849,15.0724602,50.7717946,15.0725231,50.7717899,15.0725249,50.7718084,15.0726443,50.7717139,15.0726808,50.7716669,15.0723802,50.7717616,15.0723435],[50.7715212,15.0729113,50.7715246,15.07291,50.7715314,15.0729541,50.7715281,15.0729555,50.7715397,15.0730301,50.7715026,15.0730444,50.7715058,15.0730649,50.7714458,15.0730881,50.7714119,15.0728744,50.7715097,15.0728371,50.7715212,15.0729113],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.7720045,15.0709227,50.772005,15.0709172,50.7720062,15.0709119,50.772008,15.0709071,50.7720104,15.070903,50.7720133,15.0708997,50.7720165,15.0708973,50.77202,15.0708961,50.7720235,15.0708959,50.772027,15.0708969,50.7720391,15.0709096,50.7720867,15.0708928,50.7720994,15.0709764,50.7721537,15.0709559,50.7721671,15.0710455,50.7719941,15.0711106,50.7719814,15.0711234,50.7719683,15.0711194,50.7719597,15.0710846,50.7719494,15.0710158,50.7719544,15.0710139,50.7719442,15.0709464,50.7720045,15.0709227],[50.7721196,15.0713084,50.7721221,15.0713249,50.7721299,15.0713219,50.7721291,15.0713171,50.7721603,15.0713049,50.772182,15.0714453,50.7720991,15.0714775,50.772103,15.0715023,50.7720736,15.0715137,50.7720696,15.0714889,50.7720121,15.0715115,50.7719909,15.071376,50.7721064,15.071331,50.7721039,15.0713145,50.7721196,15.0713084],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7751637,15.0704631,50.7751873,15.0704442,50.7752075,15.0705078,50.7751834,15.0705268,50.7752149,15.0706272,50.7751841,15.0706516,50.7751864,15.0706585,50.7751582,15.0706809,50.7751444,15.0706376,50.7751096,15.0706651,50.7750901,15.0706039,50.7750846,15.0706083,50.7750809,15.0705965,50.7750661,15.0706082,50.7750462,15.0705455,50.775061,15.0705338,50.7750569,15.0705212,50.7750624,15.0705168,50.775043,15.0704557,50.7750718,15.0704331,50.7750711,15.070431,50.7751024,15.0704062,50.7751031,15.0704085,50.7751379,15.0703814,50.7751637,15.0704631],[50.7737764,15.0696257,50.7737483,15.0695369,50.7737403,15.0695433,50.7737122,15.0694542,50.7737043,15.0694607,50.7736754,15.0693688,50.7736791,15.0693655,50.7736681,15.0693307,50.7737285,15.0693317,50.7737608,15.0693064,50.7737573,15.0692958,50.7738589,15.0692155,50.7738904,15.0693154,50.7738824,15.0693216,50.7739105,15.0694104,50.7739025,15.0694166,50.7739306,15.0695055,50.7739226,15.0695117,50.7739502,15.0695993,50.7738119,15.0697078,50.7737843,15.0696195,50.7737764,15.0696257],[50.7735638,15.0690008,50.7737809,15.0688307,50.7738792,15.0691536,50.7738473,15.0691787,50.7738589,15.0692155,50.7737573,15.0692958,50.7737608,15.0693064,50.7737285,15.0693317,50.7736675,15.0693285,50.7735638,15.0690008],[50.7740925,15.0690877,50.7740919,15.0690789,50.7740925,15.0690611,50.7740955,15.069044,50.7741009,15.0690283,50.7741043,15.0690213,50.7741083,15.0690149,50.7741099,15.0690161,50.7741376,15.0689945,50.7741376,15.0689916,50.7741405,15.0689882,50.7741438,15.0689856,50.7741473,15.0689841,50.7741509,15.0689836,50.7741546,15.0689842,50.774158,15.0689858,50.7741613,15.0689885,50.7741642,15.068992,50.7741666,15.0689963,50.7741662,15.0689991,50.7741822,15.0690097,50.7741853,15.069015,50.77419,15.069025,50.7741989,15.0690304,50.7742022,15.0690137,50.7742129,15.0690051,50.7742247,15.0690108,50.7742299,15.0690282,50.774226,15.0690463,50.7742234,15.0690483,50.7742388,15.0690966,50.7742455,15.0690912,50.7742471,15.069096,50.77425,15.0690937,50.7742794,15.0691858,50.7742765,15.0691881,50.7742778,15.0691927,50.7742711,15.0691981,50.7742945,15.0692721,50.7742469,15.0693098,50.774253,15.0693291,50.7742123,15.0693608,50.7742064,15.0693419,50.7741579,15.0693803,50.7741342,15.0693074,50.7741317,15.0693093,50.7740993,15.0692097,50.7741017,15.0692078,50.7740769,15.0691302,50.7740993,15.069112,50.7740943,15.0690882,50.7740925,15.0690877],[50.774568,15.0701178,50.7745736,15.0701133,50.7746048,15.0702115,50.7745992,15.0702159,50.7746189,15.0702782,50.7745738,15.070314,50.7745779,15.0703267,50.7745727,15.0703308,50.7745751,15.0703383,50.7745525,15.0703562,50.7745502,15.0703486,50.7745449,15.0703528,50.7745409,15.0703401,50.7744982,15.0703739,50.7744976,15.0703719,50.7744686,15.0703949,50.7744433,15.0703172,50.7744772,15.07029,50.7744786,15.0702948,50.7744946,15.0702822,50.7744707,15.0702074,50.7744388,15.0702327,50.7744158,15.0701606,50.7745481,15.070055,50.774568,15.0701178],[50.774455,15.0696524,50.7744653,15.0696852,50.7744434,15.0697027,50.7744451,15.0697083,50.7744415,15.0697112,50.7744645,15.0697834,50.7744193,15.0698193,50.7744298,15.0698521,50.7744243,15.0698565,50.7744257,15.0698609,50.7743991,15.0698822,50.7743977,15.0698778,50.7743919,15.0698824,50.7743814,15.0698496,50.7743365,15.0698853,50.7742538,15.0696254,50.7742964,15.0695919,50.7742911,15.0695754,50.774334,15.0695415,50.7743393,15.0695579,50.774382,15.0695239,50.774405,15.0695964,50.7744086,15.0695935,50.7744103,15.0695992,50.7744323,15.0695819,50.7744425,15.0696138,50.774445,15.0696122,50.7744477,15.0696115,50.7744504,15.0696116,50.774453,15.0696125,50.7744555,15.0696142,50.7744577,15.0696166,50.7744596,15.0696196,50.7744611,15.0696232,50.7744621,15.0696271,50.7744625,15.0696313,50.7744625,15.0696356,50.7744619,15.0696397,50.7744609,15.0696437,50.7744593,15.0696473,50.7744573,15.0696502,50.774455,15.0696524],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7756,15.070556,50.775557,15.070589,50.77557,15.070632,50.775611,15.070598,50.7756,15.070556],[50.7755144,15.0714779,50.7755518,15.0715956,50.7755475,15.0715991,50.7755594,15.0716365,50.7755236,15.0716648,50.7755177,15.0716466,50.7754841,15.0716731,50.7754795,15.0716583,50.7754351,15.0716934,50.7754128,15.0716233,50.77541,15.0716256,50.7754073,15.071617,50.7753938,15.0716276,50.7753769,15.0715747,50.7753905,15.0715639,50.7753877,15.0715551,50.7753905,15.0715529,50.7753684,15.0714836,50.7754103,15.0714505,50.7754072,15.0714409,50.775441,15.0714141,50.7754441,15.0714238,50.7754838,15.0713932,50.7755115,15.0714802,50.7755144,15.0714779],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.775303,15.0708614,50.7753184,15.0709103,50.7753202,15.070909,50.7753624,15.0710422,50.7753529,15.0710495,50.7753654,15.0710889,50.7753131,15.0711301,50.7753107,15.0711226,50.7752656,15.071158,50.7752449,15.0710924,50.7752362,15.071099,50.7752326,15.0710873,50.7752269,15.0710917,50.775217,15.0710861,50.7752073,15.0710557,50.7752106,15.0710399,50.7752162,15.0710354,50.7752124,15.0710236,50.775221,15.071017,50.7752003,15.0709515,50.7752454,15.070916,50.7752431,15.0709085,50.775303,15.0708614],[50.7752185,15.0721634,50.7752173,15.0721699,50.7752377,15.0722341,50.7752458,15.0722278,50.7752745,15.0723183,50.7752722,15.0723202,50.7752824,15.0723534,50.7752432,15.0723848,50.775244,15.0723872,50.775166,15.0724485,50.7751263,15.0723232,50.7751352,15.0723161,50.7751014,15.0722114,50.7751542,15.0721689,50.7751574,15.0721791,50.7751886,15.0721541,50.7751895,15.0721481,50.7752005,15.0721393,50.775213,15.0721462,50.7752185,15.0721634],[50.7753236,15.072471,50.7753318,15.0724972,50.7753303,15.0724983,50.775344,15.0725419,50.7753489,15.072538,50.7753534,15.0725525,50.7753715,15.0725383,50.7753897,15.0725948,50.7753714,15.0726089,50.7753762,15.0726237,50.7753711,15.0726277,50.7753867,15.0726751,50.7752966,15.0727459,50.7752578,15.0726231,50.7752331,15.0725457,50.7752581,15.0725259,50.7752549,15.0725159,50.7753138,15.0724655,50.7753236,15.072471],[50.7754147,15.0727618,50.7754356,15.0728252,50.7754517,15.0728119,50.775474,15.0728795,50.7754576,15.0728929,50.7754817,15.0729652,50.7753703,15.0730554,50.7753603,15.073049,50.7753585,15.0730433,50.7753281,15.0730694,50.7753066,15.0730632,50.7752957,15.0730318,50.7753049,15.0730012,50.7752933,15.0729659,50.7753299,15.072936,50.7753148,15.0728901,50.7752913,15.0729095,50.7752681,15.0728393,50.7754049,15.0727269,50.7754161,15.0727608,50.7754147,15.0727618],[50.7758491,15.0725117,50.7759179,15.0727317,50.7758831,15.0727588,50.7758874,15.0727725,50.7758528,15.0727995,50.7758488,15.0727867,50.7758012,15.0728239,50.7758001,15.0728205,50.7757819,15.0728346,50.7757632,15.0727737,50.7757821,15.0727588,50.7757446,15.0726397,50.7757373,15.0726453,50.7757152,15.0725743,50.775768,15.0725333,50.7757642,15.0725208,50.7758156,15.0724807,50.7758299,15.0725266,50.7758491,15.0725117],[50.7757385,15.07206,50.7757616,15.0721328,50.7757632,15.0721316,50.7757897,15.0722151,50.7757422,15.0722534,50.7757469,15.0722678,50.7757104,15.0722973,50.7757057,15.0722826,50.7756555,15.072323,50.7756326,15.0722507,50.7756025,15.0722726,50.775573,15.0721801,50.7756022,15.0721554,50.7755793,15.0720833,50.7756277,15.0720443,50.7756266,15.0720408,50.7756313,15.0720192,50.7756559,15.0719993,50.7756699,15.072006,50.775671,15.0720094,50.7757135,15.0719752,50.7757401,15.0720588,50.7757385,15.07206],[50.7716205,15.0735307,50.7716231,15.0735323,50.7716243,15.0735362,50.7716245,15.0735549,50.7716256,15.073555,50.7716295,15.0735572,50.7716312,15.0735631,50.7716337,15.0737085,50.7716322,15.0737147,50.7716284,15.0737173,50.7715513,15.0737205,50.7715475,15.0737183,50.7715458,15.0737124,50.7715451,15.0736726,50.7715356,15.0736731,50.7715318,15.0736708,50.7715302,15.0736648,50.7715293,15.073616,50.7715307,15.0736098,50.7715345,15.0736072,50.771544,15.0736067,50.7715433,15.073567,50.7715448,15.0735608,50.7715486,15.0735582,50.7715771,15.0735569,50.7715766,15.0735326,50.7716205,15.0735307],[50.7717049,15.0740075,50.7717387,15.0742209,50.7716368,15.0742603,50.7716231,15.0741713,50.7716164,15.0741655,50.7716134,15.0741461,50.7716174,15.0741355,50.7716038,15.0740466,50.7717049,15.0740075],[50.7747953,15.0734128,50.7749794,15.0734047,50.7749886,15.0739546,50.7748051,15.0739635,50.774805,15.0739561,50.7747954,15.0734185,50.7747953,15.0734128],[50.7756061,15.0736962,50.775624,15.0736888,50.7756265,15.0737042,50.7756439,15.0737121,50.7756486,15.0737412,50.7756359,15.0737616,50.7756382,15.0737763,50.7755857,15.0737997,50.7755912,15.07383,50.7755649,15.0738409,50.7755676,15.0738569,50.7755396,15.0738682,50.775537,15.0738526,50.775514,15.0738621,50.7755186,15.0738892,50.7754923,15.0738998,50.775475,15.073798,50.7754816,15.0737954,50.7754741,15.07375,50.7754838,15.0737452,50.7754647,15.0736345,50.7755874,15.0735825,50.7756061,15.0736962],[50.7750127,15.0741195,50.7750892,15.0741161,50.7750896,15.0741643,50.7751156,15.0741644,50.7751158,15.0742121,50.7751348,15.0742119,50.7751352,15.074264,50.775116,15.0742642,50.7751162,15.074331,50.7750807,15.0743318,50.7750811,15.0743552,50.7749926,15.0743583,50.7749916,15.0741455,50.7750131,15.0741446,50.7750127,15.0741195],[50.7754584,15.0741179,50.7754585,15.0741884,50.7754788,15.0741883,50.775479,15.0742421,50.7754587,15.0742422,50.7754589,15.0743284,50.7754073,15.0743283,50.7753995,15.0743413,50.7753807,15.0743414,50.7753727,15.0743284,50.7753207,15.0743291,50.7753205,15.0742767,50.7753227,15.0742767,50.7753222,15.0741179,50.7754584,15.0741179],[50.7724145,15.0739846,50.7723917,15.0739931,50.7723939,15.0740069,50.7723162,15.0740362,50.7723103,15.0739967,50.7723059,15.0739983,50.772305,15.0739927,50.7723012,15.0739934,50.7722973,15.0739931,50.7722936,15.0739918,50.7722901,15.0739895,50.7722868,15.0739863,50.772284,15.0739822,50.7722816,15.0739775,50.7722798,15.0739721,50.7722786,15.0739664,50.7722781,15.0739604,50.7722782,15.0739544,50.7722789,15.0739485,50.7722803,15.0739428,50.7722823,15.0739377,50.7722848,15.0739331,50.7722877,15.0739293,50.7722911,15.0739263,50.7722947,15.0739243,50.7722937,15.0739182,50.7723984,15.0738786,50.7724145,15.0739846],[50.7714366,15.0722058,50.7714318,15.0721574,50.7714912,15.0721426,50.771496,15.0721916,50.7714366,15.0722058],[50.7716475,15.0731502,50.7716417,15.0731036,50.7716995,15.073085,50.7717056,15.0731318,50.7716475,15.0731502],[50.771427,15.0721105,50.7714223,15.072063,50.7714819,15.072048,50.7714867,15.0720956,50.771427,15.0721105],[50.771991,15.073823,50.771874,15.073869,50.771865,15.073804,50.771851,15.073795,50.771846,15.073764,50.771855,15.073748,50.771845,15.073684,50.771961,15.073639,50.771991,15.073823],[50.7718387,15.072858,50.7718477,15.0729148,50.7718628,15.0729094,50.7718816,15.0730345,50.7718661,15.0730402,50.7718669,15.0730458,50.771816,15.0730647,50.7718181,15.073078,50.7717915,15.073088,50.7717899,15.073077,50.7717665,15.0730857,50.7717519,15.0729862,50.7717292,15.072994,50.7717152,15.0728992,50.7717449,15.0728885,50.7717455,15.0728925,50.7717936,15.0728747,50.7717936,15.0728685,50.7717943,15.0728623,50.7717956,15.0728565,50.7717977,15.0728511,50.7718003,15.0728464,50.7718033,15.0728426,50.7718068,15.0728396,50.7718106,15.0728377,50.7718145,15.0728368,50.7718184,15.072837,50.7718223,15.0728383,50.7718259,15.0728407,50.7718293,15.0728441,50.7718321,15.0728483,50.7718345,15.0728533,50.7718362,15.0728589,50.7718387,15.072858],[50.771653,15.0731932,50.7717099,15.073176,50.7717102,15.0731779,50.7717114,15.0731775,50.7717056,15.0731318,50.7716475,15.0731502,50.771653,15.0731932],[50.7714318,15.0721574,50.771427,15.0721105,50.7714867,15.0720956,50.7714912,15.0721426,50.7714318,15.0721574],[50.7714223,15.072063,50.7714175,15.0720145,50.7714771,15.0719998,50.7714819,15.072048,50.7714223,15.072063],[50.77456,15.0753452,50.7745574,15.075182,50.774801,15.075172,50.7748045,15.0753354,50.77456,15.0753452],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7751209,15.0744752,50.7751478,15.0744737,50.7751503,15.0745609,50.7751226,15.0745621,50.7751209,15.0744752],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7723625,15.0735165,50.7723669,15.073546,50.772422,15.0735251,50.7724486,15.0736994,50.772353,15.0737357,50.7723564,15.0737577,50.7723084,15.0737759,50.772305,15.0737538,50.7722439,15.0737771,50.7722173,15.073603,50.7723198,15.073564,50.7723153,15.0735343,50.7723625,15.0735165],[50.7720487,15.0718492,50.7720888,15.0718336,50.772094,15.0718652,50.7721081,15.0718597,50.7721123,15.0718876,50.7721144,15.0718868,50.7721282,15.0719749,50.7720491,15.0720053,50.7720577,15.0720612,50.7719949,15.0720857,50.7719839,15.0720149,50.7719743,15.0720185,50.7719635,15.0719491,50.7719731,15.0719452,50.7719647,15.071882,50.7720011,15.0718676,50.7719989,15.0718523,50.7720465,15.0718342,50.7720487,15.0718492],[50.772063,15.074283,50.771966,15.074318,50.771936,15.074119,50.772033,15.074081,50.772063,15.074283],[50.772139,15.074775,50.772041,15.074813,50.771993,15.074494,50.77209,15.074456,50.772139,15.074775],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7719259,15.0733898,50.7719361,15.0734576,50.7719335,15.0734586,50.7719372,15.0734834,50.7719073,15.0734946,50.7719036,15.0734698,50.7718392,15.073494,50.7718229,15.0733859,50.771799,15.0733947,50.7717888,15.0733272,50.7718127,15.0733182,50.771811,15.0733065,50.7718212,15.0733028,50.7718273,15.0732874,50.7718486,15.0732793,50.7718585,15.0732887,50.7719079,15.0732703,50.771918,15.0733378,50.7719208,15.0733367,50.7719287,15.0733887,50.7719259,15.0733898],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7751757,15.069743,50.7751839,15.0697366,50.7751654,15.0696776,50.7752004,15.0696503,50.7751982,15.0696435,50.7752493,15.0696041,50.7752513,15.0696105,50.7752848,15.0695843,50.7753064,15.0696531,50.7753108,15.0696496,50.7753404,15.0697437,50.775303,15.0697728,50.7753063,15.0697832,50.7752112,15.0698558,50.7751757,15.069743],[50.7749457,15.0698497,50.7749612,15.0698372,50.7749808,15.0698217,50.7750269,15.0699657,50.7750048,15.0699833,50.7750345,15.0700761,50.7749444,15.0701478,50.7749133,15.0700514,50.7749097,15.0700544,50.7748863,15.0699812,50.7748899,15.0699783,50.7748765,15.0699369,50.7748647,15.069931,50.7748729,15.0698913,50.7748852,15.0698978,50.7748909,15.0698934,50.7748799,15.0698582,50.7749345,15.0698148,50.7749357,15.0698185,50.7749457,15.0698497],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7750917,15.0740684,50.7750446,15.0740687,50.7750446,15.0740646,50.7750446,15.0740255,50.7750914,15.0740253,50.7750916,15.0740637,50.7750917,15.0740684],[50.7752282,15.0698968,50.7752685,15.0698625,50.7752711,15.0698604,50.7752867,15.0699091,50.7752413,15.0699506,50.775225,15.0698993,50.7752282,15.0698968],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7722268,15.0702958,50.7721707,15.070313,50.772161,15.0702337,50.7722152,15.0702171,50.7722268,15.0702958],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7728652,15.0699861,50.7728732,15.0700323,50.7728193,15.0700556,50.7728103,15.0700095,50.7728652,15.0699861],[50.771992,15.070692,50.7720069,15.0707766,50.7719748,15.0707914,50.7719598,15.070706,50.771992,15.070692],[50.7758015,15.0722067,50.7758574,15.0721629,50.7758802,15.0722351,50.7758243,15.0722789,50.7758015,15.0722067],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7730944,15.0699634,50.7731272,15.0699618,50.7731289,15.0700443,50.7730725,15.0700473,50.773071,15.0699726,50.7730944,15.0699634],[50.7724605,15.0706468,50.7724735,15.0707292,50.7724148,15.070752,50.7724154,15.0707563,50.7724114,15.0707578,50.7723978,15.0706712,50.7724605,15.0706468],[50.7721698,15.0699582,50.7721542,15.0699706,50.7721581,15.0699811,50.772152,15.0699865,50.772122,15.0698938,50.7721531,15.0698664,50.7721612,15.0699006,50.7721698,15.0699582],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7728585,15.0746374,50.7727988,15.0746605,50.7727919,15.0746157,50.7728514,15.0745931,50.7728585,15.0746374],[50.7752578,15.0726231,50.7752262,15.0726483,50.7752015,15.0725718,50.7752331,15.0725457,50.7752578,15.0726231],[50.7737,15.0752819,50.7736634,15.0752963,50.773663,15.0752941,50.7736442,15.0753015,50.7736416,15.0752843,50.7735996,15.0753043,50.7735987,15.0753075,50.7735985,15.075311,50.7736003,15.0753246,50.7736,15.0753277,50.7735992,15.0753306,50.773598,15.0753331,50.7735963,15.0753349,50.7735945,15.075336,50.7734819,15.0753758,50.7734802,15.0753737,50.7734789,15.075371,50.7734781,15.0753679,50.7734771,15.0753608,50.7734764,15.075358,50.7734752,15.0753555,50.7734737,15.0753535,50.7734719,15.0753522,50.77347,15.0753517,50.773468,15.075352,50.7734319,15.0753659,50.7734345,15.0753831,50.7734157,15.0753903,50.7734161,15.0753928,50.7733818,15.0754061,50.7733791,15.0753883,50.7732956,15.0754181,50.7731776,15.074665,50.7732038,15.0746549,50.7731964,15.0746074,50.7731802,15.0746137,50.7731624,15.0744996,50.7731784,15.0744933,50.7731707,15.0744438,50.773228,15.0744221,50.7732604,15.0746333,50.7735766,15.0745127,50.7737,15.0752819],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7723274,15.0741104,50.7723162,15.0740362,50.7723939,15.0740069,50.7723948,15.0740127,50.7723877,15.0740153,50.7723914,15.0740399,50.7724625,15.0740131,50.7724722,15.0740768,50.7724569,15.0740826,50.7724654,15.0741383,50.7724262,15.074153,50.7724281,15.0741682,50.7724275,15.0741708,50.7724263,15.0741728,50.7724247,15.074174,50.7723821,15.074188,50.7723808,15.0741861,50.7723801,15.0741835,50.7723782,15.0741712,50.7723345,15.0741875,50.772334,15.074184,50.7723302,15.0741847,50.7723264,15.0741844,50.7723226,15.074183,50.7723191,15.0741807,50.7723158,15.0741774,50.772313,15.0741733,50.7723106,15.0741686,50.7723088,15.0741632,50.7723076,15.0741575,50.7723071,15.0741515,50.7723072,15.0741455,50.7723079,15.0741395,50.7723093,15.0741339,50.7723112,15.0741287,50.7723137,15.0741241,50.7723166,15.0741202,50.77232,15.0741172,50.7723236,15.0741151,50.7723231,15.074112,50.7723274,15.0741104],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849],[50.7717099,15.073176,50.7717102,15.0731779,50.7717251,15.0732757,50.7716644,15.0732981,50.7716494,15.0731989,50.7716524,15.0731977,50.7716518,15.0731936,50.771653,15.0731932,50.7717099,15.073176]],"buildingTypes":["civic","yes","university","university","university","university","university","university","university","university","residential","yes","yes","residential","residential","civic","residential","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","residential","yes","yes","civic","yes","residential","residential","garage","house","house","house","yes","residential","yes","residential","residential","residential","residential","residential","residential","house","residential","yes","residential","residential","yes","residential","garage","garage","garage","yes","residential","garage","garage","garage","civic","yes","garage","residential","residential","residential","yes","yes","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","residential","yes","garage","garage","garage","residential","yes","yes","yes","yes","garage","garage","garage","garage","garage","garage","industrial","garage","garage","garage","yes","yes","yes","university","university","residential","residential","residential","residential","garage"],"pathways":[[50.7715459,15.0700709,50.771656,15.0699832,50.7723923,15.0693964,50.772695,15.0691552,50.7730954,15.068837,50.7733498,15.0686254,50.7734048,15.06858,50.7740134,15.0680991,50.7740728,15.0680574,50.7740879,15.0680453],[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7753344,15.071967,50.7753517,15.0719544,50.7753804,15.0719323,50.7762383,15.0712693],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.773066,15.0759402,50.7730339,15.0757391,50.7730324,15.0757292,50.7730252,15.0756838,50.7730037,15.0755384,50.7728821,15.0747749,50.7728585,15.0746374,50.7728514,15.0745931,50.7728485,15.0745747,50.7728164,15.0743732,50.7727895,15.0742394,50.7728744,15.0742161,50.7729429,15.0741972,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7732287,15.0751189,50.7733416,15.0758426,50.7731038,15.0759268,50.773066,15.0759402],[50.7711332,15.0714264,50.7711324,15.0711608,50.7711535,15.0710184,50.771202,15.0709222,50.7715808,15.0707311,50.7716437,15.0707084],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7723923,15.0693964,50.7723561,15.069224,50.7720111,15.0675782],[50.7747787,15.0675679,50.7743396,15.0679369,50.7741922,15.0680561,50.7743099,15.0684176,50.7743908,15.068679,50.7746381,15.0694786,50.7747499,15.0698458],[50.7749559,15.0692244,50.7750732,15.0695777],[50.7747202,15.0694297,50.7746381,15.0694786],[50.7748725,15.0678604,50.7749106,15.0679816,50.7750387,15.0683655,50.7752927,15.0691174,50.7751065,15.0690978,50.7749559,15.0692244,50.7747202,15.0694297,50.7744933,15.0685831],[50.7737778,15.0698608,50.773693,15.0697697,50.7736943,15.0697386,50.7736886,15.0697049,50.773571,15.0693442,50.773531,15.069168,50.7734981,15.0689719,50.7734977,15.0689399,50.7735128,15.0689055,50.7736997,15.0687658],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7726178,15.077,50.7724916,15.0762062,50.7724345,15.0758337,50.772214,15.0743908,50.7718091,15.0717795,50.7717093,15.0711425,50.7716437,15.0707084,50.7715836,15.0703009,50.7715459,15.0700709],[50.7755564,15.0691771,50.7754958,15.0692273,50.7750732,15.0695777,50.7747499,15.0698458,50.7746948,15.0698915,50.7746772,15.0699061],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7742114,15.0687462,50.7741565,15.0687932],[50.7741565,15.0687932,50.7738817,15.0690129],[50.773693,15.0697697,50.7736867,15.069781,50.7736788,15.0697919,50.7736682,15.0697985,50.7736366,15.069801,50.7736109,15.0697856,50.7735708,15.0697393,50.7735531,15.0696834,50.773415,15.0690544,50.773355,15.0687429,50.7733545,15.0687308,50.7733498,15.0686254],[50.7740766,15.0699582,50.7739846,15.0696453,50.7738817,15.0690129,50.7737793,15.0687387,50.7737347,15.068768,50.7736997,15.0687658],[50.7712652,15.0728422,50.7713284,15.0727126,50.771394,15.0723563,50.7714013,15.0722316,50.7714013,15.0721689,50.7713909,15.072077,50.7713548,15.0719023,50.7713079,15.0717865,50.771231,15.0716655,50.7711332,15.0714264],[50.7758983,15.0742748,50.7758355,15.0738881,50.7758016,15.0736783,50.7757357,15.0732563,50.7757167,15.0731652,50.7756939,15.0730866,50.7756372,15.0729012,50.7756321,15.0728845,50.7755318,15.0725562,50.7753344,15.071967,50.77503,15.0710052,50.7746772,15.0699061,50.7746685,15.0698764,50.7743147,15.0687414,50.7742925,15.0686768,50.7740879,15.0680453],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731154,15.0760135,50.7731038,15.0759268,50.7728744,15.0742161,50.7728635,15.0741347],[50.7722811,15.0743641,50.7724322,15.0754314,50.7725526,15.076188],[50.7723561,15.069224,50.7722533,15.0693217,50.7716141,15.0698396,50.7716066,15.0698438,50.7715884,15.069846,50.771572,15.0698333,50.7714947,15.0693786,50.7714275,15.0690023,50.771343,15.068509,50.7712399,15.0679127,50.7711974,15.067676,50.7710865,15.0670589,50.7710358,15.0667769,50.770959,15.0663327,50.770955,15.0662857,50.7709543,15.0659666,50.7709543,15.0658664,50.7709543,15.0657804],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7740151,15.0746626,50.7740449,15.0745473,50.7740399,15.0744534],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7714013,15.0722316,50.7713583,15.0722828,50.7713092,15.0723414,50.7712733,15.0723577,50.7712316,15.0723563,50.7711779,15.0723353],[50.7746685,15.0698764,50.7746566,15.0698851,50.7744586,15.0700098,50.7742746,15.0700717,50.7741844,15.0700707],[50.7741844,15.0700707,50.7740766,15.0699582,50.7739733,15.0699259,50.7739407,15.0699098,50.7738653,15.0698945,50.7737778,15.0698608],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7735708,15.0697393,50.7734654,15.0699291],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7749533,15.0728495,50.7749634,15.0730713,50.7749421,15.0732859,50.774974,15.073339,50.7750239,15.0733565,50.7750812,15.0733641,50.7751475,15.0733291,50.7753573,15.0731141,50.7756188,15.0728955,50.7756321,15.0728845],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7758355,15.0738881,50.7758193,15.0738958,50.7754356,15.0740837,50.7751453,15.0740909],[50.7759349,15.0741106,50.7759016,15.074033,50.7757962,15.0733728,50.775742,15.0730658,50.7755817,15.0725688,50.775464,15.0721745],[50.775464,15.0721745,50.7753804,15.0719323,50.7752722,15.0716105,50.7751503,15.0712082,50.7750135,15.0707882,50.7748604,15.0703256,50.774761,15.0699766,50.7747499,15.0698458],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7726474,15.0690017,50.773097,15.0686402,50.7733024,15.0684733],[50.7725447,15.0686034,50.7725506,15.0686381,50.7726474,15.0690017],[50.772695,15.0691552,50.7726474,15.0690017],[50.7723561,15.069224,50.7723988,15.0691799,50.7724206,15.0691778,50.7726474,15.0690017],[50.771643,15.0702755,50.7716341,15.0701891,50.7716346,15.0701449,50.7716439,15.0701084,50.7716616,15.070079,50.7716829,15.0700649,50.7723505,15.0695308,50.7723664,15.0695252,50.7723806,15.0695351,50.772412,15.0695239,50.7724508,15.0695112,50.772449,15.0694747,50.7724552,15.069448,50.7724667,15.069434,50.7730681,15.0689617,50.7730819,15.0689659,50.7731122,15.0689484,50.7731413,15.0689273,50.7731449,15.0688943,50.7731471,15.0688739,50.773156,15.0688606,50.7732918,15.0687624,50.7733002,15.0687603,50.7733078,15.0687631,50.7733158,15.0687624,50.7733545,15.0687308,50.773385,15.0687076,50.7733912,15.0686859,50.7733965,15.0686704,50.7737303,15.0684072,50.7740094,15.0682037,50.7740383,15.0681862],[50.7715808,15.0707311,50.7715125,15.070326],[50.7724188,15.0743193,50.7724601,15.0743824,50.772512,15.0744154,50.7725462,15.0744147,50.7727832,15.0743235],[50.771643,15.0702755,50.7716807,15.0705127,50.7718715,15.0717545,50.7720176,15.0727114,50.7721849,15.0737642,50.7722811,15.0743641],[50.7723217,15.0755726,50.7720127,15.0735143,50.771734,15.0717429,50.7715808,15.0707311],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,3,3,0,3,3,4,0,3,3,3,3,0,0,0,0,4,4,5,3,4,4,1,0,4,0,3,3,0,4,0,0,0,0,0,0,4,3,0,4,0,0,0,4,0,0,0,0,0,4,0,4,4,0,0,4,0,0,3,0,4,4,0,0,0,4,0,0,4,3],"areas":[[50.7749496,15.0675477,50.7748309,15.0676228,50.7749293,15.0679231,50.7748682,15.0680009,50.7749751,15.068347,50.7748546,15.068449,50.775048,15.0690684,50.7748733,15.0692107,50.7747495,15.0692188,50.7746341,15.0690041,50.7745154,15.0686582,50.7743543,15.0684329,50.7747698,15.0697579,50.7754941,15.0691624,50.7749496,15.0675477],[50.7739252,15.0690579,50.7737329,15.0684417,50.7740458,15.0682042,50.7742114,15.0687462,50.7742458,15.0688487,50.7739515,15.0690739,50.7739252,15.0690579],[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0,0,0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77357498000001,15.068754180000003,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.77338352,15.069208979999999,4,50.77320282,15.06863664,4,50.77347004,15.0691,4,50.77368628,15.06951072,4,50.7737409,15.0690773,0,50.7719988,15.0719208,0,50.7728491,15.0752552,0,50.773681,15.0692301,0,50.7735053,15.0755027,7,50.7726458,15.0751113,1,50.7731232,15.075444,6,50.7731309,15.0755035,6,50.7731735,15.0755976,6,50.7732104,15.0755042,6,50.7740297,15.0744936,6,50.7745187,15.0701967,7,50.773738,15.0696539,7,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.7730244,15.0744971,0,50.7738714,15.0698715,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":248},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T18:41:59.168375Z","actor":"e8888b3e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"e8888b3e","displayName":"Hr\u00E1\u010D229","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T18:41:59.178411Z","actor":"7614bb77","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"7614bb77","displayName":"Hr\u00E1\u010D423","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T18:41:59.1802007Z","actor":"a482eaf8","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a482eaf8","displayName":"Hr\u00E1\u010D755","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T18:41:59.1874075Z","actor":"e8888b3e","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T18:41:59.1899809Z","actor":"e8888b3e","eventType":"RoleAssigned","payload":{"clientUuid":"e8888b3e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7746238,"lon":15.0716847},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.77303,"lon":15.07395},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.77347004,"lon":15.0691},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7741888,"lon":15.0705734},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7741443,"lon":15.0702437},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T18:41:59.2001189Z","actor":"7614bb77","eventType":"RoleAssigned","payload":{"clientUuid":"7614bb77","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T18:41:59.2015171Z","actor":"a482eaf8","eventType":"RoleAssigned","payload":{"clientUuid":"a482eaf8","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.7741443,"lon":15.0702437},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7748682,"lon":15.0725437},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7748514,"lon":15.0724958},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7738714,"lon":15.0698715},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7744712,"lon":15.0716784},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T18:42:26.4508272Z","actor":"e8888b3e","eventType":"TaskCompleted","payload":{"clientUuid":"e8888b3e","taskId":"task_1","totalCompleted":1,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T18:42:43.9636392Z","actor":"7614bb77","eventType":"PlayerKilled","payload":{"victimId":"a482eaf8","killerId":"7614bb77","bodyId":"9c7d56ff","location":{"lat":50.77343041675591,"lon":15.072551645171758}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T18:42:43.9679207Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["7614bb77"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T18:42:49.1639281Z","actor":"e8888b3e","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T18:42:53.4053008Z","actor":"e8888b3e","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T18:42:57.6952924Z","actor":"e8888b3e","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":248,"buildings":[[50.7745461,15.068435,50.7745442,15.0684319,50.7745427,15.0684282,50.7745418,15.0684242,50.7745414,15.0684199,50.7745416,15.0684156,50.7745424,15.0684115,50.7745436,15.0684076,50.7745325,15.0684021,50.7745114,15.0683361,50.7745265,15.0682651,50.7745687,15.0682323,50.7745794,15.0682386,50.7745799,15.0682342,50.7745809,15.06823,50.7745825,15.0682262,50.7745845,15.068223,50.7745868,15.0682205,50.7745894,15.0682187,50.7745922,15.0682178,50.7745902,15.0682115,50.7747555,15.0680808,50.7747568,15.0680849,50.7747999,15.0680509,50.7748009,15.068054,50.7748521,15.0680136,50.7748892,15.0681308,50.7748793,15.0681387,50.7749449,15.0683455,50.774878,15.0683975,50.7748685,15.0683671,50.7747463,15.0684635,50.7749105,15.0689829,50.7748218,15.0690522,50.7748401,15.06911,50.7748162,15.0691292,50.7748175,15.0691336,50.7748119,15.069138,50.7748105,15.0691336,50.7747865,15.0691526,50.7747888,15.0691596,50.774743,15.0691962,50.7747199,15.0691237,50.7747243,15.0691202,50.7747121,15.069082,50.7747093,15.0690841,50.7747062,15.0690744,50.774709,15.0690722,50.774697,15.0690349,50.7746942,15.0690371,50.774691,15.0690269,50.7746938,15.0690248,50.7746815,15.0689863,50.7746787,15.0689885,50.7746752,15.0689775,50.774678,15.0689753,50.7746594,15.0689171,50.7746476,15.0689265,50.7746447,15.0689406,50.7746371,15.0689371,50.7746403,15.0689213,50.7746221,15.0688631,50.7746152,15.0688687,50.7746114,15.0688568,50.7746184,15.0688513,50.7746011,15.0687979,50.7745942,15.0688035,50.7745905,15.0687918,50.7745975,15.0687862,50.7745802,15.0687324,50.7745732,15.068738,50.7745695,15.0687266,50.7745766,15.068721,50.7745579,15.0686635,50.7745476,15.068658,50.7745502,15.0686462,50.7745591,15.0686512,50.7745712,15.0686416,50.7745565,15.068596,50.7745853,15.068573,50.7745419,15.0684384,50.7745461,15.068435],[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7737609,15.0756722,50.7733592,15.0758264,50.7733283,15.0756269,50.7734115,15.075595,50.7737306,15.0754725,50.7737609,15.0756722],[50.7728164,15.0743732,50.7728485,15.0745747,50.7725941,15.0746753,50.7725605,15.0746887,50.77243,15.0747403,50.7723979,15.074539,50.7728164,15.0743732],[50.7725313,15.0749147,50.7726529,15.0756781,50.7727128,15.0756542,50.772748,15.0756402,50.7730037,15.0755384,50.7728821,15.0747749,50.7726287,15.0748818,50.7725942,15.0748893,50.7725313,15.0749147],[50.7730564,15.0742132,50.7730091,15.0742672,50.7729888,15.0743735,50.7729855,15.0744805,50.7730088,15.0745931,50.773075,15.0746995,50.7731352,15.0747229,50.7730564,15.0742132],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.7725942,15.0748893,50.7725605,15.0746887,50.7725941,15.0746753,50.7726287,15.0748818,50.7725942,15.0748893],[50.7730091,15.0742672,50.7729836,15.0743201,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7731352,15.0747229,50.773075,15.0746995,50.7730088,15.0745931,50.7729855,15.0744805,50.7729888,15.0743735,50.7730091,15.0742672],[50.7755317,15.0731221,50.7755497,15.0731082,50.7755709,15.0731759,50.7755529,15.0731898,50.7755682,15.0732392,50.7754771,15.07331,50.7754254,15.0731437,50.775516,15.0730717,50.7755317,15.0731221],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7723782,15.0704051,50.7724179,15.0703895,50.7724196,15.0703994,50.7724249,15.0703973,50.7724371,15.0704083,50.7724617,15.0705635,50.7724001,15.0705882,50.7723991,15.0705819,50.7723733,15.0705922,50.7723705,15.0705752,50.772345,15.0705852,50.7723394,15.0705505,50.7722933,15.0705688,50.772276,15.0704604,50.7722947,15.0704531,50.7722899,15.070425,50.7723176,15.0704137,50.7723156,15.0704012,50.7723743,15.0703783,50.7723782,15.0704051],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7718969,15.070342,50.7717392,15.0704035,50.771738,15.0703959,50.7717168,15.0703753,50.7717125,15.0703768,50.7717008,15.0703037,50.7717466,15.0702859,50.7717422,15.070258,50.7717129,15.0702695,50.7717107,15.0702632,50.7717123,15.070262,50.7716835,15.0701797,50.7716816,15.0701804,50.7716801,15.0701694,50.7716857,15.0701674,50.7716867,15.0701745,50.7717862,15.0700924,50.7718536,15.0700661,50.7718969,15.070342],[50.7720818,15.0698367,50.772105,15.0699079,50.772122,15.0698938,50.772152,15.0699865,50.7721535,15.0699909,50.7721365,15.0700047,50.772137,15.0700063,50.7720541,15.0700728,50.7720501,15.0700601,50.772013,15.0700895,50.7719676,15.0699485,50.7719655,15.06995,50.7719594,15.0699311,50.7719689,15.0699235,50.7719698,15.0699266,50.772043,15.0698679,50.772048,15.0698457,50.7720609,15.0698353,50.7720728,15.0698439,50.7720818,15.0698367],[50.7723238,15.0696814,50.7723396,15.0696894,50.772346,15.0697092,50.7723402,15.0697316,50.7723347,15.069736,50.7723767,15.0698618,50.7723655,15.069871,50.7723664,15.0698737,50.772361,15.0698996,50.7723311,15.0699239,50.7723126,15.0699145,50.7723091,15.0699037,50.7722507,15.0699512,50.7722036,15.0698068,50.7722091,15.0698024,50.7721972,15.0697668,50.7722286,15.0697414,50.7722269,15.0697363,50.7722739,15.0696982,50.77228,15.069717,50.7723238,15.0696814],[50.7726999,15.0698343,50.772729,15.0698615,50.7727152,15.0698967,50.7727324,15.0700044,50.7727307,15.0700051,50.7727353,15.0700342,50.7726769,15.0700574,50.7726809,15.0700825,50.772646,15.0700963,50.7726447,15.0700879,50.7726056,15.0701034,50.7726003,15.0700707,50.7725917,15.0700742,50.7725816,15.0700099,50.7725771,15.0700118,50.7725627,15.0699211,50.7725734,15.0699165,50.7725698,15.0698931,50.7726598,15.0698571,50.7726603,15.0698612,50.772695,15.0698471,50.7726999,15.0698343],[50.773142,15.069712,50.773132,15.069731,50.773141,15.069786,50.773051,15.069821,50.773027,15.069671,50.773074,15.069656,50.773066,15.069626,50.773114,15.069608,50.773125,15.069682,50.77314,15.069691,50.773142,15.069712],[50.7727178,15.0695693,50.7726282,15.0696411,50.7726029,15.0695624,50.7726109,15.069556,50.7725855,15.0694771,50.7726289,15.0694425,50.7726328,15.069455,50.7726712,15.0694243,50.7727178,15.0695693],[50.7730417,15.0690918,50.7730463,15.0691046,50.7730429,15.0691219,50.7730551,15.0691603,50.7730628,15.0691543,50.773084,15.0692213,50.7730762,15.069227,50.7730986,15.0693044,50.773047,15.0693451,50.7730505,15.069356,50.7730453,15.0693602,50.7730537,15.0693865,50.7730341,15.0694018,50.7730259,15.0693757,50.7730211,15.0693794,50.7730176,15.0693684,50.7729658,15.0694094,50.7729325,15.0693072,50.7729279,15.069311,50.7729036,15.0692366,50.7729082,15.0692328,50.7728972,15.069199,50.7729328,15.0691702,50.7729299,15.0691614,50.7729809,15.06912,50.7729837,15.0691289,50.7730122,15.0691058,50.7730157,15.0690888,50.773024,15.069082,50.7730247,15.069079,50.7730424,15.0690888,50.7730417,15.0690918],[50.7716696,15.0716616,50.7716897,15.0717914,50.771695,15.0717895,50.7717047,15.0718521,50.7716994,15.0718541,50.77172,15.0719862,50.7716258,15.0720225,50.7716232,15.0720236,50.7715726,15.071699,50.7715753,15.071698,50.7716696,15.0716616],[50.77188,15.0705055,50.7719168,15.0707362,50.771912,15.070738,50.7719144,15.0707531,50.7718739,15.0707692,50.7718715,15.0707541,50.7717996,15.0707827,50.7718002,15.0707866,50.7717919,15.0707898,50.7717846,15.0707436,50.771787,15.0707426,50.7717741,15.0706612,50.7717619,15.070666,50.7717533,15.0706117,50.7717636,15.0706076,50.7717609,15.0705907,50.7717972,15.0705759,50.7717916,15.0705415,50.77188,15.0705055],[50.7716314,15.0714165,50.7716475,15.0715199,50.7716527,15.0715178,50.7716625,15.0715804,50.7716572,15.0715825,50.7716696,15.0716616,50.7715753,15.071698,50.7715372,15.0714534,50.7716314,15.0714165],[50.7715727,15.0711217,50.7715782,15.0711196,50.7715878,15.071183,50.7715824,15.0711849,50.7716025,15.0713169,50.7715079,15.071353,50.7714576,15.0710256,50.7715525,15.0709895,50.7715727,15.0711217],[50.77172,15.0719862,50.771732,15.0720637,50.7717372,15.0720616,50.7717469,15.0721238,50.7717416,15.0721259,50.7717577,15.0722293,50.7716638,15.0722668,50.7716258,15.0720225,50.77172,15.0719862],[50.7717616,15.0723435,50.77178,15.072462,50.7717849,15.0724602,50.7717946,15.0725231,50.7717899,15.0725249,50.7718084,15.0726443,50.7717139,15.0726808,50.7716669,15.0723802,50.7717616,15.0723435],[50.7715212,15.0729113,50.7715246,15.07291,50.7715314,15.0729541,50.7715281,15.0729555,50.7715397,15.0730301,50.7715026,15.0730444,50.7715058,15.0730649,50.7714458,15.0730881,50.7714119,15.0728744,50.7715097,15.0728371,50.7715212,15.0729113],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.7720045,15.0709227,50.772005,15.0709172,50.7720062,15.0709119,50.772008,15.0709071,50.7720104,15.070903,50.7720133,15.0708997,50.7720165,15.0708973,50.77202,15.0708961,50.7720235,15.0708959,50.772027,15.0708969,50.7720391,15.0709096,50.7720867,15.0708928,50.7720994,15.0709764,50.7721537,15.0709559,50.7721671,15.0710455,50.7719941,15.0711106,50.7719814,15.0711234,50.7719683,15.0711194,50.7719597,15.0710846,50.7719494,15.0710158,50.7719544,15.0710139,50.7719442,15.0709464,50.7720045,15.0709227],[50.7721196,15.0713084,50.7721221,15.0713249,50.7721299,15.0713219,50.7721291,15.0713171,50.7721603,15.0713049,50.772182,15.0714453,50.7720991,15.0714775,50.772103,15.0715023,50.7720736,15.0715137,50.7720696,15.0714889,50.7720121,15.0715115,50.7719909,15.071376,50.7721064,15.071331,50.7721039,15.0713145,50.7721196,15.0713084],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7751637,15.0704631,50.7751873,15.0704442,50.7752075,15.0705078,50.7751834,15.0705268,50.7752149,15.0706272,50.7751841,15.0706516,50.7751864,15.0706585,50.7751582,15.0706809,50.7751444,15.0706376,50.7751096,15.0706651,50.7750901,15.0706039,50.7750846,15.0706083,50.7750809,15.0705965,50.7750661,15.0706082,50.7750462,15.0705455,50.775061,15.0705338,50.7750569,15.0705212,50.7750624,15.0705168,50.775043,15.0704557,50.7750718,15.0704331,50.7750711,15.070431,50.7751024,15.0704062,50.7751031,15.0704085,50.7751379,15.0703814,50.7751637,15.0704631],[50.7737764,15.0696257,50.7737483,15.0695369,50.7737403,15.0695433,50.7737122,15.0694542,50.7737043,15.0694607,50.7736754,15.0693688,50.7736791,15.0693655,50.7736681,15.0693307,50.7737285,15.0693317,50.7737608,15.0693064,50.7737573,15.0692958,50.7738589,15.0692155,50.7738904,15.0693154,50.7738824,15.0693216,50.7739105,15.0694104,50.7739025,15.0694166,50.7739306,15.0695055,50.7739226,15.0695117,50.7739502,15.0695993,50.7738119,15.0697078,50.7737843,15.0696195,50.7737764,15.0696257],[50.7735638,15.0690008,50.7737809,15.0688307,50.7738792,15.0691536,50.7738473,15.0691787,50.7738589,15.0692155,50.7737573,15.0692958,50.7737608,15.0693064,50.7737285,15.0693317,50.7736675,15.0693285,50.7735638,15.0690008],[50.7740925,15.0690877,50.7740919,15.0690789,50.7740925,15.0690611,50.7740955,15.069044,50.7741009,15.0690283,50.7741043,15.0690213,50.7741083,15.0690149,50.7741099,15.0690161,50.7741376,15.0689945,50.7741376,15.0689916,50.7741405,15.0689882,50.7741438,15.0689856,50.7741473,15.0689841,50.7741509,15.0689836,50.7741546,15.0689842,50.774158,15.0689858,50.7741613,15.0689885,50.7741642,15.068992,50.7741666,15.0689963,50.7741662,15.0689991,50.7741822,15.0690097,50.7741853,15.069015,50.77419,15.069025,50.7741989,15.0690304,50.7742022,15.0690137,50.7742129,15.0690051,50.7742247,15.0690108,50.7742299,15.0690282,50.774226,15.0690463,50.7742234,15.0690483,50.7742388,15.0690966,50.7742455,15.0690912,50.7742471,15.069096,50.77425,15.0690937,50.7742794,15.0691858,50.7742765,15.0691881,50.7742778,15.0691927,50.7742711,15.0691981,50.7742945,15.0692721,50.7742469,15.0693098,50.774253,15.0693291,50.7742123,15.0693608,50.7742064,15.0693419,50.7741579,15.0693803,50.7741342,15.0693074,50.7741317,15.0693093,50.7740993,15.0692097,50.7741017,15.0692078,50.7740769,15.0691302,50.7740993,15.069112,50.7740943,15.0690882,50.7740925,15.0690877],[50.774568,15.0701178,50.7745736,15.0701133,50.7746048,15.0702115,50.7745992,15.0702159,50.7746189,15.0702782,50.7745738,15.070314,50.7745779,15.0703267,50.7745727,15.0703308,50.7745751,15.0703383,50.7745525,15.0703562,50.7745502,15.0703486,50.7745449,15.0703528,50.7745409,15.0703401,50.7744982,15.0703739,50.7744976,15.0703719,50.7744686,15.0703949,50.7744433,15.0703172,50.7744772,15.07029,50.7744786,15.0702948,50.7744946,15.0702822,50.7744707,15.0702074,50.7744388,15.0702327,50.7744158,15.0701606,50.7745481,15.070055,50.774568,15.0701178],[50.774455,15.0696524,50.7744653,15.0696852,50.7744434,15.0697027,50.7744451,15.0697083,50.7744415,15.0697112,50.7744645,15.0697834,50.7744193,15.0698193,50.7744298,15.0698521,50.7744243,15.0698565,50.7744257,15.0698609,50.7743991,15.0698822,50.7743977,15.0698778,50.7743919,15.0698824,50.7743814,15.0698496,50.7743365,15.0698853,50.7742538,15.0696254,50.7742964,15.0695919,50.7742911,15.0695754,50.774334,15.0695415,50.7743393,15.0695579,50.774382,15.0695239,50.774405,15.0695964,50.7744086,15.0695935,50.7744103,15.0695992,50.7744323,15.0695819,50.7744425,15.0696138,50.774445,15.0696122,50.7744477,15.0696115,50.7744504,15.0696116,50.774453,15.0696125,50.7744555,15.0696142,50.7744577,15.0696166,50.7744596,15.0696196,50.7744611,15.0696232,50.7744621,15.0696271,50.7744625,15.0696313,50.7744625,15.0696356,50.7744619,15.0696397,50.7744609,15.0696437,50.7744593,15.0696473,50.7744573,15.0696502,50.774455,15.0696524],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7756,15.070556,50.775557,15.070589,50.77557,15.070632,50.775611,15.070598,50.7756,15.070556],[50.7755144,15.0714779,50.7755518,15.0715956,50.7755475,15.0715991,50.7755594,15.0716365,50.7755236,15.0716648,50.7755177,15.0716466,50.7754841,15.0716731,50.7754795,15.0716583,50.7754351,15.0716934,50.7754128,15.0716233,50.77541,15.0716256,50.7754073,15.071617,50.7753938,15.0716276,50.7753769,15.0715747,50.7753905,15.0715639,50.7753877,15.0715551,50.7753905,15.0715529,50.7753684,15.0714836,50.7754103,15.0714505,50.7754072,15.0714409,50.775441,15.0714141,50.7754441,15.0714238,50.7754838,15.0713932,50.7755115,15.0714802,50.7755144,15.0714779],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.775303,15.0708614,50.7753184,15.0709103,50.7753202,15.070909,50.7753624,15.0710422,50.7753529,15.0710495,50.7753654,15.0710889,50.7753131,15.0711301,50.7753107,15.0711226,50.7752656,15.071158,50.7752449,15.0710924,50.7752362,15.071099,50.7752326,15.0710873,50.7752269,15.0710917,50.775217,15.0710861,50.7752073,15.0710557,50.7752106,15.0710399,50.7752162,15.0710354,50.7752124,15.0710236,50.775221,15.071017,50.7752003,15.0709515,50.7752454,15.070916,50.7752431,15.0709085,50.775303,15.0708614],[50.7752185,15.0721634,50.7752173,15.0721699,50.7752377,15.0722341,50.7752458,15.0722278,50.7752745,15.0723183,50.7752722,15.0723202,50.7752824,15.0723534,50.7752432,15.0723848,50.775244,15.0723872,50.775166,15.0724485,50.7751263,15.0723232,50.7751352,15.0723161,50.7751014,15.0722114,50.7751542,15.0721689,50.7751574,15.0721791,50.7751886,15.0721541,50.7751895,15.0721481,50.7752005,15.0721393,50.775213,15.0721462,50.7752185,15.0721634],[50.7753236,15.072471,50.7753318,15.0724972,50.7753303,15.0724983,50.775344,15.0725419,50.7753489,15.072538,50.7753534,15.0725525,50.7753715,15.0725383,50.7753897,15.0725948,50.7753714,15.0726089,50.7753762,15.0726237,50.7753711,15.0726277,50.7753867,15.0726751,50.7752966,15.0727459,50.7752578,15.0726231,50.7752331,15.0725457,50.7752581,15.0725259,50.7752549,15.0725159,50.7753138,15.0724655,50.7753236,15.072471],[50.7754147,15.0727618,50.7754356,15.0728252,50.7754517,15.0728119,50.775474,15.0728795,50.7754576,15.0728929,50.7754817,15.0729652,50.7753703,15.0730554,50.7753603,15.073049,50.7753585,15.0730433,50.7753281,15.0730694,50.7753066,15.0730632,50.7752957,15.0730318,50.7753049,15.0730012,50.7752933,15.0729659,50.7753299,15.072936,50.7753148,15.0728901,50.7752913,15.0729095,50.7752681,15.0728393,50.7754049,15.0727269,50.7754161,15.0727608,50.7754147,15.0727618],[50.7758491,15.0725117,50.7759179,15.0727317,50.7758831,15.0727588,50.7758874,15.0727725,50.7758528,15.0727995,50.7758488,15.0727867,50.7758012,15.0728239,50.7758001,15.0728205,50.7757819,15.0728346,50.7757632,15.0727737,50.7757821,15.0727588,50.7757446,15.0726397,50.7757373,15.0726453,50.7757152,15.0725743,50.775768,15.0725333,50.7757642,15.0725208,50.7758156,15.0724807,50.7758299,15.0725266,50.7758491,15.0725117],[50.7757385,15.07206,50.7757616,15.0721328,50.7757632,15.0721316,50.7757897,15.0722151,50.7757422,15.0722534,50.7757469,15.0722678,50.7757104,15.0722973,50.7757057,15.0722826,50.7756555,15.072323,50.7756326,15.0722507,50.7756025,15.0722726,50.775573,15.0721801,50.7756022,15.0721554,50.7755793,15.0720833,50.7756277,15.0720443,50.7756266,15.0720408,50.7756313,15.0720192,50.7756559,15.0719993,50.7756699,15.072006,50.775671,15.0720094,50.7757135,15.0719752,50.7757401,15.0720588,50.7757385,15.07206],[50.7716205,15.0735307,50.7716231,15.0735323,50.7716243,15.0735362,50.7716245,15.0735549,50.7716256,15.073555,50.7716295,15.0735572,50.7716312,15.0735631,50.7716337,15.0737085,50.7716322,15.0737147,50.7716284,15.0737173,50.7715513,15.0737205,50.7715475,15.0737183,50.7715458,15.0737124,50.7715451,15.0736726,50.7715356,15.0736731,50.7715318,15.0736708,50.7715302,15.0736648,50.7715293,15.073616,50.7715307,15.0736098,50.7715345,15.0736072,50.771544,15.0736067,50.7715433,15.073567,50.7715448,15.0735608,50.7715486,15.0735582,50.7715771,15.0735569,50.7715766,15.0735326,50.7716205,15.0735307],[50.7717049,15.0740075,50.7717387,15.0742209,50.7716368,15.0742603,50.7716231,15.0741713,50.7716164,15.0741655,50.7716134,15.0741461,50.7716174,15.0741355,50.7716038,15.0740466,50.7717049,15.0740075],[50.7747953,15.0734128,50.7749794,15.0734047,50.7749886,15.0739546,50.7748051,15.0739635,50.774805,15.0739561,50.7747954,15.0734185,50.7747953,15.0734128],[50.7756061,15.0736962,50.775624,15.0736888,50.7756265,15.0737042,50.7756439,15.0737121,50.7756486,15.0737412,50.7756359,15.0737616,50.7756382,15.0737763,50.7755857,15.0737997,50.7755912,15.07383,50.7755649,15.0738409,50.7755676,15.0738569,50.7755396,15.0738682,50.775537,15.0738526,50.775514,15.0738621,50.7755186,15.0738892,50.7754923,15.0738998,50.775475,15.073798,50.7754816,15.0737954,50.7754741,15.07375,50.7754838,15.0737452,50.7754647,15.0736345,50.7755874,15.0735825,50.7756061,15.0736962],[50.7750127,15.0741195,50.7750892,15.0741161,50.7750896,15.0741643,50.7751156,15.0741644,50.7751158,15.0742121,50.7751348,15.0742119,50.7751352,15.074264,50.775116,15.0742642,50.7751162,15.074331,50.7750807,15.0743318,50.7750811,15.0743552,50.7749926,15.0743583,50.7749916,15.0741455,50.7750131,15.0741446,50.7750127,15.0741195],[50.7754584,15.0741179,50.7754585,15.0741884,50.7754788,15.0741883,50.775479,15.0742421,50.7754587,15.0742422,50.7754589,15.0743284,50.7754073,15.0743283,50.7753995,15.0743413,50.7753807,15.0743414,50.7753727,15.0743284,50.7753207,15.0743291,50.7753205,15.0742767,50.7753227,15.0742767,50.7753222,15.0741179,50.7754584,15.0741179],[50.7724145,15.0739846,50.7723917,15.0739931,50.7723939,15.0740069,50.7723162,15.0740362,50.7723103,15.0739967,50.7723059,15.0739983,50.772305,15.0739927,50.7723012,15.0739934,50.7722973,15.0739931,50.7722936,15.0739918,50.7722901,15.0739895,50.7722868,15.0739863,50.772284,15.0739822,50.7722816,15.0739775,50.7722798,15.0739721,50.7722786,15.0739664,50.7722781,15.0739604,50.7722782,15.0739544,50.7722789,15.0739485,50.7722803,15.0739428,50.7722823,15.0739377,50.7722848,15.0739331,50.7722877,15.0739293,50.7722911,15.0739263,50.7722947,15.0739243,50.7722937,15.0739182,50.7723984,15.0738786,50.7724145,15.0739846],[50.7714366,15.0722058,50.7714318,15.0721574,50.7714912,15.0721426,50.771496,15.0721916,50.7714366,15.0722058],[50.7716475,15.0731502,50.7716417,15.0731036,50.7716995,15.073085,50.7717056,15.0731318,50.7716475,15.0731502],[50.771427,15.0721105,50.7714223,15.072063,50.7714819,15.072048,50.7714867,15.0720956,50.771427,15.0721105],[50.771991,15.073823,50.771874,15.073869,50.771865,15.073804,50.771851,15.073795,50.771846,15.073764,50.771855,15.073748,50.771845,15.073684,50.771961,15.073639,50.771991,15.073823],[50.7718387,15.072858,50.7718477,15.0729148,50.7718628,15.0729094,50.7718816,15.0730345,50.7718661,15.0730402,50.7718669,15.0730458,50.771816,15.0730647,50.7718181,15.073078,50.7717915,15.073088,50.7717899,15.073077,50.7717665,15.0730857,50.7717519,15.0729862,50.7717292,15.072994,50.7717152,15.0728992,50.7717449,15.0728885,50.7717455,15.0728925,50.7717936,15.0728747,50.7717936,15.0728685,50.7717943,15.0728623,50.7717956,15.0728565,50.7717977,15.0728511,50.7718003,15.0728464,50.7718033,15.0728426,50.7718068,15.0728396,50.7718106,15.0728377,50.7718145,15.0728368,50.7718184,15.072837,50.7718223,15.0728383,50.7718259,15.0728407,50.7718293,15.0728441,50.7718321,15.0728483,50.7718345,15.0728533,50.7718362,15.0728589,50.7718387,15.072858],[50.771653,15.0731932,50.7717099,15.073176,50.7717102,15.0731779,50.7717114,15.0731775,50.7717056,15.0731318,50.7716475,15.0731502,50.771653,15.0731932],[50.7714318,15.0721574,50.771427,15.0721105,50.7714867,15.0720956,50.7714912,15.0721426,50.7714318,15.0721574],[50.7714223,15.072063,50.7714175,15.0720145,50.7714771,15.0719998,50.7714819,15.072048,50.7714223,15.072063],[50.77456,15.0753452,50.7745574,15.075182,50.774801,15.075172,50.7748045,15.0753354,50.77456,15.0753452],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7751209,15.0744752,50.7751478,15.0744737,50.7751503,15.0745609,50.7751226,15.0745621,50.7751209,15.0744752],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7723625,15.0735165,50.7723669,15.073546,50.772422,15.0735251,50.7724486,15.0736994,50.772353,15.0737357,50.7723564,15.0737577,50.7723084,15.0737759,50.772305,15.0737538,50.7722439,15.0737771,50.7722173,15.073603,50.7723198,15.073564,50.7723153,15.0735343,50.7723625,15.0735165],[50.7720487,15.0718492,50.7720888,15.0718336,50.772094,15.0718652,50.7721081,15.0718597,50.7721123,15.0718876,50.7721144,15.0718868,50.7721282,15.0719749,50.7720491,15.0720053,50.7720577,15.0720612,50.7719949,15.0720857,50.7719839,15.0720149,50.7719743,15.0720185,50.7719635,15.0719491,50.7719731,15.0719452,50.7719647,15.071882,50.7720011,15.0718676,50.7719989,15.0718523,50.7720465,15.0718342,50.7720487,15.0718492],[50.772063,15.074283,50.771966,15.074318,50.771936,15.074119,50.772033,15.074081,50.772063,15.074283],[50.772139,15.074775,50.772041,15.074813,50.771993,15.074494,50.77209,15.074456,50.772139,15.074775],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7719259,15.0733898,50.7719361,15.0734576,50.7719335,15.0734586,50.7719372,15.0734834,50.7719073,15.0734946,50.7719036,15.0734698,50.7718392,15.073494,50.7718229,15.0733859,50.771799,15.0733947,50.7717888,15.0733272,50.7718127,15.0733182,50.771811,15.0733065,50.7718212,15.0733028,50.7718273,15.0732874,50.7718486,15.0732793,50.7718585,15.0732887,50.7719079,15.0732703,50.771918,15.0733378,50.7719208,15.0733367,50.7719287,15.0733887,50.7719259,15.0733898],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7751757,15.069743,50.7751839,15.0697366,50.7751654,15.0696776,50.7752004,15.0696503,50.7751982,15.0696435,50.7752493,15.0696041,50.7752513,15.0696105,50.7752848,15.0695843,50.7753064,15.0696531,50.7753108,15.0696496,50.7753404,15.0697437,50.775303,15.0697728,50.7753063,15.0697832,50.7752112,15.0698558,50.7751757,15.069743],[50.7749457,15.0698497,50.7749612,15.0698372,50.7749808,15.0698217,50.7750269,15.0699657,50.7750048,15.0699833,50.7750345,15.0700761,50.7749444,15.0701478,50.7749133,15.0700514,50.7749097,15.0700544,50.7748863,15.0699812,50.7748899,15.0699783,50.7748765,15.0699369,50.7748647,15.069931,50.7748729,15.0698913,50.7748852,15.0698978,50.7748909,15.0698934,50.7748799,15.0698582,50.7749345,15.0698148,50.7749357,15.0698185,50.7749457,15.0698497],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7750917,15.0740684,50.7750446,15.0740687,50.7750446,15.0740646,50.7750446,15.0740255,50.7750914,15.0740253,50.7750916,15.0740637,50.7750917,15.0740684],[50.7752282,15.0698968,50.7752685,15.0698625,50.7752711,15.0698604,50.7752867,15.0699091,50.7752413,15.0699506,50.775225,15.0698993,50.7752282,15.0698968],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7722268,15.0702958,50.7721707,15.070313,50.772161,15.0702337,50.7722152,15.0702171,50.7722268,15.0702958],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7728652,15.0699861,50.7728732,15.0700323,50.7728193,15.0700556,50.7728103,15.0700095,50.7728652,15.0699861],[50.771992,15.070692,50.7720069,15.0707766,50.7719748,15.0707914,50.7719598,15.070706,50.771992,15.070692],[50.7758015,15.0722067,50.7758574,15.0721629,50.7758802,15.0722351,50.7758243,15.0722789,50.7758015,15.0722067],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7730944,15.0699634,50.7731272,15.0699618,50.7731289,15.0700443,50.7730725,15.0700473,50.773071,15.0699726,50.7730944,15.0699634],[50.7724605,15.0706468,50.7724735,15.0707292,50.7724148,15.070752,50.7724154,15.0707563,50.7724114,15.0707578,50.7723978,15.0706712,50.7724605,15.0706468],[50.7721698,15.0699582,50.7721542,15.0699706,50.7721581,15.0699811,50.772152,15.0699865,50.772122,15.0698938,50.7721531,15.0698664,50.7721612,15.0699006,50.7721698,15.0699582],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7728585,15.0746374,50.7727988,15.0746605,50.7727919,15.0746157,50.7728514,15.0745931,50.7728585,15.0746374],[50.7752578,15.0726231,50.7752262,15.0726483,50.7752015,15.0725718,50.7752331,15.0725457,50.7752578,15.0726231],[50.7737,15.0752819,50.7736634,15.0752963,50.773663,15.0752941,50.7736442,15.0753015,50.7736416,15.0752843,50.7735996,15.0753043,50.7735987,15.0753075,50.7735985,15.075311,50.7736003,15.0753246,50.7736,15.0753277,50.7735992,15.0753306,50.773598,15.0753331,50.7735963,15.0753349,50.7735945,15.075336,50.7734819,15.0753758,50.7734802,15.0753737,50.7734789,15.075371,50.7734781,15.0753679,50.7734771,15.0753608,50.7734764,15.075358,50.7734752,15.0753555,50.7734737,15.0753535,50.7734719,15.0753522,50.77347,15.0753517,50.773468,15.075352,50.7734319,15.0753659,50.7734345,15.0753831,50.7734157,15.0753903,50.7734161,15.0753928,50.7733818,15.0754061,50.7733791,15.0753883,50.7732956,15.0754181,50.7731776,15.074665,50.7732038,15.0746549,50.7731964,15.0746074,50.7731802,15.0746137,50.7731624,15.0744996,50.7731784,15.0744933,50.7731707,15.0744438,50.773228,15.0744221,50.7732604,15.0746333,50.7735766,15.0745127,50.7737,15.0752819],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7723274,15.0741104,50.7723162,15.0740362,50.7723939,15.0740069,50.7723948,15.0740127,50.7723877,15.0740153,50.7723914,15.0740399,50.7724625,15.0740131,50.7724722,15.0740768,50.7724569,15.0740826,50.7724654,15.0741383,50.7724262,15.074153,50.7724281,15.0741682,50.7724275,15.0741708,50.7724263,15.0741728,50.7724247,15.074174,50.7723821,15.074188,50.7723808,15.0741861,50.7723801,15.0741835,50.7723782,15.0741712,50.7723345,15.0741875,50.772334,15.074184,50.7723302,15.0741847,50.7723264,15.0741844,50.7723226,15.074183,50.7723191,15.0741807,50.7723158,15.0741774,50.772313,15.0741733,50.7723106,15.0741686,50.7723088,15.0741632,50.7723076,15.0741575,50.7723071,15.0741515,50.7723072,15.0741455,50.7723079,15.0741395,50.7723093,15.0741339,50.7723112,15.0741287,50.7723137,15.0741241,50.7723166,15.0741202,50.77232,15.0741172,50.7723236,15.0741151,50.7723231,15.074112,50.7723274,15.0741104],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849],[50.7717099,15.073176,50.7717102,15.0731779,50.7717251,15.0732757,50.7716644,15.0732981,50.7716494,15.0731989,50.7716524,15.0731977,50.7716518,15.0731936,50.771653,15.0731932,50.7717099,15.073176]],"buildingTypes":["civic","yes","university","university","university","university","university","university","university","university","residential","yes","yes","residential","residential","civic","residential","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","residential","yes","yes","civic","yes","residential","residential","garage","house","house","house","yes","residential","yes","residential","residential","residential","residential","residential","residential","house","residential","yes","residential","residential","yes","residential","garage","garage","garage","yes","residential","garage","garage","garage","civic","yes","garage","residential","residential","residential","yes","yes","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","residential","yes","garage","garage","garage","residential","yes","yes","yes","yes","garage","garage","garage","garage","garage","garage","industrial","garage","garage","garage","yes","yes","yes","university","university","residential","residential","residential","residential","garage"],"pathways":[[50.7715459,15.0700709,50.771656,15.0699832,50.7723923,15.0693964,50.772695,15.0691552,50.7730954,15.068837,50.7733498,15.0686254,50.7734048,15.06858,50.7740134,15.0680991,50.7740728,15.0680574,50.7740879,15.0680453],[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7753344,15.071967,50.7753517,15.0719544,50.7753804,15.0719323,50.7762383,15.0712693],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.773066,15.0759402,50.7730339,15.0757391,50.7730324,15.0757292,50.7730252,15.0756838,50.7730037,15.0755384,50.7728821,15.0747749,50.7728585,15.0746374,50.7728514,15.0745931,50.7728485,15.0745747,50.7728164,15.0743732,50.7727895,15.0742394,50.7728744,15.0742161,50.7729429,15.0741972,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7732287,15.0751189,50.7733416,15.0758426,50.7731038,15.0759268,50.773066,15.0759402],[50.7711332,15.0714264,50.7711324,15.0711608,50.7711535,15.0710184,50.771202,15.0709222,50.7715808,15.0707311,50.7716437,15.0707084],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7723923,15.0693964,50.7723561,15.069224,50.7720111,15.0675782],[50.7747787,15.0675679,50.7743396,15.0679369,50.7741922,15.0680561,50.7743099,15.0684176,50.7743908,15.068679,50.7746381,15.0694786,50.7747499,15.0698458],[50.7749559,15.0692244,50.7750732,15.0695777],[50.7747202,15.0694297,50.7746381,15.0694786],[50.7748725,15.0678604,50.7749106,15.0679816,50.7750387,15.0683655,50.7752927,15.0691174,50.7751065,15.0690978,50.7749559,15.0692244,50.7747202,15.0694297,50.7744933,15.0685831],[50.7737778,15.0698608,50.773693,15.0697697,50.7736943,15.0697386,50.7736886,15.0697049,50.773571,15.0693442,50.773531,15.069168,50.7734981,15.0689719,50.7734977,15.0689399,50.7735128,15.0689055,50.7736997,15.0687658],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7726178,15.077,50.7724916,15.0762062,50.7724345,15.0758337,50.772214,15.0743908,50.7718091,15.0717795,50.7717093,15.0711425,50.7716437,15.0707084,50.7715836,15.0703009,50.7715459,15.0700709],[50.7755564,15.0691771,50.7754958,15.0692273,50.7750732,15.0695777,50.7747499,15.0698458,50.7746948,15.0698915,50.7746772,15.0699061],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7742114,15.0687462,50.7741565,15.0687932],[50.7741565,15.0687932,50.7738817,15.0690129],[50.773693,15.0697697,50.7736867,15.069781,50.7736788,15.0697919,50.7736682,15.0697985,50.7736366,15.069801,50.7736109,15.0697856,50.7735708,15.0697393,50.7735531,15.0696834,50.773415,15.0690544,50.773355,15.0687429,50.7733545,15.0687308,50.7733498,15.0686254],[50.7740766,15.0699582,50.7739846,15.0696453,50.7738817,15.0690129,50.7737793,15.0687387,50.7737347,15.068768,50.7736997,15.0687658],[50.7712652,15.0728422,50.7713284,15.0727126,50.771394,15.0723563,50.7714013,15.0722316,50.7714013,15.0721689,50.7713909,15.072077,50.7713548,15.0719023,50.7713079,15.0717865,50.771231,15.0716655,50.7711332,15.0714264],[50.7758983,15.0742748,50.7758355,15.0738881,50.7758016,15.0736783,50.7757357,15.0732563,50.7757167,15.0731652,50.7756939,15.0730866,50.7756372,15.0729012,50.7756321,15.0728845,50.7755318,15.0725562,50.7753344,15.071967,50.77503,15.0710052,50.7746772,15.0699061,50.7746685,15.0698764,50.7743147,15.0687414,50.7742925,15.0686768,50.7740879,15.0680453],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731154,15.0760135,50.7731038,15.0759268,50.7728744,15.0742161,50.7728635,15.0741347],[50.7722811,15.0743641,50.7724322,15.0754314,50.7725526,15.076188],[50.7723561,15.069224,50.7722533,15.0693217,50.7716141,15.0698396,50.7716066,15.0698438,50.7715884,15.069846,50.771572,15.0698333,50.7714947,15.0693786,50.7714275,15.0690023,50.771343,15.068509,50.7712399,15.0679127,50.7711974,15.067676,50.7710865,15.0670589,50.7710358,15.0667769,50.770959,15.0663327,50.770955,15.0662857,50.7709543,15.0659666,50.7709543,15.0658664,50.7709543,15.0657804],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7740151,15.0746626,50.7740449,15.0745473,50.7740399,15.0744534],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7714013,15.0722316,50.7713583,15.0722828,50.7713092,15.0723414,50.7712733,15.0723577,50.7712316,15.0723563,50.7711779,15.0723353],[50.7746685,15.0698764,50.7746566,15.0698851,50.7744586,15.0700098,50.7742746,15.0700717,50.7741844,15.0700707],[50.7741844,15.0700707,50.7740766,15.0699582,50.7739733,15.0699259,50.7739407,15.0699098,50.7738653,15.0698945,50.7737778,15.0698608],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7735708,15.0697393,50.7734654,15.0699291],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7749533,15.0728495,50.7749634,15.0730713,50.7749421,15.0732859,50.774974,15.073339,50.7750239,15.0733565,50.7750812,15.0733641,50.7751475,15.0733291,50.7753573,15.0731141,50.7756188,15.0728955,50.7756321,15.0728845],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7758355,15.0738881,50.7758193,15.0738958,50.7754356,15.0740837,50.7751453,15.0740909],[50.7759349,15.0741106,50.7759016,15.074033,50.7757962,15.0733728,50.775742,15.0730658,50.7755817,15.0725688,50.775464,15.0721745],[50.775464,15.0721745,50.7753804,15.0719323,50.7752722,15.0716105,50.7751503,15.0712082,50.7750135,15.0707882,50.7748604,15.0703256,50.774761,15.0699766,50.7747499,15.0698458],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7726474,15.0690017,50.773097,15.0686402,50.7733024,15.0684733],[50.7725447,15.0686034,50.7725506,15.0686381,50.7726474,15.0690017],[50.772695,15.0691552,50.7726474,15.0690017],[50.7723561,15.069224,50.7723988,15.0691799,50.7724206,15.0691778,50.7726474,15.0690017],[50.771643,15.0702755,50.7716341,15.0701891,50.7716346,15.0701449,50.7716439,15.0701084,50.7716616,15.070079,50.7716829,15.0700649,50.7723505,15.0695308,50.7723664,15.0695252,50.7723806,15.0695351,50.772412,15.0695239,50.7724508,15.0695112,50.772449,15.0694747,50.7724552,15.069448,50.7724667,15.069434,50.7730681,15.0689617,50.7730819,15.0689659,50.7731122,15.0689484,50.7731413,15.0689273,50.7731449,15.0688943,50.7731471,15.0688739,50.773156,15.0688606,50.7732918,15.0687624,50.7733002,15.0687603,50.7733078,15.0687631,50.7733158,15.0687624,50.7733545,15.0687308,50.773385,15.0687076,50.7733912,15.0686859,50.7733965,15.0686704,50.7737303,15.0684072,50.7740094,15.0682037,50.7740383,15.0681862],[50.7715808,15.0707311,50.7715125,15.070326],[50.7724188,15.0743193,50.7724601,15.0743824,50.772512,15.0744154,50.7725462,15.0744147,50.7727832,15.0743235],[50.771643,15.0702755,50.7716807,15.0705127,50.7718715,15.0717545,50.7720176,15.0727114,50.7721849,15.0737642,50.7722811,15.0743641],[50.7723217,15.0755726,50.7720127,15.0735143,50.771734,15.0717429,50.7715808,15.0707311],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,3,3,0,3,3,4,0,3,3,3,3,0,0,0,0,4,4,5,3,4,4,1,0,4,0,3,3,0,4,0,0,0,0,0,0,4,3,0,4,0,0,0,4,0,0,0,0,0,4,0,4,4,0,0,4,0,0,3,0,4,4,0,0,0,4,0,0,4,3],"areas":[[50.7749496,15.0675477,50.7748309,15.0676228,50.7749293,15.0679231,50.7748682,15.0680009,50.7749751,15.068347,50.7748546,15.068449,50.775048,15.0690684,50.7748733,15.0692107,50.7747495,15.0692188,50.7746341,15.0690041,50.7745154,15.0686582,50.7743543,15.0684329,50.7747698,15.0697579,50.7754941,15.0691624,50.7749496,15.0675477],[50.7739252,15.0690579,50.7737329,15.0684417,50.7740458,15.0682042,50.7742114,15.0687462,50.7742458,15.0688487,50.7739515,15.0690739,50.7739252,15.0690579],[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0,0,0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77357498000001,15.068754180000003,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.77338352,15.069208979999999,4,50.77320282,15.06863664,4,50.77347004,15.0691,4,50.77368628,15.06951072,4,50.7737409,15.0690773,0,50.7719988,15.0719208,0,50.7728491,15.0752552,0,50.773681,15.0692301,0,50.7735053,15.0755027,7,50.7726458,15.0751113,1,50.7731232,15.075444,6,50.7731309,15.0755035,6,50.7731735,15.0755976,6,50.7732104,15.0755042,6,50.7740297,15.0744936,6,50.7745187,15.0701967,7,50.773738,15.0696539,7,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.7730244,15.0744971,0,50.7738714,15.0698715,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":248},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T18:42:57.7246393Z","actor":"e8888b3e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"e8888b3e","displayName":"Hr\u00E1\u010D229","playersReady":1,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T18:42:57.7356697Z","actor":"7614bb77","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"7614bb77","displayName":"Hr\u00E1\u010D423","playersReady":2,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T18:42:57.7415919Z","actor":"a482eaf8","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a482eaf8","displayName":"Hr\u00E1\u010D755","playersReady":3,"totalPlayers":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T18:42:57.746394Z","actor":"e8888b3e","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T18:42:57.7502654Z","actor":"e8888b3e","eventType":"RoleAssigned","payload":{"clientUuid":"e8888b3e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7748514,"lon":15.0724958},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7741888,"lon":15.0705734},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7741494,"lon":15.0703058},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.77347004,"lon":15.0691},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7740297,"lon":15.0744936},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T18:42:57.7541765Z","actor":"7614bb77","eventType":"RoleAssigned","payload":{"clientUuid":"7614bb77","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T18:42:57.7572957Z","actor":"a482eaf8","eventType":"RoleAssigned","payload":{"clientUuid":"a482eaf8","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.774702,"lon":15.0718182},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7744712,"lon":15.0716784},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7738714,"lon":15.0698715},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7748514,"lon":15.0724958},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7738016,"lon":15.0702315},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T18:43:14.0572646Z","actor":"e8888b3e","eventType":"TaskCompleted","payload":{"clientUuid":"e8888b3e","taskId":"task_1","totalCompleted":1,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T18:43:18.4025675Z","actor":"e8888b3e","eventType":"TaskCompleted","payload":{"clientUuid":"e8888b3e","taskId":"task_2","totalCompleted":2,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T18:43:30.8853835Z","actor":"e8888b3e","eventType":"TaskCompleted","payload":{"clientUuid":"e8888b3e","taskId":"task_3","totalCompleted":3,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T18:44:03.9397506Z","actor":"e8888b3e","eventType":"TaskCompleted","payload":{"clientUuid":"e8888b3e","taskId":"task_0","totalCompleted":4,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T18:44:23.8051358Z","actor":"e8888b3e","eventType":"TaskCompleted","payload":{"clientUuid":"e8888b3e","taskId":"task_4","totalCompleted":5,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T18:45:01.8131947Z","actor":"a482eaf8","eventType":"TaskCompleted","payload":{"clientUuid":"a482eaf8","taskId":"task_6","totalCompleted":6,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T18:45:04.7302658Z","actor":"a482eaf8","eventType":"TaskCompleted","payload":{"clientUuid":"a482eaf8","taskId":"task_5","totalCompleted":7,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T18:45:20.839556Z","actor":"a482eaf8","eventType":"TaskCompleted","payload":{"clientUuid":"a482eaf8","taskId":"task_8","totalCompleted":8,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T18:45:41.9606212Z","actor":"a482eaf8","eventType":"TaskCompleted","payload":{"clientUuid":"a482eaf8","taskId":"task_9","totalCompleted":9,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T18:45:45.3766157Z","actor":"a482eaf8","eventType":"TaskCompleted","payload":{"clientUuid":"a482eaf8","taskId":"task_7","totalCompleted":10,"totalTasks":10},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T18:45:45.382468Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161echny tasky dokon\u010Deny","winners":["e8888b3e","a482eaf8"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T18:45:50.691307Z","actor":"e8888b3e","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T18:46:12.185276Z","actor":"b0172c9f","eventType":"PlayerJoined","payload":{"clientUuid":"b0172c9f","displayName":"Hr\u00E1\u010D382"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T18:46:44.0107863Z","actor":"0d634cf6","eventType":"PlayerJoined","payload":{"clientUuid":"0d634cf6","displayName":"Hr\u00E1\u010D27"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T18:46:46.4933453Z","actor":"e8888b3e","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T18:46:50.9391624Z","actor":"e8888b3e","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":248,"buildings":[[50.7745461,15.068435,50.7745442,15.0684319,50.7745427,15.0684282,50.7745418,15.0684242,50.7745414,15.0684199,50.7745416,15.0684156,50.7745424,15.0684115,50.7745436,15.0684076,50.7745325,15.0684021,50.7745114,15.0683361,50.7745265,15.0682651,50.7745687,15.0682323,50.7745794,15.0682386,50.7745799,15.0682342,50.7745809,15.06823,50.7745825,15.0682262,50.7745845,15.068223,50.7745868,15.0682205,50.7745894,15.0682187,50.7745922,15.0682178,50.7745902,15.0682115,50.7747555,15.0680808,50.7747568,15.0680849,50.7747999,15.0680509,50.7748009,15.068054,50.7748521,15.0680136,50.7748892,15.0681308,50.7748793,15.0681387,50.7749449,15.0683455,50.774878,15.0683975,50.7748685,15.0683671,50.7747463,15.0684635,50.7749105,15.0689829,50.7748218,15.0690522,50.7748401,15.06911,50.7748162,15.0691292,50.7748175,15.0691336,50.7748119,15.069138,50.7748105,15.0691336,50.7747865,15.0691526,50.7747888,15.0691596,50.774743,15.0691962,50.7747199,15.0691237,50.7747243,15.0691202,50.7747121,15.069082,50.7747093,15.0690841,50.7747062,15.0690744,50.774709,15.0690722,50.774697,15.0690349,50.7746942,15.0690371,50.774691,15.0690269,50.7746938,15.0690248,50.7746815,15.0689863,50.7746787,15.0689885,50.7746752,15.0689775,50.774678,15.0689753,50.7746594,15.0689171,50.7746476,15.0689265,50.7746447,15.0689406,50.7746371,15.0689371,50.7746403,15.0689213,50.7746221,15.0688631,50.7746152,15.0688687,50.7746114,15.0688568,50.7746184,15.0688513,50.7746011,15.0687979,50.7745942,15.0688035,50.7745905,15.0687918,50.7745975,15.0687862,50.7745802,15.0687324,50.7745732,15.068738,50.7745695,15.0687266,50.7745766,15.068721,50.7745579,15.0686635,50.7745476,15.068658,50.7745502,15.0686462,50.7745591,15.0686512,50.7745712,15.0686416,50.7745565,15.068596,50.7745853,15.068573,50.7745419,15.0684384,50.7745461,15.068435],[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7737609,15.0756722,50.7733592,15.0758264,50.7733283,15.0756269,50.7734115,15.075595,50.7737306,15.0754725,50.7737609,15.0756722],[50.7728164,15.0743732,50.7728485,15.0745747,50.7725941,15.0746753,50.7725605,15.0746887,50.77243,15.0747403,50.7723979,15.074539,50.7728164,15.0743732],[50.7725313,15.0749147,50.7726529,15.0756781,50.7727128,15.0756542,50.772748,15.0756402,50.7730037,15.0755384,50.7728821,15.0747749,50.7726287,15.0748818,50.7725942,15.0748893,50.7725313,15.0749147],[50.7730564,15.0742132,50.7730091,15.0742672,50.7729888,15.0743735,50.7729855,15.0744805,50.7730088,15.0745931,50.773075,15.0746995,50.7731352,15.0747229,50.7730564,15.0742132],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.7725942,15.0748893,50.7725605,15.0746887,50.7725941,15.0746753,50.7726287,15.0748818,50.7725942,15.0748893],[50.7730091,15.0742672,50.7729836,15.0743201,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7731352,15.0747229,50.773075,15.0746995,50.7730088,15.0745931,50.7729855,15.0744805,50.7729888,15.0743735,50.7730091,15.0742672],[50.7755317,15.0731221,50.7755497,15.0731082,50.7755709,15.0731759,50.7755529,15.0731898,50.7755682,15.0732392,50.7754771,15.07331,50.7754254,15.0731437,50.775516,15.0730717,50.7755317,15.0731221],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7723782,15.0704051,50.7724179,15.0703895,50.7724196,15.0703994,50.7724249,15.0703973,50.7724371,15.0704083,50.7724617,15.0705635,50.7724001,15.0705882,50.7723991,15.0705819,50.7723733,15.0705922,50.7723705,15.0705752,50.772345,15.0705852,50.7723394,15.0705505,50.7722933,15.0705688,50.772276,15.0704604,50.7722947,15.0704531,50.7722899,15.070425,50.7723176,15.0704137,50.7723156,15.0704012,50.7723743,15.0703783,50.7723782,15.0704051],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7718969,15.070342,50.7717392,15.0704035,50.771738,15.0703959,50.7717168,15.0703753,50.7717125,15.0703768,50.7717008,15.0703037,50.7717466,15.0702859,50.7717422,15.070258,50.7717129,15.0702695,50.7717107,15.0702632,50.7717123,15.070262,50.7716835,15.0701797,50.7716816,15.0701804,50.7716801,15.0701694,50.7716857,15.0701674,50.7716867,15.0701745,50.7717862,15.0700924,50.7718536,15.0700661,50.7718969,15.070342],[50.7720818,15.0698367,50.772105,15.0699079,50.772122,15.0698938,50.772152,15.0699865,50.7721535,15.0699909,50.7721365,15.0700047,50.772137,15.0700063,50.7720541,15.0700728,50.7720501,15.0700601,50.772013,15.0700895,50.7719676,15.0699485,50.7719655,15.06995,50.7719594,15.0699311,50.7719689,15.0699235,50.7719698,15.0699266,50.772043,15.0698679,50.772048,15.0698457,50.7720609,15.0698353,50.7720728,15.0698439,50.7720818,15.0698367],[50.7723238,15.0696814,50.7723396,15.0696894,50.772346,15.0697092,50.7723402,15.0697316,50.7723347,15.069736,50.7723767,15.0698618,50.7723655,15.069871,50.7723664,15.0698737,50.772361,15.0698996,50.7723311,15.0699239,50.7723126,15.0699145,50.7723091,15.0699037,50.7722507,15.0699512,50.7722036,15.0698068,50.7722091,15.0698024,50.7721972,15.0697668,50.7722286,15.0697414,50.7722269,15.0697363,50.7722739,15.0696982,50.77228,15.069717,50.7723238,15.0696814],[50.7726999,15.0698343,50.772729,15.0698615,50.7727152,15.0698967,50.7727324,15.0700044,50.7727307,15.0700051,50.7727353,15.0700342,50.7726769,15.0700574,50.7726809,15.0700825,50.772646,15.0700963,50.7726447,15.0700879,50.7726056,15.0701034,50.7726003,15.0700707,50.7725917,15.0700742,50.7725816,15.0700099,50.7725771,15.0700118,50.7725627,15.0699211,50.7725734,15.0699165,50.7725698,15.0698931,50.7726598,15.0698571,50.7726603,15.0698612,50.772695,15.0698471,50.7726999,15.0698343],[50.773142,15.069712,50.773132,15.069731,50.773141,15.069786,50.773051,15.069821,50.773027,15.069671,50.773074,15.069656,50.773066,15.069626,50.773114,15.069608,50.773125,15.069682,50.77314,15.069691,50.773142,15.069712],[50.7727178,15.0695693,50.7726282,15.0696411,50.7726029,15.0695624,50.7726109,15.069556,50.7725855,15.0694771,50.7726289,15.0694425,50.7726328,15.069455,50.7726712,15.0694243,50.7727178,15.0695693],[50.7730417,15.0690918,50.7730463,15.0691046,50.7730429,15.0691219,50.7730551,15.0691603,50.7730628,15.0691543,50.773084,15.0692213,50.7730762,15.069227,50.7730986,15.0693044,50.773047,15.0693451,50.7730505,15.069356,50.7730453,15.0693602,50.7730537,15.0693865,50.7730341,15.0694018,50.7730259,15.0693757,50.7730211,15.0693794,50.7730176,15.0693684,50.7729658,15.0694094,50.7729325,15.0693072,50.7729279,15.069311,50.7729036,15.0692366,50.7729082,15.0692328,50.7728972,15.069199,50.7729328,15.0691702,50.7729299,15.0691614,50.7729809,15.06912,50.7729837,15.0691289,50.7730122,15.0691058,50.7730157,15.0690888,50.773024,15.069082,50.7730247,15.069079,50.7730424,15.0690888,50.7730417,15.0690918],[50.7716696,15.0716616,50.7716897,15.0717914,50.771695,15.0717895,50.7717047,15.0718521,50.7716994,15.0718541,50.77172,15.0719862,50.7716258,15.0720225,50.7716232,15.0720236,50.7715726,15.071699,50.7715753,15.071698,50.7716696,15.0716616],[50.77188,15.0705055,50.7719168,15.0707362,50.771912,15.070738,50.7719144,15.0707531,50.7718739,15.0707692,50.7718715,15.0707541,50.7717996,15.0707827,50.7718002,15.0707866,50.7717919,15.0707898,50.7717846,15.0707436,50.771787,15.0707426,50.7717741,15.0706612,50.7717619,15.070666,50.7717533,15.0706117,50.7717636,15.0706076,50.7717609,15.0705907,50.7717972,15.0705759,50.7717916,15.0705415,50.77188,15.0705055],[50.7716314,15.0714165,50.7716475,15.0715199,50.7716527,15.0715178,50.7716625,15.0715804,50.7716572,15.0715825,50.7716696,15.0716616,50.7715753,15.071698,50.7715372,15.0714534,50.7716314,15.0714165],[50.7715727,15.0711217,50.7715782,15.0711196,50.7715878,15.071183,50.7715824,15.0711849,50.7716025,15.0713169,50.7715079,15.071353,50.7714576,15.0710256,50.7715525,15.0709895,50.7715727,15.0711217],[50.77172,15.0719862,50.771732,15.0720637,50.7717372,15.0720616,50.7717469,15.0721238,50.7717416,15.0721259,50.7717577,15.0722293,50.7716638,15.0722668,50.7716258,15.0720225,50.77172,15.0719862],[50.7717616,15.0723435,50.77178,15.072462,50.7717849,15.0724602,50.7717946,15.0725231,50.7717899,15.0725249,50.7718084,15.0726443,50.7717139,15.0726808,50.7716669,15.0723802,50.7717616,15.0723435],[50.7715212,15.0729113,50.7715246,15.07291,50.7715314,15.0729541,50.7715281,15.0729555,50.7715397,15.0730301,50.7715026,15.0730444,50.7715058,15.0730649,50.7714458,15.0730881,50.7714119,15.0728744,50.7715097,15.0728371,50.7715212,15.0729113],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.77241,15.0708842,50.7724269,15.0708773,50.7724429,15.0709792,50.7723992,15.0709974,50.7723897,15.0710103,50.772377,15.0710161,50.7723637,15.0710115,50.7723349,15.071023,50.7723325,15.0710092,50.7723288,15.0710107,50.7723213,15.0709645,50.7722997,15.0709733,50.7722898,15.0709444,50.7722859,15.0709202,50.7722862,15.0708896,50.77228,15.0708521,50.7723407,15.0708275,50.7723417,15.0708336,50.772398,15.0708107,50.77241,15.0708842],[50.7720045,15.0709227,50.772005,15.0709172,50.7720062,15.0709119,50.772008,15.0709071,50.7720104,15.070903,50.7720133,15.0708997,50.7720165,15.0708973,50.77202,15.0708961,50.7720235,15.0708959,50.772027,15.0708969,50.7720391,15.0709096,50.7720867,15.0708928,50.7720994,15.0709764,50.7721537,15.0709559,50.7721671,15.0710455,50.7719941,15.0711106,50.7719814,15.0711234,50.7719683,15.0711194,50.7719597,15.0710846,50.7719494,15.0710158,50.7719544,15.0710139,50.7719442,15.0709464,50.7720045,15.0709227],[50.7721196,15.0713084,50.7721221,15.0713249,50.7721299,15.0713219,50.7721291,15.0713171,50.7721603,15.0713049,50.772182,15.0714453,50.7720991,15.0714775,50.772103,15.0715023,50.7720736,15.0715137,50.7720696,15.0714889,50.7720121,15.0715115,50.7719909,15.071376,50.7721064,15.071331,50.7721039,15.0713145,50.7721196,15.0713084],[50.772273,15.0714368,50.772243,15.071448,50.7722392,15.0714229,50.772182,15.0714453,50.7721603,15.0713049,50.772166,15.0713027,50.7721668,15.0713076,50.7722997,15.0712559,50.7722989,15.071251,50.772322,15.071242,50.7723437,15.0713823,50.772269,15.0714113,50.772273,15.0714368],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7751637,15.0704631,50.7751873,15.0704442,50.7752075,15.0705078,50.7751834,15.0705268,50.7752149,15.0706272,50.7751841,15.0706516,50.7751864,15.0706585,50.7751582,15.0706809,50.7751444,15.0706376,50.7751096,15.0706651,50.7750901,15.0706039,50.7750846,15.0706083,50.7750809,15.0705965,50.7750661,15.0706082,50.7750462,15.0705455,50.775061,15.0705338,50.7750569,15.0705212,50.7750624,15.0705168,50.775043,15.0704557,50.7750718,15.0704331,50.7750711,15.070431,50.7751024,15.0704062,50.7751031,15.0704085,50.7751379,15.0703814,50.7751637,15.0704631],[50.7737764,15.0696257,50.7737483,15.0695369,50.7737403,15.0695433,50.7737122,15.0694542,50.7737043,15.0694607,50.7736754,15.0693688,50.7736791,15.0693655,50.7736681,15.0693307,50.7737285,15.0693317,50.7737608,15.0693064,50.7737573,15.0692958,50.7738589,15.0692155,50.7738904,15.0693154,50.7738824,15.0693216,50.7739105,15.0694104,50.7739025,15.0694166,50.7739306,15.0695055,50.7739226,15.0695117,50.7739502,15.0695993,50.7738119,15.0697078,50.7737843,15.0696195,50.7737764,15.0696257],[50.7735638,15.0690008,50.7737809,15.0688307,50.7738792,15.0691536,50.7738473,15.0691787,50.7738589,15.0692155,50.7737573,15.0692958,50.7737608,15.0693064,50.7737285,15.0693317,50.7736675,15.0693285,50.7735638,15.0690008],[50.7740925,15.0690877,50.7740919,15.0690789,50.7740925,15.0690611,50.7740955,15.069044,50.7741009,15.0690283,50.7741043,15.0690213,50.7741083,15.0690149,50.7741099,15.0690161,50.7741376,15.0689945,50.7741376,15.0689916,50.7741405,15.0689882,50.7741438,15.0689856,50.7741473,15.0689841,50.7741509,15.0689836,50.7741546,15.0689842,50.774158,15.0689858,50.7741613,15.0689885,50.7741642,15.068992,50.7741666,15.0689963,50.7741662,15.0689991,50.7741822,15.0690097,50.7741853,15.069015,50.77419,15.069025,50.7741989,15.0690304,50.7742022,15.0690137,50.7742129,15.0690051,50.7742247,15.0690108,50.7742299,15.0690282,50.774226,15.0690463,50.7742234,15.0690483,50.7742388,15.0690966,50.7742455,15.0690912,50.7742471,15.069096,50.77425,15.0690937,50.7742794,15.0691858,50.7742765,15.0691881,50.7742778,15.0691927,50.7742711,15.0691981,50.7742945,15.0692721,50.7742469,15.0693098,50.774253,15.0693291,50.7742123,15.0693608,50.7742064,15.0693419,50.7741579,15.0693803,50.7741342,15.0693074,50.7741317,15.0693093,50.7740993,15.0692097,50.7741017,15.0692078,50.7740769,15.0691302,50.7740993,15.069112,50.7740943,15.0690882,50.7740925,15.0690877],[50.774568,15.0701178,50.7745736,15.0701133,50.7746048,15.0702115,50.7745992,15.0702159,50.7746189,15.0702782,50.7745738,15.070314,50.7745779,15.0703267,50.7745727,15.0703308,50.7745751,15.0703383,50.7745525,15.0703562,50.7745502,15.0703486,50.7745449,15.0703528,50.7745409,15.0703401,50.7744982,15.0703739,50.7744976,15.0703719,50.7744686,15.0703949,50.7744433,15.0703172,50.7744772,15.07029,50.7744786,15.0702948,50.7744946,15.0702822,50.7744707,15.0702074,50.7744388,15.0702327,50.7744158,15.0701606,50.7745481,15.070055,50.774568,15.0701178],[50.774455,15.0696524,50.7744653,15.0696852,50.7744434,15.0697027,50.7744451,15.0697083,50.7744415,15.0697112,50.7744645,15.0697834,50.7744193,15.0698193,50.7744298,15.0698521,50.7744243,15.0698565,50.7744257,15.0698609,50.7743991,15.0698822,50.7743977,15.0698778,50.7743919,15.0698824,50.7743814,15.0698496,50.7743365,15.0698853,50.7742538,15.0696254,50.7742964,15.0695919,50.7742911,15.0695754,50.774334,15.0695415,50.7743393,15.0695579,50.774382,15.0695239,50.774405,15.0695964,50.7744086,15.0695935,50.7744103,15.0695992,50.7744323,15.0695819,50.7744425,15.0696138,50.774445,15.0696122,50.7744477,15.0696115,50.7744504,15.0696116,50.774453,15.0696125,50.7744555,15.0696142,50.7744577,15.0696166,50.7744596,15.0696196,50.7744611,15.0696232,50.7744621,15.0696271,50.7744625,15.0696313,50.7744625,15.0696356,50.7744619,15.0696397,50.7744609,15.0696437,50.7744593,15.0696473,50.7744573,15.0696502,50.774455,15.0696524],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7756,15.070556,50.775557,15.070589,50.77557,15.070632,50.775611,15.070598,50.7756,15.070556],[50.7755144,15.0714779,50.7755518,15.0715956,50.7755475,15.0715991,50.7755594,15.0716365,50.7755236,15.0716648,50.7755177,15.0716466,50.7754841,15.0716731,50.7754795,15.0716583,50.7754351,15.0716934,50.7754128,15.0716233,50.77541,15.0716256,50.7754073,15.071617,50.7753938,15.0716276,50.7753769,15.0715747,50.7753905,15.0715639,50.7753877,15.0715551,50.7753905,15.0715529,50.7753684,15.0714836,50.7754103,15.0714505,50.7754072,15.0714409,50.775441,15.0714141,50.7754441,15.0714238,50.7754838,15.0713932,50.7755115,15.0714802,50.7755144,15.0714779],[50.7749757,15.0717678,50.7750059,15.0717439,50.775011,15.0717599,50.7750529,15.0717266,50.7750519,15.0717247,50.7750805,15.071702,50.7750992,15.0717465,50.7751109,15.0717976,50.7751082,15.0717997,50.7751441,15.0719115,50.7751589,15.0719175,50.775167,15.0719426,50.7751609,15.0719659,50.7751726,15.0720025,50.7750366,15.0721106,50.7750186,15.0720543,50.7750045,15.0720655,50.7749826,15.0719972,50.7749755,15.0720029,50.7749566,15.0719918,50.7749475,15.0719631,50.7749536,15.0719327,50.7749604,15.0719274,50.7749093,15.0717672,50.7749621,15.0717252,50.7749757,15.0717678],[50.775303,15.0708614,50.7753184,15.0709103,50.7753202,15.070909,50.7753624,15.0710422,50.7753529,15.0710495,50.7753654,15.0710889,50.7753131,15.0711301,50.7753107,15.0711226,50.7752656,15.071158,50.7752449,15.0710924,50.7752362,15.071099,50.7752326,15.0710873,50.7752269,15.0710917,50.775217,15.0710861,50.7752073,15.0710557,50.7752106,15.0710399,50.7752162,15.0710354,50.7752124,15.0710236,50.775221,15.071017,50.7752003,15.0709515,50.7752454,15.070916,50.7752431,15.0709085,50.775303,15.0708614],[50.7752185,15.0721634,50.7752173,15.0721699,50.7752377,15.0722341,50.7752458,15.0722278,50.7752745,15.0723183,50.7752722,15.0723202,50.7752824,15.0723534,50.7752432,15.0723848,50.775244,15.0723872,50.775166,15.0724485,50.7751263,15.0723232,50.7751352,15.0723161,50.7751014,15.0722114,50.7751542,15.0721689,50.7751574,15.0721791,50.7751886,15.0721541,50.7751895,15.0721481,50.7752005,15.0721393,50.775213,15.0721462,50.7752185,15.0721634],[50.7753236,15.072471,50.7753318,15.0724972,50.7753303,15.0724983,50.775344,15.0725419,50.7753489,15.072538,50.7753534,15.0725525,50.7753715,15.0725383,50.7753897,15.0725948,50.7753714,15.0726089,50.7753762,15.0726237,50.7753711,15.0726277,50.7753867,15.0726751,50.7752966,15.0727459,50.7752578,15.0726231,50.7752331,15.0725457,50.7752581,15.0725259,50.7752549,15.0725159,50.7753138,15.0724655,50.7753236,15.072471],[50.7754147,15.0727618,50.7754356,15.0728252,50.7754517,15.0728119,50.775474,15.0728795,50.7754576,15.0728929,50.7754817,15.0729652,50.7753703,15.0730554,50.7753603,15.073049,50.7753585,15.0730433,50.7753281,15.0730694,50.7753066,15.0730632,50.7752957,15.0730318,50.7753049,15.0730012,50.7752933,15.0729659,50.7753299,15.072936,50.7753148,15.0728901,50.7752913,15.0729095,50.7752681,15.0728393,50.7754049,15.0727269,50.7754161,15.0727608,50.7754147,15.0727618],[50.7758491,15.0725117,50.7759179,15.0727317,50.7758831,15.0727588,50.7758874,15.0727725,50.7758528,15.0727995,50.7758488,15.0727867,50.7758012,15.0728239,50.7758001,15.0728205,50.7757819,15.0728346,50.7757632,15.0727737,50.7757821,15.0727588,50.7757446,15.0726397,50.7757373,15.0726453,50.7757152,15.0725743,50.775768,15.0725333,50.7757642,15.0725208,50.7758156,15.0724807,50.7758299,15.0725266,50.7758491,15.0725117],[50.7757385,15.07206,50.7757616,15.0721328,50.7757632,15.0721316,50.7757897,15.0722151,50.7757422,15.0722534,50.7757469,15.0722678,50.7757104,15.0722973,50.7757057,15.0722826,50.7756555,15.072323,50.7756326,15.0722507,50.7756025,15.0722726,50.775573,15.0721801,50.7756022,15.0721554,50.7755793,15.0720833,50.7756277,15.0720443,50.7756266,15.0720408,50.7756313,15.0720192,50.7756559,15.0719993,50.7756699,15.072006,50.775671,15.0720094,50.7757135,15.0719752,50.7757401,15.0720588,50.7757385,15.07206],[50.7716205,15.0735307,50.7716231,15.0735323,50.7716243,15.0735362,50.7716245,15.0735549,50.7716256,15.073555,50.7716295,15.0735572,50.7716312,15.0735631,50.7716337,15.0737085,50.7716322,15.0737147,50.7716284,15.0737173,50.7715513,15.0737205,50.7715475,15.0737183,50.7715458,15.0737124,50.7715451,15.0736726,50.7715356,15.0736731,50.7715318,15.0736708,50.7715302,15.0736648,50.7715293,15.073616,50.7715307,15.0736098,50.7715345,15.0736072,50.771544,15.0736067,50.7715433,15.073567,50.7715448,15.0735608,50.7715486,15.0735582,50.7715771,15.0735569,50.7715766,15.0735326,50.7716205,15.0735307],[50.7717049,15.0740075,50.7717387,15.0742209,50.7716368,15.0742603,50.7716231,15.0741713,50.7716164,15.0741655,50.7716134,15.0741461,50.7716174,15.0741355,50.7716038,15.0740466,50.7717049,15.0740075],[50.7747953,15.0734128,50.7749794,15.0734047,50.7749886,15.0739546,50.7748051,15.0739635,50.774805,15.0739561,50.7747954,15.0734185,50.7747953,15.0734128],[50.7756061,15.0736962,50.775624,15.0736888,50.7756265,15.0737042,50.7756439,15.0737121,50.7756486,15.0737412,50.7756359,15.0737616,50.7756382,15.0737763,50.7755857,15.0737997,50.7755912,15.07383,50.7755649,15.0738409,50.7755676,15.0738569,50.7755396,15.0738682,50.775537,15.0738526,50.775514,15.0738621,50.7755186,15.0738892,50.7754923,15.0738998,50.775475,15.073798,50.7754816,15.0737954,50.7754741,15.07375,50.7754838,15.0737452,50.7754647,15.0736345,50.7755874,15.0735825,50.7756061,15.0736962],[50.7750127,15.0741195,50.7750892,15.0741161,50.7750896,15.0741643,50.7751156,15.0741644,50.7751158,15.0742121,50.7751348,15.0742119,50.7751352,15.074264,50.775116,15.0742642,50.7751162,15.074331,50.7750807,15.0743318,50.7750811,15.0743552,50.7749926,15.0743583,50.7749916,15.0741455,50.7750131,15.0741446,50.7750127,15.0741195],[50.7754584,15.0741179,50.7754585,15.0741884,50.7754788,15.0741883,50.775479,15.0742421,50.7754587,15.0742422,50.7754589,15.0743284,50.7754073,15.0743283,50.7753995,15.0743413,50.7753807,15.0743414,50.7753727,15.0743284,50.7753207,15.0743291,50.7753205,15.0742767,50.7753227,15.0742767,50.7753222,15.0741179,50.7754584,15.0741179],[50.7724145,15.0739846,50.7723917,15.0739931,50.7723939,15.0740069,50.7723162,15.0740362,50.7723103,15.0739967,50.7723059,15.0739983,50.772305,15.0739927,50.7723012,15.0739934,50.7722973,15.0739931,50.7722936,15.0739918,50.7722901,15.0739895,50.7722868,15.0739863,50.772284,15.0739822,50.7722816,15.0739775,50.7722798,15.0739721,50.7722786,15.0739664,50.7722781,15.0739604,50.7722782,15.0739544,50.7722789,15.0739485,50.7722803,15.0739428,50.7722823,15.0739377,50.7722848,15.0739331,50.7722877,15.0739293,50.7722911,15.0739263,50.7722947,15.0739243,50.7722937,15.0739182,50.7723984,15.0738786,50.7724145,15.0739846],[50.7714366,15.0722058,50.7714318,15.0721574,50.7714912,15.0721426,50.771496,15.0721916,50.7714366,15.0722058],[50.7716475,15.0731502,50.7716417,15.0731036,50.7716995,15.073085,50.7717056,15.0731318,50.7716475,15.0731502],[50.771427,15.0721105,50.7714223,15.072063,50.7714819,15.072048,50.7714867,15.0720956,50.771427,15.0721105],[50.771991,15.073823,50.771874,15.073869,50.771865,15.073804,50.771851,15.073795,50.771846,15.073764,50.771855,15.073748,50.771845,15.073684,50.771961,15.073639,50.771991,15.073823],[50.7718387,15.072858,50.7718477,15.0729148,50.7718628,15.0729094,50.7718816,15.0730345,50.7718661,15.0730402,50.7718669,15.0730458,50.771816,15.0730647,50.7718181,15.073078,50.7717915,15.073088,50.7717899,15.073077,50.7717665,15.0730857,50.7717519,15.0729862,50.7717292,15.072994,50.7717152,15.0728992,50.7717449,15.0728885,50.7717455,15.0728925,50.7717936,15.0728747,50.7717936,15.0728685,50.7717943,15.0728623,50.7717956,15.0728565,50.7717977,15.0728511,50.7718003,15.0728464,50.7718033,15.0728426,50.7718068,15.0728396,50.7718106,15.0728377,50.7718145,15.0728368,50.7718184,15.072837,50.7718223,15.0728383,50.7718259,15.0728407,50.7718293,15.0728441,50.7718321,15.0728483,50.7718345,15.0728533,50.7718362,15.0728589,50.7718387,15.072858],[50.771653,15.0731932,50.7717099,15.073176,50.7717102,15.0731779,50.7717114,15.0731775,50.7717056,15.0731318,50.7716475,15.0731502,50.771653,15.0731932],[50.7714318,15.0721574,50.771427,15.0721105,50.7714867,15.0720956,50.7714912,15.0721426,50.7714318,15.0721574],[50.7714223,15.072063,50.7714175,15.0720145,50.7714771,15.0719998,50.7714819,15.072048,50.7714223,15.072063],[50.77456,15.0753452,50.7745574,15.075182,50.774801,15.075172,50.7748045,15.0753354,50.77456,15.0753452],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7751209,15.0744752,50.7751478,15.0744737,50.7751503,15.0745609,50.7751226,15.0745621,50.7751209,15.0744752],[50.7721267,15.0722461,50.7721301,15.0722682,50.7722245,15.0722323,50.7722511,15.0724065,50.7721956,15.0724277,50.7722001,15.0724579,50.7721538,15.0724756,50.7721492,15.0724452,50.7720467,15.0724842,50.77202,15.0723101,50.7720821,15.0722865,50.7720787,15.0722645,50.7721267,15.0722461],[50.7723625,15.0735165,50.7723669,15.073546,50.772422,15.0735251,50.7724486,15.0736994,50.772353,15.0737357,50.7723564,15.0737577,50.7723084,15.0737759,50.772305,15.0737538,50.7722439,15.0737771,50.7722173,15.073603,50.7723198,15.073564,50.7723153,15.0735343,50.7723625,15.0735165],[50.7720487,15.0718492,50.7720888,15.0718336,50.772094,15.0718652,50.7721081,15.0718597,50.7721123,15.0718876,50.7721144,15.0718868,50.7721282,15.0719749,50.7720491,15.0720053,50.7720577,15.0720612,50.7719949,15.0720857,50.7719839,15.0720149,50.7719743,15.0720185,50.7719635,15.0719491,50.7719731,15.0719452,50.7719647,15.071882,50.7720011,15.0718676,50.7719989,15.0718523,50.7720465,15.0718342,50.7720487,15.0718492],[50.772063,15.074283,50.771966,15.074318,50.771936,15.074119,50.772033,15.074081,50.772063,15.074283],[50.772139,15.074775,50.772041,15.074813,50.771993,15.074494,50.77209,15.074456,50.772139,15.074775],[50.7727943,15.0738769,50.7727972,15.0738757,50.7728201,15.074021,50.7727237,15.0740596,50.7727243,15.0740631,50.7726964,15.0740743,50.7726958,15.0740708,50.772613,15.0741039,50.7725897,15.073958,50.7727009,15.0739139,50.7726802,15.0737836,50.7727735,15.0737472,50.7727943,15.0738769],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7723747,15.0732161,50.7723909,15.07321,50.7724,15.0732692,50.7723838,15.0732753,50.7724035,15.0734045,50.7722874,15.0734485,50.7722413,15.0731473,50.7723575,15.0731031,50.7723747,15.0732161],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7721531,15.0725692,50.7722692,15.0725252,50.772289,15.0726545,50.7723051,15.0726484,50.7723142,15.0727077,50.772298,15.0727139,50.7723156,15.0728242,50.7721991,15.0728707,50.7721531,15.0725692],[50.7723565,15.0729843,50.7723403,15.0729904,50.7723575,15.0731031,50.7722413,15.0731473,50.7721991,15.0728707,50.7723156,15.0728242,50.7723325,15.0729394,50.7723487,15.0729333,50.7723565,15.0729843],[50.7719259,15.0733898,50.7719361,15.0734576,50.7719335,15.0734586,50.7719372,15.0734834,50.7719073,15.0734946,50.7719036,15.0734698,50.7718392,15.073494,50.7718229,15.0733859,50.771799,15.0733947,50.7717888,15.0733272,50.7718127,15.0733182,50.771811,15.0733065,50.7718212,15.0733028,50.7718273,15.0732874,50.7718486,15.0732793,50.7718585,15.0732887,50.7719079,15.0732703,50.771918,15.0733378,50.7719208,15.0733367,50.7719287,15.0733887,50.7719259,15.0733898],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7748,15.0708412,50.7748129,15.0708309,50.7748322,15.070891,50.7748193,15.0709012,50.7748465,15.0709854,50.7748031,15.0710199,50.7748085,15.0710366,50.7747751,15.0710641,50.7747694,15.0710469,50.774706,15.0710978,50.7746529,15.0709347,50.7746768,15.0709154,50.7746561,15.0708517,50.774773,15.0707572,50.7748,15.0708412],[50.7751757,15.069743,50.7751839,15.0697366,50.7751654,15.0696776,50.7752004,15.0696503,50.7751982,15.0696435,50.7752493,15.0696041,50.7752513,15.0696105,50.7752848,15.0695843,50.7753064,15.0696531,50.7753108,15.0696496,50.7753404,15.0697437,50.775303,15.0697728,50.7753063,15.0697832,50.7752112,15.0698558,50.7751757,15.069743],[50.7749457,15.0698497,50.7749612,15.0698372,50.7749808,15.0698217,50.7750269,15.0699657,50.7750048,15.0699833,50.7750345,15.0700761,50.7749444,15.0701478,50.7749133,15.0700514,50.7749097,15.0700544,50.7748863,15.0699812,50.7748899,15.0699783,50.7748765,15.0699369,50.7748647,15.069931,50.7748729,15.0698913,50.7748852,15.0698978,50.7748909,15.0698934,50.7748799,15.0698582,50.7749345,15.0698148,50.7749357,15.0698185,50.7749457,15.0698497],[50.7745883,15.0707723,50.7746161,15.0707489,50.7746448,15.070835,50.7746171,15.070858,50.7745883,15.0707723],[50.7745883,15.0707723,50.7746171,15.070858,50.7745908,15.0708798,50.7745621,15.0707942,50.7745883,15.0707723],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7749764,15.0715602,50.7749714,15.0715642,50.7749681,15.0715539,50.7749454,15.0715718,50.7749487,15.0715823,50.7749443,15.0715857,50.7749312,15.0715445,50.7749057,15.0715647,50.7749046,15.0715611,50.7748882,15.0715741,50.7748785,15.0715691,50.7748538,15.0714922,50.7748322,15.0715096,50.7747881,15.0713725,50.7748326,15.0713366,50.7748309,15.0713316,50.774835,15.0713282,50.7748294,15.0713112,50.7748632,15.0712845,50.7748688,15.0713022,50.7748915,15.0712844,50.7748753,15.0712326,50.7749127,15.0712045,50.774929,15.071255,50.7749332,15.0712517,50.7749394,15.071271,50.7749536,15.0712781,50.7749616,15.0713035,50.7749566,15.0713258,50.7750073,15.0714842,50.7749633,15.0715191,50.7749764,15.0715602],[50.7750917,15.0740684,50.7750446,15.0740687,50.7750446,15.0740646,50.7750446,15.0740255,50.7750914,15.0740253,50.7750916,15.0740637,50.7750917,15.0740684],[50.7752282,15.0698968,50.7752685,15.0698625,50.7752711,15.0698604,50.7752867,15.0699091,50.7752413,15.0699506,50.775225,15.0698993,50.7752282,15.0698968],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7722268,15.0702958,50.7721707,15.070313,50.772161,15.0702337,50.7722152,15.0702171,50.7722268,15.0702958],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7728652,15.0699861,50.7728732,15.0700323,50.7728193,15.0700556,50.7728103,15.0700095,50.7728652,15.0699861],[50.771992,15.070692,50.7720069,15.0707766,50.7719748,15.0707914,50.7719598,15.070706,50.771992,15.070692],[50.7758015,15.0722067,50.7758574,15.0721629,50.7758802,15.0722351,50.7758243,15.0722789,50.7758015,15.0722067],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7722901,15.0721052,50.7722624,15.0721148,50.7722552,15.072063,50.7722828,15.0720532,50.7722901,15.0721052],[50.7730944,15.0699634,50.7731272,15.0699618,50.7731289,15.0700443,50.7730725,15.0700473,50.773071,15.0699726,50.7730944,15.0699634],[50.7724605,15.0706468,50.7724735,15.0707292,50.7724148,15.070752,50.7724154,15.0707563,50.7724114,15.0707578,50.7723978,15.0706712,50.7724605,15.0706468],[50.7721698,15.0699582,50.7721542,15.0699706,50.7721581,15.0699811,50.772152,15.0699865,50.772122,15.0698938,50.7721531,15.0698664,50.7721612,15.0699006,50.7721698,15.0699582],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7728585,15.0746374,50.7727988,15.0746605,50.7727919,15.0746157,50.7728514,15.0745931,50.7728585,15.0746374],[50.7752578,15.0726231,50.7752262,15.0726483,50.7752015,15.0725718,50.7752331,15.0725457,50.7752578,15.0726231],[50.7737,15.0752819,50.7736634,15.0752963,50.773663,15.0752941,50.7736442,15.0753015,50.7736416,15.0752843,50.7735996,15.0753043,50.7735987,15.0753075,50.7735985,15.075311,50.7736003,15.0753246,50.7736,15.0753277,50.7735992,15.0753306,50.773598,15.0753331,50.7735963,15.0753349,50.7735945,15.075336,50.7734819,15.0753758,50.7734802,15.0753737,50.7734789,15.075371,50.7734781,15.0753679,50.7734771,15.0753608,50.7734764,15.075358,50.7734752,15.0753555,50.7734737,15.0753535,50.7734719,15.0753522,50.77347,15.0753517,50.773468,15.075352,50.7734319,15.0753659,50.7734345,15.0753831,50.7734157,15.0753903,50.7734161,15.0753928,50.7733818,15.0754061,50.7733791,15.0753883,50.7732956,15.0754181,50.7731776,15.074665,50.7732038,15.0746549,50.7731964,15.0746074,50.7731802,15.0746137,50.7731624,15.0744996,50.7731784,15.0744933,50.7731707,15.0744438,50.773228,15.0744221,50.7732604,15.0746333,50.7735766,15.0745127,50.7737,15.0752819],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7723274,15.0741104,50.7723162,15.0740362,50.7723939,15.0740069,50.7723948,15.0740127,50.7723877,15.0740153,50.7723914,15.0740399,50.7724625,15.0740131,50.7724722,15.0740768,50.7724569,15.0740826,50.7724654,15.0741383,50.7724262,15.074153,50.7724281,15.0741682,50.7724275,15.0741708,50.7724263,15.0741728,50.7724247,15.074174,50.7723821,15.074188,50.7723808,15.0741861,50.7723801,15.0741835,50.7723782,15.0741712,50.7723345,15.0741875,50.772334,15.074184,50.7723302,15.0741847,50.7723264,15.0741844,50.7723226,15.074183,50.7723191,15.0741807,50.7723158,15.0741774,50.772313,15.0741733,50.7723106,15.0741686,50.7723088,15.0741632,50.7723076,15.0741575,50.7723071,15.0741515,50.7723072,15.0741455,50.7723079,15.0741395,50.7723093,15.0741339,50.7723112,15.0741287,50.7723137,15.0741241,50.7723166,15.0741202,50.77232,15.0741172,50.7723236,15.0741151,50.7723231,15.074112,50.7723274,15.0741104],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849],[50.7717099,15.073176,50.7717102,15.0731779,50.7717251,15.0732757,50.7716644,15.0732981,50.7716494,15.0731989,50.7716524,15.0731977,50.7716518,15.0731936,50.771653,15.0731932,50.7717099,15.073176]],"buildingTypes":["civic","yes","university","university","university","university","university","university","university","university","residential","yes","yes","residential","residential","civic","residential","residential","residential","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","house","residential","residential","residential","residential","residential","yes","yes","civic","yes","residential","residential","garage","house","house","house","yes","residential","yes","residential","residential","residential","residential","residential","residential","house","residential","yes","residential","residential","yes","residential","garage","garage","garage","yes","residential","garage","garage","garage","civic","yes","garage","residential","residential","residential","yes","yes","residential","residential","residential","residential","residential","residential","residential","residential","university","university","yes","residential","yes","garage","garage","garage","residential","yes","yes","yes","yes","garage","garage","garage","garage","garage","garage","industrial","garage","garage","garage","yes","yes","yes","university","university","residential","residential","residential","residential","garage"],"pathways":[[50.7715459,15.0700709,50.771656,15.0699832,50.7723923,15.0693964,50.772695,15.0691552,50.7730954,15.068837,50.7733498,15.0686254,50.7734048,15.06858,50.7740134,15.0680991,50.7740728,15.0680574,50.7740879,15.0680453],[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7753344,15.071967,50.7753517,15.0719544,50.7753804,15.0719323,50.7762383,15.0712693],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.773066,15.0759402,50.7730339,15.0757391,50.7730324,15.0757292,50.7730252,15.0756838,50.7730037,15.0755384,50.7728821,15.0747749,50.7728585,15.0746374,50.7728514,15.0745931,50.7728485,15.0745747,50.7728164,15.0743732,50.7727895,15.0742394,50.7728744,15.0742161,50.7729429,15.0741972,50.772955,15.0743264,50.7730317,15.0750219,50.7730407,15.0751852,50.7732017,15.0751294,50.7732287,15.0751189,50.7733416,15.0758426,50.7731038,15.0759268,50.773066,15.0759402],[50.7711332,15.0714264,50.7711324,15.0711608,50.7711535,15.0710184,50.771202,15.0709222,50.7715808,15.0707311,50.7716437,15.0707084],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7723923,15.0693964,50.7723561,15.069224,50.7720111,15.0675782],[50.7747787,15.0675679,50.7743396,15.0679369,50.7741922,15.0680561,50.7743099,15.0684176,50.7743908,15.068679,50.7746381,15.0694786,50.7747499,15.0698458],[50.7749559,15.0692244,50.7750732,15.0695777],[50.7747202,15.0694297,50.7746381,15.0694786],[50.7748725,15.0678604,50.7749106,15.0679816,50.7750387,15.0683655,50.7752927,15.0691174,50.7751065,15.0690978,50.7749559,15.0692244,50.7747202,15.0694297,50.7744933,15.0685831],[50.7737778,15.0698608,50.773693,15.0697697,50.7736943,15.0697386,50.7736886,15.0697049,50.773571,15.0693442,50.773531,15.069168,50.7734981,15.0689719,50.7734977,15.0689399,50.7735128,15.0689055,50.7736997,15.0687658],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7726178,15.077,50.7724916,15.0762062,50.7724345,15.0758337,50.772214,15.0743908,50.7718091,15.0717795,50.7717093,15.0711425,50.7716437,15.0707084,50.7715836,15.0703009,50.7715459,15.0700709],[50.7755564,15.0691771,50.7754958,15.0692273,50.7750732,15.0695777,50.7747499,15.0698458,50.7746948,15.0698915,50.7746772,15.0699061],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7742114,15.0687462,50.7741565,15.0687932],[50.7741565,15.0687932,50.7738817,15.0690129],[50.773693,15.0697697,50.7736867,15.069781,50.7736788,15.0697919,50.7736682,15.0697985,50.7736366,15.069801,50.7736109,15.0697856,50.7735708,15.0697393,50.7735531,15.0696834,50.773415,15.0690544,50.773355,15.0687429,50.7733545,15.0687308,50.7733498,15.0686254],[50.7740766,15.0699582,50.7739846,15.0696453,50.7738817,15.0690129,50.7737793,15.0687387,50.7737347,15.068768,50.7736997,15.0687658],[50.7712652,15.0728422,50.7713284,15.0727126,50.771394,15.0723563,50.7714013,15.0722316,50.7714013,15.0721689,50.7713909,15.072077,50.7713548,15.0719023,50.7713079,15.0717865,50.771231,15.0716655,50.7711332,15.0714264],[50.7758983,15.0742748,50.7758355,15.0738881,50.7758016,15.0736783,50.7757357,15.0732563,50.7757167,15.0731652,50.7756939,15.0730866,50.7756372,15.0729012,50.7756321,15.0728845,50.7755318,15.0725562,50.7753344,15.071967,50.77503,15.0710052,50.7746772,15.0699061,50.7746685,15.0698764,50.7743147,15.0687414,50.7742925,15.0686768,50.7740879,15.0680453],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731154,15.0760135,50.7731038,15.0759268,50.7728744,15.0742161,50.7728635,15.0741347],[50.7722811,15.0743641,50.7724322,15.0754314,50.7725526,15.076188],[50.7723561,15.069224,50.7722533,15.0693217,50.7716141,15.0698396,50.7716066,15.0698438,50.7715884,15.069846,50.771572,15.0698333,50.7714947,15.0693786,50.7714275,15.0690023,50.771343,15.068509,50.7712399,15.0679127,50.7711974,15.067676,50.7710865,15.0670589,50.7710358,15.0667769,50.770959,15.0663327,50.770955,15.0662857,50.7709543,15.0659666,50.7709543,15.0658664,50.7709543,15.0657804],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7740151,15.0746626,50.7740449,15.0745473,50.7740399,15.0744534],[50.7731305,15.072217,50.7731933,15.0726196],[50.7730641,15.0740595,50.7731029,15.074318,50.7733563,15.0759168],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7714013,15.0722316,50.7713583,15.0722828,50.7713092,15.0723414,50.7712733,15.0723577,50.7712316,15.0723563,50.7711779,15.0723353],[50.7746685,15.0698764,50.7746566,15.0698851,50.7744586,15.0700098,50.7742746,15.0700717,50.7741844,15.0700707],[50.7741844,15.0700707,50.7740766,15.0699582,50.7739733,15.0699259,50.7739407,15.0699098,50.7738653,15.0698945,50.7737778,15.0698608],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7735708,15.0697393,50.7734654,15.0699291],[50.7737131,15.0699957,50.773699,15.0700054],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7749533,15.0728495,50.7749634,15.0730713,50.7749421,15.0732859,50.774974,15.073339,50.7750239,15.0733565,50.7750812,15.0733641,50.7751475,15.0733291,50.7753573,15.0731141,50.7756188,15.0728955,50.7756321,15.0728845],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7758355,15.0738881,50.7758193,15.0738958,50.7754356,15.0740837,50.7751453,15.0740909],[50.7759349,15.0741106,50.7759016,15.074033,50.7757962,15.0733728,50.775742,15.0730658,50.7755817,15.0725688,50.775464,15.0721745],[50.775464,15.0721745,50.7753804,15.0719323,50.7752722,15.0716105,50.7751503,15.0712082,50.7750135,15.0707882,50.7748604,15.0703256,50.774761,15.0699766,50.7747499,15.0698458],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7726474,15.0690017,50.773097,15.0686402,50.7733024,15.0684733],[50.7725447,15.0686034,50.7725506,15.0686381,50.7726474,15.0690017],[50.772695,15.0691552,50.7726474,15.0690017],[50.7723561,15.069224,50.7723988,15.0691799,50.7724206,15.0691778,50.7726474,15.0690017],[50.771643,15.0702755,50.7716341,15.0701891,50.7716346,15.0701449,50.7716439,15.0701084,50.7716616,15.070079,50.7716829,15.0700649,50.7723505,15.0695308,50.7723664,15.0695252,50.7723806,15.0695351,50.772412,15.0695239,50.7724508,15.0695112,50.772449,15.0694747,50.7724552,15.069448,50.7724667,15.069434,50.7730681,15.0689617,50.7730819,15.0689659,50.7731122,15.0689484,50.7731413,15.0689273,50.7731449,15.0688943,50.7731471,15.0688739,50.773156,15.0688606,50.7732918,15.0687624,50.7733002,15.0687603,50.7733078,15.0687631,50.7733158,15.0687624,50.7733545,15.0687308,50.773385,15.0687076,50.7733912,15.0686859,50.7733965,15.0686704,50.7737303,15.0684072,50.7740094,15.0682037,50.7740383,15.0681862],[50.7715808,15.0707311,50.7715125,15.070326],[50.7724188,15.0743193,50.7724601,15.0743824,50.772512,15.0744154,50.7725462,15.0744147,50.7727832,15.0743235],[50.771643,15.0702755,50.7716807,15.0705127,50.7718715,15.0717545,50.7720176,15.0727114,50.7721849,15.0737642,50.7722811,15.0743641],[50.7723217,15.0755726,50.7720127,15.0735143,50.771734,15.0717429,50.7715808,15.0707311],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,3,3,0,3,3,4,0,3,3,3,3,0,0,0,0,4,4,5,3,4,4,1,0,4,0,3,3,0,4,0,0,0,0,0,0,4,3,0,4,0,0,0,4,0,0,0,0,0,4,0,4,4,0,0,4,0,0,3,0,4,4,0,0,0,4,0,0,4,3],"areas":[[50.7749496,15.0675477,50.7748309,15.0676228,50.7749293,15.0679231,50.7748682,15.0680009,50.7749751,15.068347,50.7748546,15.068449,50.775048,15.0690684,50.7748733,15.0692107,50.7747495,15.0692188,50.7746341,15.0690041,50.7745154,15.0686582,50.7743543,15.0684329,50.7747698,15.0697579,50.7754941,15.0691624,50.7749496,15.0675477],[50.7739252,15.0690579,50.7737329,15.0684417,50.7740458,15.0682042,50.7742114,15.0687462,50.7742458,15.0688487,50.7739515,15.0690739,50.7739252,15.0690579],[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0,0,0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77357498000001,15.068754180000003,4,50.77380036521739,15.074966565217391,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.77338352,15.069208979999999,4,50.77320282,15.06863664,4,50.77347004,15.0691,4,50.77368628,15.06951072,4,50.7737409,15.0690773,0,50.7719988,15.0719208,0,50.7728491,15.0752552,0,50.773681,15.0692301,0,50.7735053,15.0755027,7,50.7726458,15.0751113,1,50.7731232,15.075444,6,50.7731309,15.0755035,6,50.7731735,15.0755976,6,50.7732104,15.0755042,6,50.7740297,15.0744936,6,50.7745187,15.0701967,7,50.773738,15.0696539,7,50.7746238,15.0716847,6,50.7748514,15.0724958,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.7741494,15.0703058,6,50.7741443,15.0702437,7,50.7748682,15.0725437,7,50.774702,15.0718182,6,50.77303,15.07395,7,50.7730244,15.0744971,0,50.7738714,15.0698715,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":248},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T18:46:50.954821Z","actor":"e8888b3e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"e8888b3e","displayName":"Hr\u00E1\u010D229","playersReady":1,"totalPlayers":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":43,"serverSeq":43,"timestamp":"2026-01-27T18:46:50.962326Z","actor":"7614bb77","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"7614bb77","displayName":"Hr\u00E1\u010D423","playersReady":2,"totalPlayers":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":44,"serverSeq":44,"timestamp":"2026-01-27T18:46:50.9746764Z","actor":"a482eaf8","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"a482eaf8","displayName":"Hr\u00E1\u010D755","playersReady":3,"totalPlayers":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":45,"serverSeq":45,"timestamp":"2026-01-27T18:46:50.9823998Z","actor":"b0172c9f","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"b0172c9f","displayName":"Hr\u00E1\u010D382","playersReady":4,"totalPlayers":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":46,"serverSeq":46,"timestamp":"2026-01-27T18:46:50.9923481Z","actor":"0d634cf6","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"0d634cf6","displayName":"Hr\u00E1\u010D27","playersReady":5,"totalPlayers":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":47,"serverSeq":47,"timestamp":"2026-01-27T18:46:51.0021665Z","actor":"e8888b3e","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":48,"serverSeq":48,"timestamp":"2026-01-27T18:46:51.0057416Z","actor":"e8888b3e","eventType":"RoleAssigned","payload":{"clientUuid":"e8888b3e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.7739942,"lon":15.0706985},"type":"Instant"},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.774201,"lon":15.0712028},"type":"Instant"},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7738016,"lon":15.0702315},"type":"Instant"},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.77347004,"lon":15.0691},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":49,"serverSeq":49,"timestamp":"2026-01-27T18:46:51.009503Z","actor":"7614bb77","eventType":"RoleAssigned","payload":{"clientUuid":"7614bb77","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.774702,"lon":15.0718182},"type":"Instant"},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7739942,"lon":15.0706985},"type":"Instant"},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7738714,"lon":15.0698715},"type":"Instant"},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7738016,"lon":15.0702315},"type":"Instant"},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.774201,"lon":15.0712028},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":50,"serverSeq":50,"timestamp":"2026-01-27T18:46:51.0129378Z","actor":"a482eaf8","eventType":"RoleAssigned","payload":{"clientUuid":"a482eaf8","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":51,"serverSeq":51,"timestamp":"2026-01-27T18:46:51.0162107Z","actor":"b0172c9f","eventType":"RoleAssigned","payload":{"clientUuid":"b0172c9f","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.7748514,"lon":15.0724958},"type":"Instant"},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7738714,"lon":15.0698715},"type":"Instant"},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.77358,"lon":15.07339},"type":"Instant"},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.774201,"lon":15.0712028},"type":"Instant"},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.77347004,"lon":15.0691},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":52,"serverSeq":52,"timestamp":"2026-01-27T18:46:51.0197922Z","actor":"0d634cf6","eventType":"RoleAssigned","payload":{"clientUuid":"0d634cf6","role":"Crew","tasks":[{"taskId":"task_15","name":"Opravit antenu","location":{"lat":50.773738,"lon":15.0696539},"type":"Instant"},{"taskId":"task_16","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7738714,"lon":15.0698715},"type":"Instant"},{"taskId":"task_17","name":"Otestovat reaktor","location":{"lat":50.7748514,"lon":15.0724958},"type":"Instant"},{"taskId":"task_18","name":"Opravit kabel","location":{"lat":50.77303,"lon":15.07395},"type":"Instant"},{"taskId":"task_19","name":"Zkalibrovat senzor","location":{"lat":50.7741888,"lon":15.0705734},"type":"Instant"}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":53,"serverSeq":53,"timestamp":"2026-01-27T18:47:13.3122039Z","actor":"a482eaf8","eventType":"PlayerKilled","payload":{"victimId":"7614bb77","killerId":"a482eaf8","bodyId":"fb6b98d5","location":{"lat":50.773961334752514,"lon":15.072495366957721}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":54,"serverSeq":54,"timestamp":"2026-01-27T18:47:26.5414364Z","actor":"b0172c9f","eventType":"BodyReported","payload":{"reporterId":"b0172c9f","bodyId":"fb6b98d5","victimId":"7614bb77"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":55,"serverSeq":55,"timestamp":"2026-01-27T18:47:26.5516292Z","actor":"b0172c9f","eventType":"MeetingStarted","payload":{"meetingId":"a76a6705","type":"BodyReport","meetingLocation":{"lat":50.773961334752514,"lon":15.072495366957721},"arrivalDeadline":"2026-01-27T18:47:49.5513002Z","discussionEndTime":"2026-01-27T18:48:01.5513002Z","votingEndTime":"2026-01-27T18:48:31.5513002Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":56,"serverSeq":56,"timestamp":"2026-01-27T18:47:26.5624572Z","actor":"b0172c9f","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"b0172c9f","meetingId":"a76a6705"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":57,"serverSeq":57,"timestamp":"2026-01-27T18:47:30.0870316Z","actor":"a482eaf8","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"a482eaf8","meetingId":"a76a6705"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":58,"serverSeq":58,"timestamp":"2026-01-27T18:47:34.132295Z","actor":"0d634cf6","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"0d634cf6","meetingId":"a76a6705"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":59,"serverSeq":59,"timestamp":"2026-01-27T18:48:06.9927405Z","actor":"0d634cf6","eventType":"PlayerVoted","payload":{"voterId":"0d634cf6","targetId":"e8888b3e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":60,"serverSeq":60,"timestamp":"2026-01-27T18:48:09.4714026Z","actor":"b0172c9f","eventType":"PlayerVoted","payload":{"voterId":"b0172c9f","targetId":"e8888b3e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":61,"serverSeq":61,"timestamp":"2026-01-27T18:48:31.5677638Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"e8888b3e":2,"__SKIP__":0},"ejectedPlayerId":"e8888b3e","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":62,"serverSeq":62,"timestamp":"2026-01-27T18:48:31.581346Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"e8888b3e","role":"Crew"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":63,"serverSeq":63,"timestamp":"2026-01-27T18:49:33.7590935Z","actor":"a482eaf8","eventType":"SabotageStarted","payload":{"sabotageId":"41d978d5","type":"CommsBlackout","initiatorId":"a482eaf8","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.7732175,"lon":15.0696447},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":64,"serverSeq":64,"timestamp":"2026-01-27T18:50:03.7864576Z","actor":"system","eventType":"SabotageExpired","payload":{"sabotageId":"41d978d5","type":"CommsBlackout","repairerIds":[]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":65,"serverSeq":65,"timestamp":"2026-01-27T18:51:24.1832458Z","actor":"a482eaf8","eventType":"PlayerLeft","payload":{"clientUuid":"a482eaf8","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":66,"serverSeq":66,"timestamp":"2026-01-27T18:51:25.0072411Z","actor":"0d634cf6","eventType":"PlayerLeft","payload":{"clientUuid":"0d634cf6","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":67,"serverSeq":67,"timestamp":"2026-01-27T18:51:27.8136763Z","actor":"b0172c9f","eventType":"PlayerLeft","payload":{"clientUuid":"b0172c9f","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":68,"serverSeq":68,"timestamp":"2026-01-27T18:51:28.4757906Z","actor":"7614bb77","eventType":"PlayerLeft","payload":{"clientUuid":"7614bb77","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":69,"serverSeq":69,"timestamp":"2026-01-27T18:51:30.4496008Z","actor":"e8888b3e","eventType":"PlayerLeft","payload":{"clientUuid":"e8888b3e","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/c3a5d2027a4b43c2/wal_20260127024405.ndjson b/data/lobbies/c3a5d2027a4b43c2/wal_20260127024405.ndjson new file mode 100644 index 0000000..6ffb849 --- /dev/null +++ b/data/lobbies/c3a5d2027a4b43c2/wal_20260127024405.ndjson @@ -0,0 +1,4 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T02:44:05.4039046Z","actor":"66c64fff","eventType":"PlayerJoined","payload":{"clientUuid":"66c64fff","displayName":"Player"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T02:44:30.9748286Z","actor":"5aeecce0","eventType":"PlayerJoined","payload":{"clientUuid":"5aeecce0","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T02:46:13.8363598Z","actor":"5aeecce0","eventType":"PlayerLeft","payload":{"clientUuid":"5aeecce0","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T02:46:15.4783231Z","actor":"66c64fff","eventType":"PlayerLeft","payload":{"clientUuid":"66c64fff","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/c8cbad198ea848de/wal_20260127011417.ndjson b/data/lobbies/c8cbad198ea848de/wal_20260127011417.ndjson new file mode 100644 index 0000000..81b0e2a --- /dev/null +++ b/data/lobbies/c8cbad198ea848de/wal_20260127011417.ndjson @@ -0,0 +1,33 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T01:14:17.7399577Z","actor":"923db641","eventType":"PlayerJoined","payload":{"clientUuid":"923db641","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T01:14:17.7921858Z","actor":"af06c718","eventType":"PlayerJoined","payload":{"clientUuid":"af06c718","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T01:14:18.1000564Z","actor":"a92250af","eventType":"PlayerJoined","payload":{"clientUuid":"a92250af","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T01:14:18.41117Z","actor":"cc453ec6","eventType":"PlayerJoined","payload":{"clientUuid":"cc453ec6","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T01:14:18.7204082Z","actor":"e0c476e4","eventType":"PlayerJoined","payload":{"clientUuid":"e0c476e4","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T01:14:19.0333718Z","actor":"addd9152","eventType":"PlayerJoined","payload":{"clientUuid":"addd9152","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T01:14:19.3334245Z","actor":"923db641","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T01:14:19.3364656Z","actor":"923db641","eventType":"RoleAssigned","payload":{"clientUuid":"923db641","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T01:14:19.3382724Z","actor":"af06c718","eventType":"RoleAssigned","payload":{"clientUuid":"af06c718","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.999909299171364,"lon":13.999663659465337},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.997098810685806,"lon":13.999406811365684},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99834353093483,"lon":14.00044678336512},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T01:14:19.3399391Z","actor":"a92250af","eventType":"RoleAssigned","payload":{"clientUuid":"a92250af","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.999909299171364,"lon":13.999663659465337},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.997098810685806,"lon":13.999406811365684},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99834353093483,"lon":14.00044678336512},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T01:14:19.3416118Z","actor":"cc453ec6","eventType":"RoleAssigned","payload":{"clientUuid":"cc453ec6","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.999909299171364,"lon":13.999663659465337},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.997098810685806,"lon":13.999406811365684},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99834353093483,"lon":14.00044678336512},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T01:14:19.3431563Z","actor":"e0c476e4","eventType":"RoleAssigned","payload":{"clientUuid":"e0c476e4","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.999909299171364,"lon":13.999663659465337},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.997098810685806,"lon":13.999406811365684},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99834353093483,"lon":14.00044678336512},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T01:14:19.3448335Z","actor":"addd9152","eventType":"RoleAssigned","payload":{"clientUuid":"addd9152","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.999909299171364,"lon":13.999663659465337},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.997098810685806,"lon":13.999406811365684},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.99834353093483,"lon":14.00044678336512},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T01:14:21.8446181Z","actor":"af06c718","eventType":"TaskCompleted","payload":{"clientUuid":"af06c718","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T01:14:23.187226Z","actor":"923db641","eventType":"PlayerKilled","payload":{"victimId":"af06c718","killerId":"923db641","bodyId":"86bfa87c","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T01:14:23.8015915Z","actor":"a92250af","eventType":"BodyReported","payload":{"reporterId":"a92250af","bodyId":"86bfa87c","victimId":"af06c718"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T01:14:23.8034335Z","actor":"a92250af","eventType":"MeetingStarted","payload":{"meetingId":"fc2b87a8","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T01:14:27.3034216Z","votingEndTime":"2026-01-27T01:14:39.8034216Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T01:14:29.866662Z","actor":"e0c476e4","eventType":"PlayerVoted","payload":{"voterId":"e0c476e4","targetId":"923db641"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T01:14:30.1757525Z","actor":"addd9152","eventType":"PlayerVoted","payload":{"voterId":"addd9152","targetId":"923db641"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T01:14:39.8040133Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"923db641":2,"__SKIP__":0},"ejectedPlayerId":"923db641","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T01:14:39.8630297Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"923db641","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T01:14:39.8641299Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["af06c718","a92250af","cc453ec6","e0c476e4","addd9152"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T01:14:39.9633142Z","actor":"923db641","eventType":"PlayerLeft","payload":{"clientUuid":"923db641","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T01:14:39.9643343Z","actor":"af06c718","eventType":"HostChanged","payload":{"newHostId":"af06c718","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T01:14:39.965061Z","actor":"af06c718","eventType":"PlayerLeft","payload":{"clientUuid":"af06c718","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T01:14:39.9658106Z","actor":"a92250af","eventType":"HostChanged","payload":{"newHostId":"a92250af","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T01:14:39.9665796Z","actor":"a92250af","eventType":"PlayerLeft","payload":{"clientUuid":"a92250af","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T01:14:39.9673184Z","actor":"cc453ec6","eventType":"HostChanged","payload":{"newHostId":"cc453ec6","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T01:14:39.9680349Z","actor":"cc453ec6","eventType":"PlayerLeft","payload":{"clientUuid":"cc453ec6","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T01:14:39.9688504Z","actor":"e0c476e4","eventType":"HostChanged","payload":{"newHostId":"e0c476e4","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T01:14:39.9695832Z","actor":"e0c476e4","eventType":"PlayerLeft","payload":{"clientUuid":"e0c476e4","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T01:14:39.9702983Z","actor":"addd9152","eventType":"HostChanged","payload":{"newHostId":"addd9152","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T01:14:39.9710218Z","actor":"addd9152","eventType":"PlayerLeft","payload":{"clientUuid":"addd9152","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/cc97a28d77fc4f28/wal_20260127120053.ndjson b/data/lobbies/cc97a28d77fc4f28/wal_20260127120053.ndjson new file mode 100644 index 0000000..3e44495 --- /dev/null +++ b/data/lobbies/cc97a28d77fc4f28/wal_20260127120053.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:00:53.2477554Z","actor":"f66dc55a","eventType":"PlayerJoined","payload":{"clientUuid":"f66dc55a","displayName":"Consist1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:00:53.349452Z","actor":"f66dc55a","eventType":"PlayerLeft","payload":{"clientUuid":"f66dc55a","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/ce407ba2a282475a/snapshot_23.json b/data/lobbies/ce407ba2a282475a/snapshot_23.json new file mode 100644 index 0000000..a74bbec --- /dev/null +++ b/data/lobbies/ce407ba2a282475a/snapshot_23.json @@ -0,0 +1,565 @@ +{ + "lobbyId": "ce407ba2a282475a", + "lastEventId": 23, + "timestamp": "2026-01-27T16:01:32.7927329Z", + "checksum": "094b8a24f68546bf3d88658d7bb01dc7621ae1087f5aa2b0f865e08008e2fdde", + "phase": "Meeting", + "players": [ + { + "clientUuid": "481bcb45", + "displayName": "Hr\u00E1\u010D402", + "position": { + "lat": 50.77312730016415, + "lon": 15.072042156480837 + }, + "role": "Crew", + "state": "Dead", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:56:20.9156815Z", + "lastPositionUpdate": "2026-01-27T15:58:53.9908881Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 7125, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7738727, + "lon": 15.0724211 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Progress", + "durationMs": 5835, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7732806, + "lon": 15.0725075 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7731719, + "lon": 15.0719627 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": true, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "154a8e55", + "displayName": "Hr\u00E1\u010D949", + "position": { + "lat": 50.773134818907785, + "lon": 15.07198899309649 + }, + "role": "Impostor", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:56:32.367088Z", + "lastPositionUpdate": "2026-01-27T16:00:53.790974Z", + "lastKillTime": "2026-01-27T16:00:02.4620235Z", + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "b8c1c6dc", + "displayName": "Hr\u00E1\u010D590", + "position": { + "lat": 50.77358763220549, + "lon": 15.072158011186659 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:56:44.2222077Z", + "lastPositionUpdate": "2026-01-27T16:00:53.7269354Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": "2026-01-27T16:00:53.7404921Z", + "emergencyMeetingsUsed": 1, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 5791, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.773851, + "lon": 15.073075 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7731933, + "lon": 15.0726196 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.7737495, + "lon": 15.0715106 + }, + "type": "Progress", + "durationMs": 7350, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + }, + { + "clientUuid": "104d74ed", + "displayName": "Hr\u00E1\u010D381", + "position": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "role": "Crew", + "state": "Alive", + "cheatStatus": "Ok", + "cheatScore": 0, + "connectedAt": "2026-01-27T15:56:56.1455962Z", + "lastPositionUpdate": "2026-01-27T16:00:53.8024205Z", + "lastKillTime": null, + "lastEmergencyMeetingTime": null, + "emergencyMeetingsUsed": 0, + "completedTaskIds": [], + "tasks": [ + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 6764, + "steps": 1 + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7734516, + "lon": 15.0723155 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7741669, + "lon": 15.0718846 + }, + "type": "Progress", + "durationMs": 7958, + "steps": 1 + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.773646, + "lon": 15.0719148 + }, + "type": "Progress", + "durationMs": 8269, + "steps": 1 + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Progress", + "durationMs": 7902, + "steps": 1 + } + ], + "currentTaskId": null, + "taskStartTime": null, + "lastTaskProgressTime": null, + "isOwner": false, + "isReady": false, + "lastEventId": 0, + "ping": 0, + "positionHistory": [ + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ], + "bodies": [], + "tasks": [ + { + "taskId": "task_0", + "name": "Opravit kabel", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 7125, + "steps": 1 + }, + { + "taskId": "task_1", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.7738727, + "lon": 15.0724211 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_2", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Progress", + "durationMs": 5835, + "steps": 1 + }, + { + "taskId": "task_3", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7732806, + "lon": 15.0725075 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 2 + }, + { + "taskId": "task_4", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.7731719, + "lon": 15.0719627 + }, + "type": "MultiStep", + "durationMs": 0, + "steps": 4 + }, + { + "taskId": "task_5", + "name": "Nastavit kompas", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 5791, + "steps": 1 + }, + { + "taskId": "task_6", + "name": "Opravit antenu", + "location": { + "lat": 50.773851, + "lon": 15.073075 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_7", + "name": "Zkontrolovat z\u00E1soby", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_8", + "name": "Otestovat reaktor", + "location": { + "lat": 50.7731933, + "lon": 15.0726196 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_9", + "name": "Opravit kabel", + "location": { + "lat": 50.7737495, + "lon": 15.0715106 + }, + "type": "Progress", + "durationMs": 7350, + "steps": 1 + }, + { + "taskId": "task_10", + "name": "Zkalibrovat senzor", + "location": { + "lat": 50.77358, + "lon": 15.07339 + }, + "type": "Progress", + "durationMs": 6764, + "steps": 1 + }, + { + "taskId": "task_11", + "name": "St\u00E1hnout data", + "location": { + "lat": 50.7734516, + "lon": 15.0723155 + }, + "type": "Instant", + "durationMs": 0, + "steps": 1 + }, + { + "taskId": "task_12", + "name": "Nab\u00EDt baterii", + "location": { + "lat": 50.7741669, + "lon": 15.0718846 + }, + "type": "Progress", + "durationMs": 7958, + "steps": 1 + }, + { + "taskId": "task_13", + "name": "Vy\u010Distit filtr", + "location": { + "lat": 50.773646, + "lon": 15.0719148 + }, + "type": "Progress", + "durationMs": 8269, + "steps": 1 + }, + { + "taskId": "task_14", + "name": "Nastavit kompas", + "location": { + "lat": 50.7739981, + "lon": 15.0714832 + }, + "type": "Progress", + "durationMs": 7902, + "steps": 1 + } + ], + "currentMeeting": { + "meetingId": "8897a8fb", + "type": "Emergency", + "reportedBodyId": null, + "callerId": "b8c1c6dc", + "meetingLocation": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "startTime": "2026-01-27T16:00:53.7788042Z", + "arrivalDeadline": "2026-01-27T16:01:16.7788042Z", + "discussionEndTime": "2026-01-27T16:01:28.7788042Z", + "votingEndTime": "2026-01-27T16:01:58.7788042Z", + "arrivedPlayers": [ + "104d74ed" + ], + "votes": { + "104d74ed": "154a8e55" + }, + "lastVoteChangeTime": "2026-01-27T16:01:32.7852692Z" + }, + "playAreaCenter": { + "lat": 50.7735892, + "lon": 15.0721653 + }, + "playAreaRadius": 100, + "impostorCount": 1, + "tiePolicy": "NoEject" +} \ No newline at end of file diff --git a/data/lobbies/ce407ba2a282475a/wal_20260127155620.ndjson b/data/lobbies/ce407ba2a282475a/wal_20260127155620.ndjson new file mode 100644 index 0000000..23221b6 --- /dev/null +++ b/data/lobbies/ce407ba2a282475a/wal_20260127155620.ndjson @@ -0,0 +1,41 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T15:56:20.9248337Z","actor":"481bcb45","eventType":"PlayerJoined","payload":{"clientUuid":"481bcb45","displayName":"Hr\u00E1\u010D402"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T15:56:32.4010566Z","actor":"154a8e55","eventType":"PlayerJoined","payload":{"clientUuid":"154a8e55","displayName":"Hr\u00E1\u010D949"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T15:56:44.2376021Z","actor":"b8c1c6dc","eventType":"PlayerJoined","payload":{"clientUuid":"b8c1c6dc","displayName":"Hr\u00E1\u010D590"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T15:56:56.1536555Z","actor":"104d74ed","eventType":"PlayerJoined","payload":{"clientUuid":"104d74ed","displayName":"Hr\u00E1\u010D381"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T15:56:59.6133271Z","actor":"481bcb45","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T15:57:04.3486821Z","actor":"481bcb45","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":100,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":100},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T15:57:04.3857513Z","actor":"b8c1c6dc","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"b8c1c6dc","displayName":"Hr\u00E1\u010D590","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T15:57:04.3959657Z","actor":"154a8e55","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"154a8e55","displayName":"Hr\u00E1\u010D949","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T15:57:04.4032608Z","actor":"104d74ed","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"104d74ed","displayName":"Hr\u00E1\u010D381","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T15:57:04.4094083Z","actor":"481bcb45","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"481bcb45","displayName":"Hr\u00E1\u010D402","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T15:57:04.4216738Z","actor":"481bcb45","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T15:57:04.4263771Z","actor":"481bcb45","eventType":"RoleAssigned","payload":{"clientUuid":"481bcb45","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":7125,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7738727,"lon":15.0724211},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7739981,"lon":15.0714832},"type":"Progress","durationMs":5835,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7732806,"lon":15.0725075},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7731719,"lon":15.0719627},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T15:57:04.439518Z","actor":"154a8e55","eventType":"RoleAssigned","payload":{"clientUuid":"154a8e55","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T15:57:04.4427566Z","actor":"b8c1c6dc","eventType":"RoleAssigned","payload":{"clientUuid":"b8c1c6dc","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":5791,"steps":1},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.773851,"lon":15.073075},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.7739981,"lon":15.0714832},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7731933,"lon":15.0726196},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7737495,"lon":15.0715106},"type":"Progress","durationMs":7350,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T15:57:04.4458875Z","actor":"104d74ed","eventType":"RoleAssigned","payload":{"clientUuid":"104d74ed","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":6764,"steps":1},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7734516,"lon":15.0723155},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.7741669,"lon":15.0718846},"type":"Progress","durationMs":7958,"steps":1},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.773646,"lon":15.0719148},"type":"Progress","durationMs":8269,"steps":1},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.7739981,"lon":15.0714832},"type":"Progress","durationMs":7902,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T15:58:53.5867724Z","actor":"154a8e55","eventType":"PlayerKilled","payload":{"victimId":"481bcb45","killerId":"154a8e55","bodyId":"148f22c9","location":{"lat":50.77312730016415,"lon":15.072042156480837}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T15:58:57.3879463Z","actor":"154a8e55","eventType":"BodyReported","payload":{"reporterId":"154a8e55","bodyId":"148f22c9","victimId":"481bcb45"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T15:58:57.408733Z","actor":"154a8e55","eventType":"MeetingStarted","payload":{"meetingId":"67dd627f","type":"BodyReport","meetingLocation":{"lat":50.77312730016415,"lon":15.072042156480837},"arrivalDeadline":"2026-01-27T15:59:20.4081682Z","discussionEndTime":"2026-01-27T15:59:32.4081682Z","votingEndTime":"2026-01-27T16:00:02.4081682Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T16:00:02.4421034Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T16:00:53.7701Z","actor":"b8c1c6dc","eventType":"EmergencyMeetingCalled","payload":{"callerId":"b8c1c6dc"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T16:00:53.7788381Z","actor":"b8c1c6dc","eventType":"MeetingStarted","payload":{"meetingId":"8897a8fb","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T16:01:16.7788042Z","discussionEndTime":"2026-01-27T16:01:28.7788042Z","votingEndTime":"2026-01-27T16:01:58.7788042Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T16:00:53.803045Z","actor":"104d74ed","eventType":"PlayerArrivedAtMeeting","payload":{"clientUuid":"104d74ed","meetingId":"8897a8fb"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T16:01:32.785544Z","actor":"104d74ed","eventType":"PlayerVoted","payload":{"voterId":"104d74ed","targetId":"154a8e55"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T16:01:58.8058102Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"154a8e55":1,"__SKIP__":0},"ejectedPlayerId":"154a8e55","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T16:01:58.8943237Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"154a8e55","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T16:01:58.9023538Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["481bcb45","b8c1c6dc","104d74ed"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T16:02:02.829196Z","actor":"481bcb45","eventType":"ReturnedToLobby","payload":{"message":"Hra byla restartov\u00E1na"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T16:02:28.6062439Z","actor":"481bcb45","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T16:02:33.0070784Z","actor":"481bcb45","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":100,"buildings":[[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["university","university","yes","yes","residential","residential","residential","garage","house","house","house","university","university","yes","yes","garage","residential","residential","residential"],"pathways":[[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7731305,15.072217,50.7731933,15.0726196],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,0,3,3,4,4,4,4,0,0,0,0,0,0,3,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77288765454546,15.07320488181818,4,50.774201,15.0712028,6,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":100},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T16:02:33.0284161Z","actor":"481bcb45","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"481bcb45","displayName":"Hr\u00E1\u010D402","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T16:02:33.0384419Z","actor":"154a8e55","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"154a8e55","displayName":"Hr\u00E1\u010D949","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T16:02:33.0455581Z","actor":"b8c1c6dc","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"b8c1c6dc","displayName":"Hr\u00E1\u010D590","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T16:02:33.0496248Z","actor":"104d74ed","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"104d74ed","displayName":"Hr\u00E1\u010D381","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T16:02:33.0537079Z","actor":"481bcb45","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T16:02:33.0570509Z","actor":"481bcb45","eventType":"RoleAssigned","payload":{"clientUuid":"481bcb45","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7735484,"lon":15.0720508},"type":"Progress","durationMs":8724,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7739135,"lon":15.0723859},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7739981,"lon":15.0714832},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739109,"lon":15.0728539},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T16:02:33.0601557Z","actor":"154a8e55","eventType":"RoleAssigned","payload":{"clientUuid":"154a8e55","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T16:02:33.063265Z","actor":"b8c1c6dc","eventType":"RoleAssigned","payload":{"clientUuid":"b8c1c6dc","role":"Crew","tasks":[{"taskId":"task_5","name":"Nastavit kompas","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_6","name":"Opravit antenu","location":{"lat":50.7734516,"lon":15.0723155},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_7","name":"Zkontrolovat z\u00E1soby","location":{"lat":50.773851,"lon":15.073075},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_8","name":"Otestovat reaktor","location":{"lat":50.7729586,"lon":15.0713674},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_9","name":"Opravit kabel","location":{"lat":50.7738781,"lon":15.0714985},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T16:02:33.0666668Z","actor":"104d74ed","eventType":"RoleAssigned","payload":{"clientUuid":"104d74ed","role":"Crew","tasks":[{"taskId":"task_10","name":"Zkalibrovat senzor","location":{"lat":50.77358,"lon":15.07339},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_11","name":"St\u00E1hnout data","location":{"lat":50.7728733,"lon":15.0713562},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_12","name":"Nab\u00EDt baterii","location":{"lat":50.7739456,"lon":15.0716314},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_13","name":"Vy\u010Distit filtr","location":{"lat":50.7734516,"lon":15.0723155},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_14","name":"Nastavit kompas","location":{"lat":50.7732806,"lon":15.0725075},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T16:02:42.6202623Z","actor":"481bcb45","eventType":"EmergencyMeetingCalled","payload":{"callerId":"481bcb45"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T16:02:42.6260249Z","actor":"481bcb45","eventType":"MeetingStarted","payload":{"meetingId":"8939b127","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T16:03:05.6260015Z","discussionEndTime":"2026-01-27T16:03:17.6260015Z","votingEndTime":"2026-01-27T16:03:47.6260015Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T16:03:47.6313253Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/ce78c648b9bb4a85/wal_20260127115004.ndjson b/data/lobbies/ce78c648b9bb4a85/wal_20260127115004.ndjson new file mode 100644 index 0000000..e0f5de9 --- /dev/null +++ b/data/lobbies/ce78c648b9bb4a85/wal_20260127115004.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T11:50:04.362949Z","actor":"da48899a","eventType":"PlayerJoined","payload":{"clientUuid":"da48899a","displayName":"Consist2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T11:50:05.450138Z","actor":"da48899a","eventType":"PlayerLeft","payload":{"clientUuid":"da48899a","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/d26407d10bcb4c6a/wal_20260127142749.ndjson b/data/lobbies/d26407d10bcb4c6a/wal_20260127142749.ndjson new file mode 100644 index 0000000..bc4e0eb --- /dev/null +++ b/data/lobbies/d26407d10bcb4c6a/wal_20260127142749.ndjson @@ -0,0 +1,21 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T14:27:49.3309308Z","actor":"9211285e","eventType":"PlayerJoined","payload":{"clientUuid":"9211285e","displayName":"Hr\u00E1\u010D670"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T14:27:59.7948929Z","actor":"fa43a380","eventType":"PlayerJoined","payload":{"clientUuid":"fa43a380","displayName":"Hr\u00E1\u010D875"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T14:28:05.5347045Z","actor":"bce801a1","eventType":"PlayerJoined","payload":{"clientUuid":"bce801a1","displayName":"Hr\u00E1\u010D2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T14:28:19.3352885Z","actor":"ac8da3b2","eventType":"PlayerJoined","payload":{"clientUuid":"ac8da3b2","displayName":"Hr\u00E1\u010D158"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T14:28:20.9984114Z","actor":"9211285e","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T14:28:25.3181248Z","actor":"9211285e","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":140,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","yes","yes","residential","residential","residential","residential","residential","residential","garage","house","house","house","yes","residential","residential","residential","university","university","garage","yes","yes","garage","garage","yes","university","residential","residential","residential"],"pathways":[[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7731305,15.072217,50.7731933,15.0726196],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,0,3,3,4,3,3,4,4,4,0,0,0,0,3,0,0,0,0,0,0,4,0,4,0,0,3,4,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.7746238,15.0716847,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.774702,15.0718182,6,50.77303,15.07395,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":140},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T14:28:25.3246388Z","actor":"9211285e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"9211285e","displayName":"Hr\u00E1\u010D670","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T14:28:25.3275493Z","actor":"bce801a1","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"bce801a1","displayName":"Hr\u00E1\u010D2","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T14:28:25.3298309Z","actor":"fa43a380","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"fa43a380","displayName":"Hr\u00E1\u010D875","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T14:28:25.3361822Z","actor":"ac8da3b2","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ac8da3b2","displayName":"Hr\u00E1\u010D158","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T14:28:25.3393492Z","actor":"9211285e","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T14:28:25.3424564Z","actor":"9211285e","eventType":"RoleAssigned","payload":{"clientUuid":"9211285e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7739131,"lon":15.072922},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7737495,"lon":15.0715106},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7725274,"lon":15.0715061},"type":"Progress","durationMs":5276,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739852,"lon":15.072001},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T14:28:25.3446672Z","actor":"fa43a380","eventType":"RoleAssigned","payload":{"clientUuid":"fa43a380","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7739131,"lon":15.072922},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7737495,"lon":15.0715106},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7725274,"lon":15.0715061},"type":"Progress","durationMs":5276,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739852,"lon":15.072001},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T14:28:25.3467684Z","actor":"bce801a1","eventType":"RoleAssigned","payload":{"clientUuid":"bce801a1","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T14:28:25.3485884Z","actor":"ac8da3b2","eventType":"RoleAssigned","payload":{"clientUuid":"ac8da3b2","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7739131,"lon":15.072922},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7737495,"lon":15.0715106},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.7725274,"lon":15.0715061},"type":"Progress","durationMs":5276,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7739852,"lon":15.072001},"type":"MultiStep","durationMs":0,"steps":3}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T14:29:49.9008634Z","actor":"bce801a1","eventType":"PlayerKilled","payload":{"victimId":"fa43a380","killerId":"bce801a1","bodyId":"abb16701","location":{"lat":50.7735892,"lon":15.0721653}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T14:30:08.2960624Z","actor":"9211285e","eventType":"EmergencyMeetingCalled","payload":{"callerId":"9211285e"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T14:30:08.2990519Z","actor":"9211285e","eventType":"MeetingStarted","payload":{"meetingId":"6da9a4b3","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T14:30:11.7990401Z","discussionEndTime":"2026-01-27T14:30:14.2990401Z","votingEndTime":"2026-01-27T14:30:24.2990401Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T14:30:24.3146044Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T14:31:01.9900429Z","actor":"fa43a380","eventType":"PlayerLeft","payload":{"clientUuid":"fa43a380","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T14:31:03.1473745Z","actor":"bce801a1","eventType":"PlayerLeft","payload":{"clientUuid":"bce801a1","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/d3548c8c6ea34535/wal_20260127114957.ndjson b/data/lobbies/d3548c8c6ea34535/wal_20260127114957.ndjson new file mode 100644 index 0000000..942ad80 --- /dev/null +++ b/data/lobbies/d3548c8c6ea34535/wal_20260127114957.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T11:49:57.6142708Z","actor":"bff49d22","eventType":"PlayerJoined","payload":{"clientUuid":"bff49d22","displayName":"Consist0"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T11:49:58.7017734Z","actor":"bff49d22","eventType":"PlayerLeft","payload":{"clientUuid":"bff49d22","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/d4f4d9fdc8844e68/wal_20260127120020.ndjson b/data/lobbies/d4f4d9fdc8844e68/wal_20260127120020.ndjson new file mode 100644 index 0000000..55e9e5c --- /dev/null +++ b/data/lobbies/d4f4d9fdc8844e68/wal_20260127120020.ndjson @@ -0,0 +1,4 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:00:20.4076774Z","actor":"5abef3cb","eventType":"PlayerJoined","payload":{"clientUuid":"5abef3cb","displayName":"TaskOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:00:22.578509Z","actor":"bb0e107e","eventType":"PlayerJoined","payload":{"clientUuid":"bb0e107e","displayName":"TaskPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:00:28.0023935Z","actor":"5abef3cb","eventType":"PlayerLeft","payload":{"clientUuid":"5abef3cb","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:00:28.0104098Z","actor":"bb0e107e","eventType":"HostChanged","payload":{"newHostId":"bb0e107e","previousHostId":"none"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/dbc38a71a2a24e3c/wal_20260127014427.ndjson b/data/lobbies/dbc38a71a2a24e3c/wal_20260127014427.ndjson new file mode 100644 index 0000000..f5991b4 --- /dev/null +++ b/data/lobbies/dbc38a71a2a24e3c/wal_20260127014427.ndjson @@ -0,0 +1,40 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T01:44:27.4762857Z","actor":"5ab52b1f","eventType":"PlayerJoined","payload":{"clientUuid":"5ab52b1f","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T01:44:27.5060888Z","actor":"b99921c6","eventType":"PlayerJoined","payload":{"clientUuid":"b99921c6","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T01:44:27.8136889Z","actor":"413db0c8","eventType":"PlayerJoined","payload":{"clientUuid":"413db0c8","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T01:44:28.1057603Z","actor":"706bd85c","eventType":"PlayerJoined","payload":{"clientUuid":"706bd85c","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T01:44:28.4145639Z","actor":"9f77c27e","eventType":"PlayerJoined","payload":{"clientUuid":"9f77c27e","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T01:44:28.7263906Z","actor":"99c5ce9c","eventType":"PlayerJoined","payload":{"clientUuid":"99c5ce9c","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T01:44:29.0338194Z","actor":"5ab52b1f","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T01:44:29.0372995Z","actor":"5ab52b1f","eventType":"RoleAssigned","payload":{"clientUuid":"5ab52b1f","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0001693307112,"lon":14.003542332210957},"type":"Progress","durationMs":6531,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.999896468620435,"lon":13.995028398544697},"type":"Progress","durationMs":6308,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00069843627007,"lon":14.000732909033093},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T01:44:29.0447185Z","actor":"b99921c6","eventType":"RoleAssigned","payload":{"clientUuid":"b99921c6","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0001693307112,"lon":14.003542332210957},"type":"Progress","durationMs":6531,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.999896468620435,"lon":13.995028398544697},"type":"Progress","durationMs":6308,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00069843627007,"lon":14.000732909033093},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T01:44:29.0466697Z","actor":"413db0c8","eventType":"RoleAssigned","payload":{"clientUuid":"413db0c8","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0001693307112,"lon":14.003542332210957},"type":"Progress","durationMs":6531,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.999896468620435,"lon":13.995028398544697},"type":"Progress","durationMs":6308,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00069843627007,"lon":14.000732909033093},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T01:44:29.0483845Z","actor":"706bd85c","eventType":"RoleAssigned","payload":{"clientUuid":"706bd85c","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T01:44:29.0500429Z","actor":"9f77c27e","eventType":"RoleAssigned","payload":{"clientUuid":"9f77c27e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0001693307112,"lon":14.003542332210957},"type":"Progress","durationMs":6531,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.999896468620435,"lon":13.995028398544697},"type":"Progress","durationMs":6308,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00069843627007,"lon":14.000732909033093},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T01:44:29.0517687Z","actor":"99c5ce9c","eventType":"RoleAssigned","payload":{"clientUuid":"99c5ce9c","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0001693307112,"lon":14.003542332210957},"type":"Progress","durationMs":6531,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.999896468620435,"lon":13.995028398544697},"type":"Progress","durationMs":6308,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00069843627007,"lon":14.000732909033093},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T01:44:37.8567777Z","actor":"5ab52b1f","eventType":"TaskCompleted","payload":{"clientUuid":"5ab52b1f","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T01:44:38.4070728Z","actor":"706bd85c","eventType":"SabotageStarted","payload":{"sabotageId":"1be4db5e","type":"CommsBlackout","initiatorId":"706bd85c","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.00041545911103,"lon":14.003599699479825},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T01:44:41.563788Z","actor":"5ab52b1f","eventType":"RepairStarted","payload":{"sabotageId":"1be4db5e","stationId":"comms_station","playerId":"5ab52b1f"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T01:44:44.5888116Z","actor":"5ab52b1f","eventType":"SabotageRepaired","payload":{"sabotageId":"1be4db5e","type":"CommsBlackout","repairerIds":["5ab52b1f"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T01:45:18.676164Z","actor":"706bd85c","eventType":"SabotageStarted","payload":{"sabotageId":"0fcd56c2","type":"CriticalMeltdown","initiatorId":"706bd85c","deadline":"2026-01-27T01:46:03.6761208Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.00315315315315,"lon":14},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":49.99684684684685,"lon":14},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T01:45:20.2893135Z","actor":"5ab52b1f","eventType":"RepairStarted","payload":{"sabotageId":"0fcd56c2","stationId":"reactor_alpha","playerId":"5ab52b1f"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T01:45:20.2949751Z","actor":"b99921c6","eventType":"RepairStarted","payload":{"sabotageId":"0fcd56c2","stationId":"reactor_beta","playerId":"b99921c6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T01:45:23.305903Z","actor":"5ab52b1f","eventType":"SabotageRepaired","payload":{"sabotageId":"0fcd56c2","type":"CriticalMeltdown","repairerIds":["5ab52b1f","b99921c6"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T01:45:29.4667904Z","actor":"706bd85c","eventType":"PlayerKilled","payload":{"victimId":"5ab52b1f","killerId":"706bd85c","bodyId":"02df6917","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T01:45:30.0472973Z","actor":"b99921c6","eventType":"BodyReported","payload":{"reporterId":"b99921c6","bodyId":"02df6917","victimId":"5ab52b1f"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T01:45:30.0510822Z","actor":"b99921c6","eventType":"MeetingStarted","payload":{"meetingId":"ca67a463","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T01:45:33.5508812Z","discussionEndTime":"2026-01-27T01:45:36.0508812Z","votingEndTime":"2026-01-27T01:45:46.0508812Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T01:45:36.0555547Z","actor":"b99921c6","eventType":"PlayerVoted","payload":{"voterId":"b99921c6","targetId":"706bd85c"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T01:45:36.1780748Z","actor":"413db0c8","eventType":"PlayerVoted","payload":{"voterId":"413db0c8","targetId":"706bd85c"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T01:45:36.3024308Z","actor":"706bd85c","eventType":"PlayerVoted","payload":{"voterId":"706bd85c","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T01:45:36.4266368Z","actor":"9f77c27e","eventType":"PlayerVoted","payload":{"voterId":"9f77c27e","targetId":"706bd85c"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T01:45:36.5502379Z","actor":"99c5ce9c","eventType":"PlayerVoted","payload":{"voterId":"99c5ce9c","targetId":"706bd85c"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T01:45:46.063189Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"706bd85c":4,"__SKIP__":1},"ejectedPlayerId":"706bd85c","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T01:45:46.1522611Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"706bd85c","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T01:45:46.1561825Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["5ab52b1f","b99921c6","413db0c8","9f77c27e","99c5ce9c"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T01:45:46.2351996Z","actor":"413db0c8","eventType":"PlayerLeft","payload":{"clientUuid":"413db0c8","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T01:45:46.2384251Z","actor":"706bd85c","eventType":"PlayerLeft","payload":{"clientUuid":"706bd85c","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T01:45:46.2408301Z","actor":"5ab52b1f","eventType":"PlayerLeft","payload":{"clientUuid":"5ab52b1f","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T01:45:46.2442005Z","actor":"b99921c6","eventType":"HostChanged","payload":{"newHostId":"b99921c6","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T01:45:46.247149Z","actor":"b99921c6","eventType":"PlayerLeft","payload":{"clientUuid":"b99921c6","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T01:45:46.2495764Z","actor":"9f77c27e","eventType":"HostChanged","payload":{"newHostId":"9f77c27e","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T01:45:46.2520245Z","actor":"99c5ce9c","eventType":"PlayerLeft","payload":{"clientUuid":"99c5ce9c","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T01:45:46.2546807Z","actor":"9f77c27e","eventType":"PlayerLeft","payload":{"clientUuid":"9f77c27e","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/e0c9e4d16e7d4a0f/wal_20260127102438.ndjson b/data/lobbies/e0c9e4d16e7d4a0f/wal_20260127102438.ndjson new file mode 100644 index 0000000..204083d --- /dev/null +++ b/data/lobbies/e0c9e4d16e7d4a0f/wal_20260127102438.ndjson @@ -0,0 +1,13 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:24:38.2114465Z","actor":"bf576280","eventType":"PlayerJoined","payload":{"clientUuid":"bf576280","displayName":"Player993"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:24:49.9957308Z","actor":"fd5e0212","eventType":"PlayerJoined","payload":{"clientUuid":"fd5e0212","displayName":"Player993"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T10:24:59.2826948Z","actor":"c04879fd","eventType":"PlayerJoined","payload":{"clientUuid":"c04879fd","displayName":"Player993"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T10:25:00.5780436Z","actor":"bf576280","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T10:25:00.5947971Z","actor":"bf576280","eventType":"RoleAssigned","payload":{"clientUuid":"bf576280","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T10:25:00.6018484Z","actor":"fd5e0212","eventType":"RoleAssigned","payload":{"clientUuid":"fd5e0212","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0009308,"lon":14.0025683},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0031177,"lon":13.998514216666669},"type":"Progress","durationMs":8639,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.9999798,"lon":14.0026563},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":49.99977,"lon":14.00246},"type":"Progress","durationMs":7636,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.0008623,"lon":14.0019217},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T10:25:00.6068743Z","actor":"c04879fd","eventType":"RoleAssigned","payload":{"clientUuid":"c04879fd","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0009308,"lon":14.0025683},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0031177,"lon":13.998514216666669},"type":"Progress","durationMs":8639,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.9999798,"lon":14.0026563},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":49.99977,"lon":14.00246},"type":"Progress","durationMs":7636,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.0008623,"lon":14.0019217},"type":"MultiStep","durationMs":0,"steps":2}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T10:25:03.5389666Z","actor":"fd5e0212","eventType":"EmergencyMeetingCalled","payload":{"callerId":"fd5e0212"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T10:25:03.5427557Z","actor":"fd5e0212","eventType":"MeetingStarted","payload":{"meetingId":"851de80f","type":"Emergency","meetingLocation":{"lat":50.00002496226134,"lon":14},"arrivalDeadline":"2026-01-27T10:25:07.0427381Z","discussionEndTime":"2026-01-27T10:25:09.5427381Z","votingEndTime":"2026-01-27T10:25:19.5427381Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T10:25:19.5523423Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"__SKIP__":0},"ejectedPlayerId":null,"wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T10:25:32.7476457Z","actor":"bf576280","eventType":"SabotageStarted","payload":{"sabotageId":"3b6a4ce7","type":"CriticalMeltdown","initiatorId":"bf576280","deadline":"2026-01-27T10:26:17.7475087Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.0043469,"lon":14.0003398},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.003018,"lon":13.9990343},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T10:26:17.7526773Z","actor":"bf576280","eventType":"SabotageMeltdown","payload":{"sabotageId":"3b6a4ce7"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T10:26:17.7558768Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Kritick\u00E1 sabot\u00E1\u017E - meltdown","winners":["bf576280"]},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/e6938c0e7e6e434c/wal_20260127102629.ndjson b/data/lobbies/e6938c0e7e6e434c/wal_20260127102629.ndjson new file mode 100644 index 0000000..d1e83d1 --- /dev/null +++ b/data/lobbies/e6938c0e7e6e434c/wal_20260127102629.ndjson @@ -0,0 +1,43 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:26:29.4061629Z","actor":"b3dbff96","eventType":"PlayerJoined","payload":{"clientUuid":"b3dbff96","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:26:29.4483389Z","actor":"882969ab","eventType":"PlayerJoined","payload":{"clientUuid":"882969ab","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T10:26:29.7594684Z","actor":"5aa9178b","eventType":"PlayerJoined","payload":{"clientUuid":"5aa9178b","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T10:26:30.08624Z","actor":"f0832216","eventType":"PlayerJoined","payload":{"clientUuid":"f0832216","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T10:26:30.4015374Z","actor":"47cb7b34","eventType":"PlayerJoined","payload":{"clientUuid":"47cb7b34","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T10:26:30.7138076Z","actor":"e5043447","eventType":"PlayerJoined","payload":{"clientUuid":"e5043447","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T10:26:30.9908592Z","actor":"b3dbff96","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T10:26:30.9962224Z","actor":"b3dbff96","eventType":"RoleAssigned","payload":{"clientUuid":"b3dbff96","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9996681,"lon":14.0003986},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.9997602,"lon":14.0027387},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00073472857143,"lon":14.002719957142858},"type":"Progress","durationMs":5778,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T10:26:31.0013849Z","actor":"882969ab","eventType":"RoleAssigned","payload":{"clientUuid":"882969ab","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9996681,"lon":14.0003986},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.9997602,"lon":14.0027387},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00073472857143,"lon":14.002719957142858},"type":"Progress","durationMs":5778,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T10:26:31.0045538Z","actor":"5aa9178b","eventType":"RoleAssigned","payload":{"clientUuid":"5aa9178b","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9996681,"lon":14.0003986},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.9997602,"lon":14.0027387},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00073472857143,"lon":14.002719957142858},"type":"Progress","durationMs":5778,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T10:26:31.0076289Z","actor":"f0832216","eventType":"RoleAssigned","payload":{"clientUuid":"f0832216","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9996681,"lon":14.0003986},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.9997602,"lon":14.0027387},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00073472857143,"lon":14.002719957142858},"type":"Progress","durationMs":5778,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T10:26:31.0140103Z","actor":"47cb7b34","eventType":"RoleAssigned","payload":{"clientUuid":"47cb7b34","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":49.9996681,"lon":14.0003986},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":49.9997602,"lon":14.0027387},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.00073472857143,"lon":14.002719957142858},"type":"Progress","durationMs":5778,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T10:26:31.0177015Z","actor":"e5043447","eventType":"RoleAssigned","payload":{"clientUuid":"e5043447","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T10:26:32.9907379Z","actor":"b3dbff96","eventType":"TaskCompleted","payload":{"clientUuid":"b3dbff96","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T10:26:33.7841653Z","actor":"e5043447","eventType":"SabotageStarted","payload":{"sabotageId":"f285cb19","type":"CommsBlackout","initiatorId":"e5043447","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":50.0033004,"lon":13.9982833},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T10:26:36.9526929Z","actor":"b3dbff96","eventType":"RepairStarted","payload":{"sabotageId":"f285cb19","stationId":"comms_station","playerId":"b3dbff96"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T10:26:39.9860461Z","actor":"b3dbff96","eventType":"SabotageRepaired","payload":{"sabotageId":"f285cb19","type":"CommsBlackout","repairerIds":["b3dbff96"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T10:27:14.0830521Z","actor":"e5043447","eventType":"SabotageStarted","payload":{"sabotageId":"d4d0a8ac","type":"CriticalMeltdown","initiatorId":"e5043447","deadline":"2026-01-27T10:27:59.0828641Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.0002036,"lon":14.0051027},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":49.9993269,"lon":13.99503},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T10:27:15.6990272Z","actor":"b3dbff96","eventType":"RepairStarted","payload":{"sabotageId":"d4d0a8ac","stationId":"reactor_alpha","playerId":"b3dbff96"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T10:27:15.7027314Z","actor":"882969ab","eventType":"RepairStarted","payload":{"sabotageId":"d4d0a8ac","stationId":"reactor_beta","playerId":"882969ab"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T10:27:18.7182269Z","actor":"b3dbff96","eventType":"SabotageRepaired","payload":{"sabotageId":"d4d0a8ac","type":"CriticalMeltdown","repairerIds":["b3dbff96","882969ab"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T10:27:24.8883296Z","actor":"e5043447","eventType":"PlayerKilled","payload":{"victimId":"b3dbff96","killerId":"e5043447","bodyId":"8dca3238","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T10:27:25.5043822Z","actor":"882969ab","eventType":"BodyReported","payload":{"reporterId":"882969ab","bodyId":"8dca3238","victimId":"b3dbff96"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T10:27:25.5076304Z","actor":"882969ab","eventType":"MeetingStarted","payload":{"meetingId":"e5bcae23","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T10:27:29.0076118Z","discussionEndTime":"2026-01-27T10:27:31.5076118Z","votingEndTime":"2026-01-27T10:27:41.5076118Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T10:27:31.5237106Z","actor":"882969ab","eventType":"PlayerVoted","payload":{"voterId":"882969ab","targetId":"e5043447"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T10:27:31.6460288Z","actor":"5aa9178b","eventType":"PlayerVoted","payload":{"voterId":"5aa9178b","targetId":"e5043447"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T10:27:31.769554Z","actor":"f0832216","eventType":"PlayerVoted","payload":{"voterId":"f0832216","targetId":"e5043447"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T10:27:31.8940451Z","actor":"47cb7b34","eventType":"PlayerVoted","payload":{"voterId":"47cb7b34","targetId":"e5043447"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T10:27:32.0188607Z","actor":"e5043447","eventType":"PlayerVoted","payload":{"voterId":"e5043447","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T10:27:41.5122762Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"e5043447":4,"__SKIP__":1},"ejectedPlayerId":"e5043447","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T10:27:41.5809975Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"e5043447","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T10:27:41.5845184Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["b3dbff96","882969ab","5aa9178b","f0832216","47cb7b34"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T10:28:22.9069814Z","actor":"b3dbff96","eventType":"PlayerLeft","payload":{"clientUuid":"b3dbff96","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T10:28:22.9105741Z","actor":"882969ab","eventType":"HostChanged","payload":{"newHostId":"882969ab","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T10:28:22.9134718Z","actor":"882969ab","eventType":"PlayerLeft","payload":{"clientUuid":"882969ab","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T10:28:22.91641Z","actor":"5aa9178b","eventType":"HostChanged","payload":{"newHostId":"5aa9178b","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T10:28:22.9200465Z","actor":"5aa9178b","eventType":"PlayerLeft","payload":{"clientUuid":"5aa9178b","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T10:28:22.9229346Z","actor":"f0832216","eventType":"HostChanged","payload":{"newHostId":"f0832216","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T10:28:22.9257747Z","actor":"f0832216","eventType":"PlayerLeft","payload":{"clientUuid":"f0832216","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T10:28:22.9287612Z","actor":"47cb7b34","eventType":"HostChanged","payload":{"newHostId":"47cb7b34","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T10:28:22.9323955Z","actor":"47cb7b34","eventType":"PlayerLeft","payload":{"clientUuid":"47cb7b34","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":42,"serverSeq":42,"timestamp":"2026-01-27T10:28:22.9353793Z","actor":"e5043447","eventType":"HostChanged","payload":{"newHostId":"e5043447","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":43,"serverSeq":43,"timestamp":"2026-01-27T10:28:22.9384171Z","actor":"e5043447","eventType":"PlayerLeft","payload":{"clientUuid":"e5043447","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/e91c3b6657f04f97/wal_20260127102818.ndjson b/data/lobbies/e91c3b6657f04f97/wal_20260127102818.ndjson new file mode 100644 index 0000000..2ed1290 --- /dev/null +++ b/data/lobbies/e91c3b6657f04f97/wal_20260127102818.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T10:28:18.2531915Z","actor":"4103c184","eventType":"PlayerJoined","payload":{"clientUuid":"4103c184","displayName":"Consist1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T10:28:19.3420864Z","actor":"4103c184","eventType":"PlayerLeft","payload":{"clientUuid":"4103c184","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/eb6a6150f57340d0/wal_20260127120055.ndjson b/data/lobbies/eb6a6150f57340d0/wal_20260127120055.ndjson new file mode 100644 index 0000000..dbeb0c5 --- /dev/null +++ b/data/lobbies/eb6a6150f57340d0/wal_20260127120055.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:00:55.7411726Z","actor":"cd033690","eventType":"PlayerJoined","payload":{"clientUuid":"cd033690","displayName":"Consist2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:00:55.8191956Z","actor":"cd033690","eventType":"PlayerLeft","payload":{"clientUuid":"cd033690","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/eecc7b5c971c4fce/wal_20260127142345.ndjson b/data/lobbies/eecc7b5c971c4fce/wal_20260127142345.ndjson new file mode 100644 index 0000000..b7c5b6c --- /dev/null +++ b/data/lobbies/eecc7b5c971c4fce/wal_20260127142345.ndjson @@ -0,0 +1,28 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T14:23:45.5162553Z","actor":"9211285e","eventType":"PlayerJoined","payload":{"clientUuid":"9211285e","displayName":"Hr\u00E1\u010D670"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T14:23:56.3323143Z","actor":"ac8da3b2","eventType":"PlayerJoined","payload":{"clientUuid":"ac8da3b2","displayName":"Hr\u00E1\u010D158"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T14:24:00.8056866Z","actor":"bce801a1","eventType":"PlayerJoined","payload":{"clientUuid":"bce801a1","displayName":"Hr\u00E1\u010D2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T14:24:05.3601858Z","actor":"fa43a380","eventType":"PlayerJoined","payload":{"clientUuid":"fa43a380","displayName":"Hr\u00E1\u010D875"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T14:24:07.5611556Z","actor":"9211285e","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T14:24:12.0446693Z","actor":"9211285e","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.7735892,"lon":15.0721653},"radiusMeters":140,"buildings":[[50.7724822,15.0725635,50.7725867,15.0732433,50.7726859,15.0732052,50.7727079,15.0733485,50.7725129,15.0734235,50.7723638,15.0724541,50.7725555,15.0723804,50.7725779,15.0725266,50.7724822,15.0725635],[50.7734959,15.0730653,50.7735197,15.073219,50.7734258,15.0732559,50.7735055,15.0737492,50.7731526,15.0738887,50.7731238,15.073694,50.7732639,15.073638,50.7732632,15.0736337,50.7733487,15.0735995,50.7733494,15.0736038,50.773366,15.0735971,50.7732937,15.0731452,50.7734959,15.0730653],[50.7731464,15.0725772,50.7728232,15.0726979,50.7726824,15.0717548,50.7726283,15.071775,50.7726076,15.071636,50.7726703,15.0716126,50.7726766,15.0716547,50.772889,15.0715754,50.7728827,15.0715332,50.7729809,15.0714966,50.7730282,15.071814,50.7729395,15.0718471,50.7729783,15.0721066,50.7729303,15.0721245,50.772942,15.0722032,50.7729822,15.0721882,50.7729775,15.0721565,50.7730496,15.0721296,50.7730595,15.0721959,50.7730879,15.0721853,50.7731464,15.0725772],[50.773422,15.071382,50.773389,15.071402,50.773392,15.071419,50.773361,15.071443,50.773356,15.071418,50.773341,15.071433,50.7733,15.071282,50.773381,15.071229,50.773422,15.071382],[50.773329,15.071161,50.773299,15.071181,50.773289,15.071177,50.773271,15.071191,50.773257,15.071193,50.773262,15.071196,50.773261,15.071209,50.773274,15.071254,50.773341,15.071208,50.773329,15.071161],[50.773125,15.0705336,50.7731285,15.0705334,50.7731319,15.0705343,50.7731351,15.0705363,50.773138,15.0705392,50.7731405,15.070543,50.7731425,15.0705474,50.7731439,15.0705524,50.7731446,15.0705578,50.7731447,15.0705632,50.773144,15.0705686,50.7731427,15.0705736,50.7731408,15.0705782,50.7731384,15.0705821,50.7731438,15.0706017,50.7731384,15.0706057,50.773155,15.0706657,50.7731308,15.0706824,50.7731242,15.0706586,50.7730767,15.0706911,50.7730499,15.070599,50.7730391,15.0706064,50.7730265,15.0705609,50.7730373,15.0705534,50.7730331,15.0705383,50.7730756,15.0705091,50.7730767,15.0704884,50.7730956,15.0704754,50.7731056,15.0704881,50.7731113,15.0704841,50.773125,15.0705336],[50.7732336,15.0708695,50.7732443,15.0709332,50.7732649,15.0709249,50.773274,15.070934,50.7732769,15.0709519,50.7732747,15.0709562,50.7732863,15.0710278,50.7731994,15.0710615,50.7731988,15.0710586,50.7731721,15.0708944,50.7732336,15.0708695],[50.7729174,15.0709354,50.7729332,15.070981,50.7729699,15.0709667,50.7729991,15.071155,50.7729554,15.0711716,50.7729584,15.0711907,50.7728925,15.0712164,50.7728912,15.0712078,50.7728849,15.0712102,50.7728832,15.0712003,50.7728399,15.0712174,50.7728316,15.0711629,50.7727902,15.0710458,50.7729174,15.0709354],[50.7728484,15.0707073,50.7728569,15.070764,50.7728272,15.0707752,50.7728283,15.0707811,50.7727423,15.0708143,50.7727414,15.0708087,50.7727116,15.0708202,50.7727029,15.0707637,50.7726957,15.0707664,50.7726725,15.0706178,50.772832,15.0705554,50.7728554,15.0707046,50.7728484,15.0707073],[50.7724929,15.0712484,50.7725043,15.0713198,50.7724387,15.0713454,50.7724427,15.0713707,50.772413,15.0713823,50.7724091,15.0713569,50.7723437,15.0713823,50.772322,15.071242,50.7723356,15.0712367,50.7723363,15.0712408,50.7724761,15.0711849,50.7724866,15.0712508,50.7724929,15.0712484],[50.7735134,15.0717196,50.7734948,15.0717316,50.7734985,15.0717456,50.7734966,15.071747,50.7734972,15.0717493,50.7734469,15.0717826,50.7734405,15.0717868,50.7734364,15.0717712,50.7734294,15.0717758,50.7734244,15.0717865,50.7734155,15.0717882,50.7734068,15.0717822,50.7734004,15.0717712,50.7734023,15.0717588,50.7733715,15.0716442,50.7734727,15.0715769,50.7734762,15.0715899,50.7734919,15.0715796,50.7735018,15.0716166,50.7734888,15.0716252,50.7735134,15.0717196],[50.7735279,15.0718414,50.7734721,15.071877,50.7734469,15.0717826,50.7734972,15.0717493,50.7734966,15.071747,50.7734985,15.0717456,50.7735009,15.0717439,50.7735279,15.0718414],[50.7736939,15.0724148,50.7736965,15.0724206,50.7737166,15.0723991,50.7737243,15.072417,50.7737041,15.0724386,50.7737434,15.07253,50.7736724,15.0726059,50.7736229,15.0724906,50.7736294,15.0724837,50.7736139,15.0724477,50.7736716,15.0723861,50.7736871,15.0724221,50.7736939,15.0724148],[50.7735462,15.0725394,50.7735947,15.0726505,50.7735242,15.0727263,50.773476,15.0726154,50.7735462,15.0725394],[50.7737533,15.0727887,50.7737741,15.0728365,50.773777,15.0728333,50.7737972,15.0728797,50.7737943,15.0728829,50.7738125,15.0729248,50.7737381,15.0730059,50.7736789,15.0728691,50.7737012,15.072845,50.7736907,15.0728208,50.7737202,15.0727888,50.7737307,15.072813,50.7737533,15.0727887],[50.773745,15.074204,50.773719,15.074026,50.773826,15.073983,50.773854,15.074161,50.773745,15.074204],[50.7724536,15.0717001,50.7724773,15.0718494,50.7724738,15.0718508,50.7724941,15.0719806,50.7724016,15.0720168,50.772381,15.0718868,50.7722686,15.0719291,50.7722456,15.0717812,50.7724536,15.0717001],[50.7727364,15.0735138,50.7727518,15.0736097,50.7727584,15.0736069,50.7727664,15.0736565,50.7727596,15.0736591,50.7727735,15.0737472,50.7726802,15.0737836,50.7726431,15.0735507,50.7727364,15.0735138],[50.7725225,15.0721148,50.7725156,15.0721176,50.7725302,15.0722104,50.7724383,15.0722492,50.7724016,15.0720168,50.7724941,15.0719806,50.7725079,15.0720679,50.7725146,15.0720651,50.7725225,15.0721148],[50.7730962,15.0729231,50.7731205,15.0730625,50.7731063,15.0730681,50.7731262,15.0731928,50.7730745,15.0732135,50.773099,15.0733664,50.7731218,15.0733572,50.7731548,15.0735625,50.773011,15.07362,50.7729859,15.0734637,50.7729886,15.0734626,50.7729502,15.0732235,50.7729455,15.0732254,50.7729072,15.0729866,50.7730148,15.0729439,50.7730165,15.0729548,50.7730962,15.0729231],[50.7733303,15.0728181,50.7733643,15.0730283,50.7731299,15.0731216,50.7731205,15.0730625,50.7730962,15.0729231,50.7730945,15.0729121,50.7733303,15.0728181],[50.7745908,15.0708798,50.7745634,15.0709025,50.7745347,15.0708172,50.7745621,15.0707942,50.7745908,15.0708798],[50.7744267,15.0724262,50.7744079,15.0723664,50.7744037,15.0724218,50.7744267,15.0724262],[50.7743012,15.0726824,50.7743034,15.0727109,50.774319,15.0727083,50.7743237,15.0728008,50.7742665,15.0728095,50.7742607,15.0727176,50.7742781,15.0727149,50.7742764,15.0726875,50.7743012,15.0726824],[50.7732354,15.0707406,50.7732871,15.0707098,50.7733006,15.0707598,50.7732485,15.0707904,50.7732354,15.0707406],[50.7733006,15.0707598,50.7733139,15.0708096,50.7732619,15.0708421,50.7732485,15.0707904,50.7733006,15.0707598],[50.7744068,15.0734529,50.7744253,15.0734121,50.7747268,15.0733994,50.7747474,15.0734385,50.7747604,15.0734386,50.7747601,15.0734202,50.7747954,15.0734185,50.774805,15.0739561,50.7747567,15.0739583,50.7747601,15.0741539,50.7744181,15.0741687,50.7744068,15.0734529],[50.7731445,15.0744539,50.7731136,15.0742559,50.7736374,15.0740591,50.7736669,15.0742547,50.7734801,15.074326,50.773228,15.0744221,50.7731707,15.0744438,50.7731445,15.0744539],[50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.7745822,15.0719023,50.7745902,15.0718958,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746054,15.0723518,50.7746375,15.0723257,50.7746787,15.0724521,50.7746869,15.0724455,50.7747266,15.0725666,50.774669,15.0726134,50.7746731,15.072626,50.7745737,15.0727071,50.774562,15.0726712,50.774554,15.0726778,50.7745456,15.0726519,50.7745055,15.0726856,50.7744409,15.0724884,50.7744466,15.0724829,50.7744267,15.0724262,50.7744079,15.0723664,50.7743938,15.0723218,50.7744026,15.0723148,50.7743648,15.0722002,50.7743809,15.0721002,50.774376,15.0720852,50.7742782,15.0719908,50.7741936,15.0718642,50.7742919,15.0716632,50.7742849,15.0716547,50.7743033,15.0716399],[50.7737962,15.0707673,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7740878,15.0709937,50.7740958,15.0709872,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743463,15.0714389,50.7743608,15.0714411,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7742849,15.0716547,50.7742919,15.0716632,50.7741936,15.0718642,50.7741316,15.0717715,50.7740664,15.0716315,50.7740187,15.0714721,50.7739567,15.0714057,50.7738365,15.0712769,50.7738402,15.0712056,50.7737321,15.0710829,50.7737317,15.0710164,50.7737008,15.0709849,50.7737962,15.0707673],[50.7737008,15.0709849,50.7735869,15.0708695,50.7733836,15.0702155,50.7733445,15.0701858,50.7733465,15.0699726,50.7734329,15.069905,50.7734654,15.0699291,50.7735278,15.0699794,50.7736304,15.0699001,50.7736488,15.0699559,50.773677,15.0699316,50.773699,15.0700054,50.7737232,15.0700797,50.7737032,15.0700958,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7738596,15.0705236,50.7738676,15.0705171,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7737962,15.0707673,50.7737008,15.0709849]],"buildingTypes":["yes","university","university","yes","yes","residential","residential","residential","residential","residential","residential","garage","house","house","house","yes","residential","residential","residential","university","university","garage","yes","yes","garage","garage","yes","university","residential","residential","residential"],"pathways":[[50.772214,15.0743908,50.7722811,15.0743641,50.7724188,15.0743193,50.7728635,15.0741347,50.7729297,15.0741105,50.7730641,15.0740595,50.7736459,15.0738388],[50.7736218,15.0734419,50.7735939,15.0732437,50.7735493,15.0730608,50.7735004,15.0728728,50.7734252,15.0727178,50.7732768,15.0725856],[50.7729297,15.0741105,50.772732,15.0728076,50.7725274,15.0715061],[50.7730954,15.068837,50.7731122,15.0689484,50.7732175,15.0696447,50.773211,15.0697638,50.7731688,15.0701353,50.7735894,15.0717216,50.773646,15.0719148,50.7738279,15.0724577,50.7738718,15.0726246,50.773902,15.0727669,50.7739109,15.0728539,50.7739131,15.072922,50.7738958,15.0729918,50.773851,15.073075,50.7736218,15.0734419],[50.773646,15.0719148,50.7735484,15.0720508],[50.7737433,15.0813586,50.7736753,15.0808763,50.773617,15.0804268,50.773598,15.0800846,50.7736033,15.0797867,50.7736087,15.0796046,50.7736255,15.0794685,50.7737718,15.0784726,50.7739425,15.0777347,50.7739646,15.0775534,50.7740131,15.0771569,50.7740327,15.076996,50.7740484,15.0768675,50.7740703,15.076628,50.7740683,15.07647,50.7740593,15.076363,50.7740453,15.0762881,50.7740272,15.0761908,50.7739683,15.076005,50.7739647,15.0759986,50.7738165,15.0757322,50.7736859,15.0749477,50.7736861,15.0748738,50.7736921,15.074793,50.7737092,15.0745982,50.7737252,15.0744588,50.773721,15.0743204,50.7737095,15.0742468,50.7736613,15.0739378,50.7736459,15.0738388],[50.7729924,15.0714006,50.7734588,15.0719916,50.7735484,15.0720508],[50.7726746,15.0712204,50.7727517,15.0713078,50.7728182,15.0713485,50.7728733,15.0713562,50.7729336,15.0713619,50.7729586,15.0713674,50.7729924,15.0714006],[50.7732768,15.0725856,50.7731933,15.0726196,50.772732,15.0728076],[50.7729924,15.0714006,50.7730142,15.0715442],[50.7718091,15.0717795,50.7718715,15.0717545,50.7725274,15.0715061],[50.7726746,15.0712204,50.7726426,15.0710139,50.772412,15.0695239,50.7723923,15.0693964],[50.7730823,15.071947,50.7731038,15.0719401,50.7731719,15.0719627,50.7733695,15.072243],[50.7730142,15.0715442,50.7730823,15.071947,50.7731305,15.072217,50.7732806,15.0725075],[50.7732806,15.0725075,50.7732768,15.0725856],[50.7735484,15.0720508,50.7734516,15.0723155,50.7732768,15.0725856],[50.7743146,15.0750998,50.7742926,15.0749067,50.7742943,15.0747029,50.7743486,15.0743273,50.774279,15.0741181,50.7742536,15.0739143,50.7741603,15.0738204,50.7740874,15.0737292,50.7739958,15.0737319,50.7739534,15.0737963,50.773895,15.0740783,50.7738533,15.0742254,50.773721,15.0743204],[50.7736613,15.0739378,50.7738346,15.0739116,50.773895,15.0740783,50.7739211,15.0741503,50.7740151,15.0746626,50.7742247,15.0750247,50.7743146,15.0750998,50.7743774,15.0754431,50.7745456,15.0757636],[50.7731305,15.072217,50.7731933,15.0726196],[50.7725274,15.0715061,50.7726021,15.0713843,50.7726746,15.0712204],[50.7746223,15.071864,50.7745822,15.0719023],[50.7744008,15.0714046,50.7743608,15.0714411],[50.7747592,15.0723966,50.7746909,15.0722865,50.7746896,15.0721985,50.7746681,15.0720097,50.7746223,15.071864,50.7745842,15.0717316,50.7744572,15.0715678,50.7744008,15.0714046,50.7743668,15.0712817,50.7743153,15.0712346,50.7742559,15.0712118,50.7741958,15.0711684,50.7741626,15.071086,50.7741465,15.070948,50.7741248,15.0708765,50.7740085,15.0707713,50.7739581,15.0706689,50.7738984,15.070484,50.773868,15.0703669,50.7737646,15.070217,50.7737131,15.0699957,50.7736682,15.0697985],[50.7747592,15.0723966,50.7746869,15.0724455],[50.7741465,15.070948,50.7740958,15.0709872],[50.7738984,15.070484,50.7738676,15.0705171],[50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328],[50.7740766,15.0699582,50.7741658,15.0702889,50.774177,15.0704695,50.7742433,15.0708421,50.7744089,15.0711015,50.7744523,15.0711738,50.7745964,15.0716815,50.7747165,15.0719038,50.7747675,15.0721447,50.7747919,15.072328],[50.7749533,15.0728495,50.774898,15.0726386,50.7748219,15.0724673,50.7747919,15.072328],[50.7747592,15.0723966,50.7748031,15.0725668,50.7745636,15.0727628,50.7744896,15.0727412,50.7743857,15.0723828],[50.7743857,15.0723828,50.7743766,15.0722922,50.7743116,15.0721514,50.7741669,15.0718846,50.7740799,15.0716977,50.7739981,15.0714832,50.7739456,15.0716314,50.7738781,15.0714985,50.7737495,15.0715106,50.7738298,15.0716222,50.773807,15.071876,50.7739852,15.072001,50.7738899,15.0720892,50.7738661,15.0722328,50.7739135,15.0723859,50.7738727,15.0724211,50.7738279,15.0724577],[50.7725274,15.0715061,50.7729336,15.0713619],[50.7726426,15.0710139,50.7723549,15.0711155,50.772255,15.0711773,50.7721831,15.0712426,50.7721046,15.0712678],[50.7736459,15.0738388,50.7736218,15.0734419]],"pathwayTypes":[3,3,3,3,3,3,0,3,3,4,3,3,4,4,4,0,0,0,0,3,0,0,0,0,0,0,4,0,4,0,0,3,4,3],"areas":[[50.7737266,15.0699224,50.77375,15.0701096,50.7737172,15.0701382,50.7736433,15.0701943,50.7736475,15.0702069,50.7735992,15.0702462,50.7736836,15.0705037,50.7738174,15.0703947,50.7739065,15.0706357,50.7738489,15.0706826,50.773853,15.0706952,50.7737827,15.0707525,50.7739307,15.0709139,50.7739422,15.0709488,50.7740456,15.0708645,50.7741348,15.0711055,50.7740772,15.0711523,50.7740813,15.0711649,50.7740522,15.0711886,50.7741972,15.0713468,50.7742102,15.0713862,50.774304,15.0713097,50.7743931,15.0715507,50.7743356,15.0715976,50.7743398,15.0716101,50.7743033,15.0716399,50.7744264,15.0717898,50.774446,15.0718499,50.7745399,15.0717733,50.774629,15.0720143,50.7745716,15.0720614,50.7745758,15.0720739,50.7745273,15.0721131,50.7745672,15.072235,50.7746896,15.0721985,50.7747428,15.0722349,50.7747919,15.072328,50.7748574,15.0723019,50.7747545,15.0717422,50.774563,15.0712749,50.7743097,15.0706313,50.7741844,15.0700707,50.7740167,15.0695631,50.7739496,15.069599,50.7737805,15.0697296,50.7738217,15.0698637,50.7737787,15.0699028,50.7737266,15.0699224]],"areaTypes":[0],"poIs":[50.77358284761904,15.074780707142859,3,50.7732502125,15.0720747,4,50.77339962,15.074061740000001,4,50.77322074,15.0739575,4,50.77288765454546,15.07320488181818,4,50.7746238,15.0716847,6,50.7743188,15.0709412,6,50.774201,15.0712028,6,50.7745213,15.0714042,7,50.7744712,15.0716784,6,50.7741888,15.0705734,6,50.7739942,15.0706985,6,50.7745005,15.071353,6,50.7738016,15.0702315,6,50.774702,15.0718182,6,50.77303,15.07395,7,50.77358,15.07339,7]},"playAreaCenter":{"lat":50.7735892,"lon":15.0721653},"playAreaRadius":140},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T14:24:12.0767268Z","actor":"9211285e","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"9211285e","displayName":"Hr\u00E1\u010D670","playersReady":1,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T14:24:12.0830711Z","actor":"bce801a1","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"bce801a1","displayName":"Hr\u00E1\u010D2","playersReady":2,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T14:24:12.0889182Z","actor":"ac8da3b2","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"ac8da3b2","displayName":"Hr\u00E1\u010D158","playersReady":3,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T14:24:12.0923762Z","actor":"fa43a380","eventType":"PlayerMapDataReceived","payload":{"clientUuid":"fa43a380","displayName":"Hr\u00E1\u010D875","playersReady":4,"totalPlayers":4},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T14:24:12.0964015Z","actor":"9211285e","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":5},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T14:24:12.0997351Z","actor":"9211285e","eventType":"RoleAssigned","payload":{"clientUuid":"9211285e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":6570,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7743116,"lon":15.0721514},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7731933,"lon":15.0726196},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.773807,"lon":15.071876},"type":"Progress","durationMs":9557,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7738279,"lon":15.0724577},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T14:24:12.1027832Z","actor":"ac8da3b2","eventType":"RoleAssigned","payload":{"clientUuid":"ac8da3b2","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T14:24:12.1058269Z","actor":"bce801a1","eventType":"RoleAssigned","payload":{"clientUuid":"bce801a1","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":6570,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7743116,"lon":15.0721514},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7731933,"lon":15.0726196},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.773807,"lon":15.071876},"type":"Progress","durationMs":9557,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7738279,"lon":15.0724577},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T14:24:12.1087966Z","actor":"fa43a380","eventType":"RoleAssigned","payload":{"clientUuid":"fa43a380","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.77358,"lon":15.07339},"type":"Progress","durationMs":6570,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.7743116,"lon":15.0721514},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.7731933,"lon":15.0726196},"type":"MultiStep","durationMs":0,"steps":3},{"taskId":"task_3","name":"Nab\u00EDt baterii","location":{"lat":50.773807,"lon":15.071876},"type":"Progress","durationMs":9557,"steps":1},{"taskId":"task_4","name":"Vy\u010Distit filtr","location":{"lat":50.7738279,"lon":15.0724577},"type":"Instant","durationMs":0,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T14:24:48.8927252Z","actor":"ac8da3b2","eventType":"PlayerKilled","payload":{"victimId":"9211285e","killerId":"ac8da3b2","bodyId":"ebefbf08","location":{"lat":50.77357917651413,"lon":15.072238330988624}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T14:25:25.1861725Z","actor":"ac8da3b2","eventType":"EmergencyMeetingCalled","payload":{"callerId":"ac8da3b2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T14:25:25.1919896Z","actor":"ac8da3b2","eventType":"MeetingStarted","payload":{"meetingId":"0d8652ed","type":"Emergency","meetingLocation":{"lat":50.7735892,"lon":15.0721653},"arrivalDeadline":"2026-01-27T14:25:28.6919757Z","discussionEndTime":"2026-01-27T14:25:31.1919757Z","votingEndTime":"2026-01-27T14:25:41.1919757Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T14:25:35.6358526Z","actor":"ac8da3b2","eventType":"PlayerVoted","payload":{"voterId":"ac8da3b2","targetId":"bce801a1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T14:25:41.2130031Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"bce801a1":1,"__SKIP__":0},"ejectedPlayerId":"bce801a1","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T14:25:41.2502037Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"bce801a1","role":"Crew"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T14:25:41.254853Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Imposto\u0159i maj\u00ED p\u0159evahu","winners":["ac8da3b2"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T14:27:28.8127943Z","actor":"9211285e","eventType":"PlayerLeft","payload":{"clientUuid":"9211285e","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T14:27:28.8269216Z","actor":"ac8da3b2","eventType":"HostChanged","payload":{"newHostId":"ac8da3b2","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T14:27:36.0234071Z","actor":"bce801a1","eventType":"PlayerLeft","payload":{"clientUuid":"bce801a1","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T14:27:44.8539015Z","actor":"ac8da3b2","eventType":"PlayerLeft","payload":{"clientUuid":"ac8da3b2","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T14:27:44.8562853Z","actor":"fa43a380","eventType":"HostChanged","payload":{"newHostId":"fa43a380","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T14:27:45.7995133Z","actor":"fa43a380","eventType":"PlayerLeft","payload":{"clientUuid":"fa43a380","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/f4223551ebd24e50/wal_20260127120030.ndjson b/data/lobbies/f4223551ebd24e50/wal_20260127120030.ndjson new file mode 100644 index 0000000..e553d16 --- /dev/null +++ b/data/lobbies/f4223551ebd24e50/wal_20260127120030.ndjson @@ -0,0 +1,11 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:00:30.0847521Z","actor":"f484f101","eventType":"PlayerJoined","payload":{"clientUuid":"f484f101","displayName":"SabOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:00:32.2476254Z","actor":"fd87d7e2","eventType":"PlayerJoined","payload":{"clientUuid":"fd87d7e2","displayName":"SabPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:00:32.6752116Z","actor":"f484f101","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:00:32.6817603Z","actor":"f484f101","eventType":"RoleAssigned","payload":{"clientUuid":"f484f101","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:00:32.684651Z","actor":"fd87d7e2","eventType":"RoleAssigned","payload":{"clientUuid":"fd87d7e2","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.0877873,"lon":14.4192354},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.0857063,"lon":14.4209226},"type":"Progress","durationMs":7870,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":50.08922328,"lon":14.4221628},"type":"Progress","durationMs":5552,"steps":1}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:00:44.0335923Z","actor":"f484f101","eventType":"SabotageStarted","payload":{"sabotageId":"23e7a0e5","type":"CriticalMeltdown","initiatorId":"f484f101","deadline":"2026-01-27T12:01:29.0334606Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.0860184,"lon":14.4211634},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":50.0896588,"lon":14.4222687},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:00:46.5510092Z","actor":"f484f101","eventType":"PlayerLeft","payload":{"clientUuid":"f484f101","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T12:00:46.567288Z","actor":"fd87d7e2","eventType":"HostChanged","payload":{"newHostId":"fd87d7e2","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T12:00:46.572192Z","actor":"fd87d7e2","eventType":"PlayerLeft","payload":{"clientUuid":"fd87d7e2","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T12:01:29.040902Z","actor":"f484f101","eventType":"SabotageMeltdown","payload":{"sabotageId":"23e7a0e5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T12:01:29.0430258Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Impostor","reason":"Kritick\u00E1 sabot\u00E1\u017E - meltdown","winners":[]},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/f4a2fd3df4f24aa5/wal_20260127114954.ndjson b/data/lobbies/f4a2fd3df4f24aa5/wal_20260127114954.ndjson new file mode 100644 index 0000000..c8cabe2 --- /dev/null +++ b/data/lobbies/f4a2fd3df4f24aa5/wal_20260127114954.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T11:49:54.4477939Z","actor":"9c45140d","eventType":"PlayerJoined","payload":{"clientUuid":"9c45140d","displayName":"BoundTest"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T11:49:55.5348542Z","actor":"9c45140d","eventType":"PlayerLeft","payload":{"clientUuid":"9c45140d","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/f963f05a73484e7d/wal_20260127120651.ndjson b/data/lobbies/f963f05a73484e7d/wal_20260127120651.ndjson new file mode 100644 index 0000000..ee7018f --- /dev/null +++ b/data/lobbies/f963f05a73484e7d/wal_20260127120651.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:06:51.1205581Z","actor":"50ff38c0","eventType":"PlayerJoined","payload":{"clientUuid":"50ff38c0","displayName":"Consist1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:06:51.1982128Z","actor":"50ff38c0","eventType":"PlayerLeft","payload":{"clientUuid":"50ff38c0","reason":"Hr\u00E1\u010D opustil"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/f9adf1c70fcb4b35/wal_20260127004328.ndjson b/data/lobbies/f9adf1c70fcb4b35/wal_20260127004328.ndjson new file mode 100644 index 0000000..1a60099 --- /dev/null +++ b/data/lobbies/f9adf1c70fcb4b35/wal_20260127004328.ndjson @@ -0,0 +1,2 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T00:43:28.65299Z","actor":"77237cde","eventType":"PlayerJoined","payload":{"clientUuid":"77237cde","displayName":"Bot1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T00:43:31.8919784Z","actor":"77237cde","eventType":"PlayerLeft","payload":{"clientUuid":"77237cde","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/fbb8fe5e677b4af2/wal_20260127010002.ndjson b/data/lobbies/fbb8fe5e677b4af2/wal_20260127010002.ndjson new file mode 100644 index 0000000..dde8f8b --- /dev/null +++ b/data/lobbies/fbb8fe5e677b4af2/wal_20260127010002.ndjson @@ -0,0 +1,26 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T01:00:02.9719628Z","actor":"944262a7","eventType":"PlayerJoined","payload":{"clientUuid":"944262a7","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T01:00:02.9988813Z","actor":"ef65aeb9","eventType":"PlayerJoined","payload":{"clientUuid":"ef65aeb9","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T01:00:03.334346Z","actor":"1015cb92","eventType":"PlayerJoined","payload":{"clientUuid":"1015cb92","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T01:00:03.6170949Z","actor":"7d1ada0a","eventType":"PlayerJoined","payload":{"clientUuid":"7d1ada0a","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T01:00:03.9261016Z","actor":"da57fc2b","eventType":"PlayerJoined","payload":{"clientUuid":"da57fc2b","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T01:00:04.2367338Z","actor":"677a0951","eventType":"PlayerJoined","payload":{"clientUuid":"677a0951","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T01:00:04.5383836Z","actor":"944262a7","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T01:00:04.5575702Z","actor":"944262a7","eventType":"RoleAssigned","payload":{"clientUuid":"944262a7","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00091670941441,"lon":13.999772858409692},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00070546263589,"lon":13.99906218757202},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.997335654575195,"lon":13.998095294462132},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T01:00:04.5668523Z","actor":"ef65aeb9","eventType":"RoleAssigned","payload":{"clientUuid":"ef65aeb9","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00091670941441,"lon":13.999772858409692},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00070546263589,"lon":13.99906218757202},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.997335654575195,"lon":13.998095294462132},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T01:00:04.5723192Z","actor":"1015cb92","eventType":"RoleAssigned","payload":{"clientUuid":"1015cb92","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00091670941441,"lon":13.999772858409692},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00070546263589,"lon":13.99906218757202},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.997335654575195,"lon":13.998095294462132},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T01:00:04.5756376Z","actor":"7d1ada0a","eventType":"RoleAssigned","payload":{"clientUuid":"7d1ada0a","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00091670941441,"lon":13.999772858409692},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00070546263589,"lon":13.99906218757202},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.997335654575195,"lon":13.998095294462132},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T01:00:04.5785413Z","actor":"da57fc2b","eventType":"RoleAssigned","payload":{"clientUuid":"da57fc2b","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00091670941441,"lon":13.999772858409692},"type":"MultiStep","durationMs":0,"steps":4},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00070546263589,"lon":13.99906218757202},"type":"Instant","durationMs":0,"steps":1},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.997335654575195,"lon":13.998095294462132},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T01:00:04.5813303Z","actor":"677a0951","eventType":"RoleAssigned","payload":{"clientUuid":"677a0951","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T01:00:06.2207691Z","actor":"677a0951","eventType":"PlayerKilled","payload":{"victimId":"944262a7","killerId":"677a0951","bodyId":"128d003f","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T01:00:06.8653317Z","actor":"ef65aeb9","eventType":"BodyReported","payload":{"reporterId":"ef65aeb9","bodyId":"128d003f","victimId":"944262a7"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T01:00:06.8683369Z","actor":"ef65aeb9","eventType":"MeetingStarted","payload":{"meetingId":"03e5c308","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T01:00:37.368322Z","votingEndTime":"2026-01-27T01:01:51.868322Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T01:02:30.6283857Z","actor":"944262a7","eventType":"PlayerLeft","payload":{"clientUuid":"944262a7","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T01:02:30.6373523Z","actor":"ef65aeb9","eventType":"HostChanged","payload":{"newHostId":"ef65aeb9","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T01:02:30.6474231Z","actor":"ef65aeb9","eventType":"PlayerLeft","payload":{"clientUuid":"ef65aeb9","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T01:02:30.652746Z","actor":"1015cb92","eventType":"HostChanged","payload":{"newHostId":"1015cb92","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T01:02:30.654963Z","actor":"1015cb92","eventType":"PlayerLeft","payload":{"clientUuid":"1015cb92","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T01:02:30.6571303Z","actor":"7d1ada0a","eventType":"HostChanged","payload":{"newHostId":"7d1ada0a","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T01:02:30.6594982Z","actor":"7d1ada0a","eventType":"PlayerLeft","payload":{"clientUuid":"7d1ada0a","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T01:02:30.6616902Z","actor":"da57fc2b","eventType":"HostChanged","payload":{"newHostId":"da57fc2b","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T01:02:30.6638145Z","actor":"677a0951","eventType":"PlayerLeft","payload":{"clientUuid":"677a0951","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T01:02:30.6659386Z","actor":"da57fc2b","eventType":"PlayerLeft","payload":{"clientUuid":"da57fc2b","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/fd6c498dc9804ab0/wal_20260127114759.ndjson b/data/lobbies/fd6c498dc9804ab0/wal_20260127114759.ndjson new file mode 100644 index 0000000..18f71b8 --- /dev/null +++ b/data/lobbies/fd6c498dc9804ab0/wal_20260127114759.ndjson @@ -0,0 +1,41 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T11:47:59.4179584Z","actor":"790b1090","eventType":"PlayerJoined","payload":{"clientUuid":"790b1090","displayName":"Player1"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T11:47:59.4703221Z","actor":"f6b99d0d","eventType":"PlayerJoined","payload":{"clientUuid":"f6b99d0d","displayName":"Player2"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T11:47:59.7976587Z","actor":"0c6d470a","eventType":"PlayerJoined","payload":{"clientUuid":"0c6d470a","displayName":"Player3"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T11:48:00.0936104Z","actor":"e36749ed","eventType":"PlayerJoined","payload":{"clientUuid":"e36749ed","displayName":"Player4"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T11:48:00.4230407Z","actor":"5837b52e","eventType":"PlayerJoined","payload":{"clientUuid":"5837b52e","displayName":"Player5"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T11:48:00.7146794Z","actor":"b8701753","eventType":"PlayerJoined","payload":{"clientUuid":"b8701753","displayName":"Player6"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T11:48:01.0210377Z","actor":"790b1090","eventType":"GameStarted","payload":{"impostorCount":1,"taskCount":3},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":8,"serverSeq":8,"timestamp":"2026-01-27T11:48:01.0244215Z","actor":"790b1090","eventType":"RoleAssigned","payload":{"clientUuid":"790b1090","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00001,"lon":14.00266},"type":"Progress","durationMs":7695,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00073472857143,"lon":14.002719957142858},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.9998093,"lon":14.0010834},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":9,"serverSeq":9,"timestamp":"2026-01-27T11:48:01.0286735Z","actor":"f6b99d0d","eventType":"RoleAssigned","payload":{"clientUuid":"f6b99d0d","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00001,"lon":14.00266},"type":"Progress","durationMs":7695,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00073472857143,"lon":14.002719957142858},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.9998093,"lon":14.0010834},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":10,"serverSeq":10,"timestamp":"2026-01-27T11:48:01.0313976Z","actor":"0c6d470a","eventType":"RoleAssigned","payload":{"clientUuid":"0c6d470a","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00001,"lon":14.00266},"type":"Progress","durationMs":7695,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00073472857143,"lon":14.002719957142858},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.9998093,"lon":14.0010834},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":11,"serverSeq":11,"timestamp":"2026-01-27T11:48:01.0393538Z","actor":"e36749ed","eventType":"RoleAssigned","payload":{"clientUuid":"e36749ed","role":"Impostor","tasks":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":12,"serverSeq":12,"timestamp":"2026-01-27T11:48:01.0422647Z","actor":"5837b52e","eventType":"RoleAssigned","payload":{"clientUuid":"5837b52e","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00001,"lon":14.00266},"type":"Progress","durationMs":7695,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00073472857143,"lon":14.002719957142858},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.9998093,"lon":14.0010834},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":13,"serverSeq":13,"timestamp":"2026-01-27T11:48:01.0462271Z","actor":"b8701753","eventType":"RoleAssigned","payload":{"clientUuid":"b8701753","role":"Crew","tasks":[{"taskId":"task_0","name":"Opravit kabel","location":{"lat":50.00001,"lon":14.00266},"type":"Progress","durationMs":7695,"steps":1},{"taskId":"task_1","name":"Zkalibrovat senzor","location":{"lat":50.00073472857143,"lon":14.002719957142858},"type":"MultiStep","durationMs":0,"steps":2},{"taskId":"task_2","name":"St\u00E1hnout data","location":{"lat":49.9998093,"lon":14.0010834},"type":"MultiStep","durationMs":0,"steps":4}]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":14,"serverSeq":14,"timestamp":"2026-01-27T11:48:15.9657276Z","actor":"790b1090","eventType":"TaskCompleted","payload":{"clientUuid":"790b1090","taskId":"task_0","totalCompleted":1,"totalTasks":15},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":15,"serverSeq":15,"timestamp":"2026-01-27T11:48:16.5028531Z","actor":"e36749ed","eventType":"SabotageStarted","payload":{"sabotageId":"6bcae3d4","type":"CommsBlackout","initiatorId":"e36749ed","deadline":null,"repairStations":[{"stationId":"comms_station","name":"Komunika\u010Dn\u00ED v\u011B\u017E","location":{"lat":49.9998112,"lon":14.0009153},"repairDurationMs":3000}],"requiredSimultaneousRepairs":1},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":16,"serverSeq":16,"timestamp":"2026-01-27T11:48:19.6658976Z","actor":"790b1090","eventType":"RepairStarted","payload":{"sabotageId":"6bcae3d4","stationId":"comms_station","playerId":"790b1090"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":17,"serverSeq":17,"timestamp":"2026-01-27T11:48:22.6803665Z","actor":"790b1090","eventType":"SabotageRepaired","payload":{"sabotageId":"6bcae3d4","type":"CommsBlackout","repairerIds":["790b1090"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":18,"serverSeq":18,"timestamp":"2026-01-27T11:48:56.81361Z","actor":"e36749ed","eventType":"SabotageStarted","payload":{"sabotageId":"7e9ba743","type":"CriticalMeltdown","initiatorId":"e36749ed","deadline":"2026-01-27T11:49:41.8134565Z","repairStations":[{"stationId":"reactor_alpha","name":"Reaktor Alpha","location":{"lat":50.0002079,"lon":14.0031427},"repairDurationMs":3000},{"stationId":"reactor_beta","name":"Reaktor Beta","location":{"lat":49.9982506,"lon":13.99542},"repairDurationMs":3000}],"requiredSimultaneousRepairs":2},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":19,"serverSeq":19,"timestamp":"2026-01-27T11:48:58.4277217Z","actor":"790b1090","eventType":"RepairStarted","payload":{"sabotageId":"7e9ba743","stationId":"reactor_alpha","playerId":"790b1090"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":20,"serverSeq":20,"timestamp":"2026-01-27T11:48:58.4434575Z","actor":"f6b99d0d","eventType":"RepairStarted","payload":{"sabotageId":"7e9ba743","stationId":"reactor_beta","playerId":"f6b99d0d"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":21,"serverSeq":21,"timestamp":"2026-01-27T11:49:01.4572372Z","actor":"790b1090","eventType":"SabotageRepaired","payload":{"sabotageId":"7e9ba743","type":"CriticalMeltdown","repairerIds":["790b1090","f6b99d0d"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":22,"serverSeq":22,"timestamp":"2026-01-27T11:49:07.5686986Z","actor":"e36749ed","eventType":"PlayerKilled","payload":{"victimId":"790b1090","killerId":"e36749ed","bodyId":"220fbb08","location":{"lat":50.0001,"lon":14}},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":23,"serverSeq":23,"timestamp":"2026-01-27T11:49:08.1850339Z","actor":"f6b99d0d","eventType":"BodyReported","payload":{"reporterId":"f6b99d0d","bodyId":"220fbb08","victimId":"790b1090"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":24,"serverSeq":24,"timestamp":"2026-01-27T11:49:08.187751Z","actor":"f6b99d0d","eventType":"MeetingStarted","payload":{"meetingId":"cd1db34e","type":"BodyReport","meetingLocation":{"lat":50.0001,"lon":14},"arrivalDeadline":"2026-01-27T11:49:11.6875368Z","discussionEndTime":"2026-01-27T11:49:14.1875368Z","votingEndTime":"2026-01-27T11:49:24.1875368Z"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":25,"serverSeq":25,"timestamp":"2026-01-27T11:49:14.207631Z","actor":"f6b99d0d","eventType":"PlayerVoted","payload":{"voterId":"f6b99d0d","targetId":"e36749ed"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":26,"serverSeq":26,"timestamp":"2026-01-27T11:49:14.3293416Z","actor":"0c6d470a","eventType":"PlayerVoted","payload":{"voterId":"0c6d470a","targetId":"e36749ed"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":27,"serverSeq":27,"timestamp":"2026-01-27T11:49:14.4536978Z","actor":"e36749ed","eventType":"PlayerVoted","payload":{"voterId":"e36749ed","targetId":null},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":28,"serverSeq":28,"timestamp":"2026-01-27T11:49:14.5778724Z","actor":"5837b52e","eventType":"PlayerVoted","payload":{"voterId":"5837b52e","targetId":"e36749ed"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":29,"serverSeq":29,"timestamp":"2026-01-27T11:49:24.1935643Z","actor":null,"eventType":"VotingClosed","payload":{"voteCounts":{"e36749ed":3,"__SKIP__":1},"ejectedPlayerId":"e36749ed","wasTie":false},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":30,"serverSeq":30,"timestamp":"2026-01-27T11:49:24.2526608Z","actor":null,"eventType":"PlayerEjected","payload":{"clientUuid":"e36749ed","role":"Impostor"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":31,"serverSeq":31,"timestamp":"2026-01-27T11:49:24.2567412Z","actor":null,"eventType":"GameEnded","payload":{"winningFaction":"Crew","reason":"V\u0161ichni imposto\u0159i eliminov\u00E1ni","winners":["790b1090","f6b99d0d","0c6d470a","5837b52e","b8701753"]},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":32,"serverSeq":32,"timestamp":"2026-01-27T11:50:05.6542003Z","actor":"790b1090","eventType":"PlayerLeft","payload":{"clientUuid":"790b1090","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":33,"serverSeq":33,"timestamp":"2026-01-27T11:50:05.6616226Z","actor":"f6b99d0d","eventType":"HostChanged","payload":{"newHostId":"f6b99d0d","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":34,"serverSeq":34,"timestamp":"2026-01-27T11:50:05.6664534Z","actor":"f6b99d0d","eventType":"PlayerLeft","payload":{"clientUuid":"f6b99d0d","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":35,"serverSeq":35,"timestamp":"2026-01-27T11:50:05.6692083Z","actor":"0c6d470a","eventType":"HostChanged","payload":{"newHostId":"0c6d470a","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":36,"serverSeq":36,"timestamp":"2026-01-27T11:50:05.6719027Z","actor":"0c6d470a","eventType":"PlayerLeft","payload":{"clientUuid":"0c6d470a","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":37,"serverSeq":37,"timestamp":"2026-01-27T11:50:05.6749861Z","actor":"e36749ed","eventType":"HostChanged","payload":{"newHostId":"e36749ed","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":38,"serverSeq":38,"timestamp":"2026-01-27T11:50:05.6833251Z","actor":"e36749ed","eventType":"PlayerLeft","payload":{"clientUuid":"e36749ed","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":39,"serverSeq":39,"timestamp":"2026-01-27T11:50:05.6862397Z","actor":"5837b52e","eventType":"HostChanged","payload":{"newHostId":"5837b52e","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":40,"serverSeq":40,"timestamp":"2026-01-27T11:50:05.6920217Z","actor":"5837b52e","eventType":"PlayerLeft","payload":{"clientUuid":"5837b52e","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":41,"serverSeq":41,"timestamp":"2026-01-27T11:50:05.6972418Z","actor":"b8701753","eventType":"HostChanged","payload":{"newHostId":"b8701753","previousHostId":"none"},"clientSeq":0,"actionId":null} diff --git a/data/lobbies/ff81eca67f7b44d4/wal_20260127122050.ndjson b/data/lobbies/ff81eca67f7b44d4/wal_20260127122050.ndjson new file mode 100644 index 0000000..95676ec --- /dev/null +++ b/data/lobbies/ff81eca67f7b44d4/wal_20260127122050.ndjson @@ -0,0 +1,7 @@ +{"type":"GameEvent","eventId":1,"serverSeq":1,"timestamp":"2026-01-27T12:20:50.0285207Z","actor":"1105a210","eventType":"PlayerJoined","payload":{"clientUuid":"1105a210","displayName":"TaskOwner"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":2,"serverSeq":2,"timestamp":"2026-01-27T12:21:07.5577167Z","actor":"417f8cb0","eventType":"PlayerJoined","payload":{"clientUuid":"417f8cb0","displayName":"TaskPlayer"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":3,"serverSeq":3,"timestamp":"2026-01-27T12:21:08.1701908Z","actor":"1105a210","eventType":"GameStarting","payload":{"initiatorId":null,"message":"Na\u010D\u00EDt\u00E1m mapov\u00E1 data..."},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":4,"serverSeq":4,"timestamp":"2026-01-27T12:21:15.5124348Z","actor":"1105a210","eventType":"MapDataReady","payload":{"mapData":{"center":{"lat":50.0875,"lon":14.4213},"radiusMeters":300,"buildings":[[50.0852365,14.4217774,50.0852351,14.4217809,50.0853816,14.4219839,50.085384,14.4219805,50.0854556,14.42208,50.0854536,14.4220836,50.0853963,14.4221828,50.0852973,14.4223544,50.0852307,14.422475,50.0852286,14.4224788,50.0852165,14.4224604,50.0852141,14.4224642,50.0852116,14.422462,50.0852093,14.4224657,50.0852021,14.4224549,50.0852054,14.4224494,50.0851946,14.422433,50.0851841,14.4224172,50.0851798,14.4224239,50.0851737,14.4224137,50.0851764,14.4224083,50.0851737,14.4224059,50.0851762,14.4224005,50.0851643,14.4223834,50.0851654,14.4223793,50.0850116,14.422154,50.0850095,14.422157,50.0849965,14.4221386,50.084994,14.4221429,50.0849917,14.4221397,50.084989,14.4221447,50.0849817,14.4221347,50.0849855,14.4221265,50.0849743,14.4221104,50.0849642,14.4220961,50.0849603,14.4221022,50.0849536,14.4220923,50.0849562,14.4220878,50.0849539,14.4220844,50.0849561,14.42208,50.0849441,14.422062,50.0849463,14.4220583,50.085164,14.4216824,50.0851659,14.4216792,50.0852365,14.4217774],[50.0867862,14.42134,50.0867928,14.4213518,50.0868022,14.4213425,50.0868496,14.4214351,50.0867597,14.4215642,50.0867547,14.4215584,50.0866877,14.4214767,50.0866869,14.4214793,50.0866565,14.4214484,50.0866826,14.4213863,50.0867171,14.4213331,50.086749,14.4213893,50.0867862,14.42134],[50.0867177,14.4216001,50.0866616,14.4215481,50.0866218,14.4215267,50.0866565,14.4214484,50.0866869,14.4214793,50.0866877,14.4214767,50.0867547,14.4215584,50.0867255,14.4216067,50.0867177,14.4216001],[50.0869597,14.4212765,50.0868496,14.4214351,50.0868022,14.4213425,50.0868107,14.421329,50.0869105,14.4211896,50.0869597,14.4212765],[50.0900229,14.4200752,50.0900448,14.4200726,50.0900667,14.42007,50.0900677,14.4200907,50.0901101,14.4200857,50.0901109,14.4201017,50.0901292,14.4200994,50.0901301,14.4201149,50.0901388,14.4201256,50.0901394,14.420135,50.0901399,14.4201444,50.0901326,14.4201589,50.0901361,14.4202203,50.0901384,14.4202199,50.0901404,14.4202367,50.0901385,14.420237,50.0901402,14.42026,50.0901419,14.4202837,50.0901435,14.4202835,50.0901451,14.420302,50.0901432,14.420303,50.0901448,14.4203254,50.0901463,14.4203478,50.0901509,14.420354,50.0901533,14.4203536,50.0901605,14.4204416,50.0901559,14.420443,50.0901632,14.4205387,50.0901299,14.4205465,50.0901301,14.4205561,50.0901141,14.4205485,50.0901011,14.4205753,50.0901077,14.4205934,50.0900983,14.4206018,50.0900915,14.4205849,50.0900682,14.4205875,50.0900659,14.4206086,50.0900558,14.4206065,50.0900587,14.4205859,50.0900429,14.4205647,50.0900313,14.420573,50.0900246,14.4205611,50.0900361,14.4205495,50.0900337,14.4205197,50.0900203,14.4205224,50.090019,14.4205059,50.0900324,14.4205032,50.0900292,14.4204623,50.0900157,14.4204647,50.0900144,14.4204477,50.0900278,14.4204454,50.0900243,14.4204011,50.0900088,14.4204038,50.0899978,14.4204265,50.089988,14.4204153,50.0899987,14.4203927,50.0899957,14.4203323,50.089978,14.420333,50.0899771,14.4203177,50.0899756,14.4202921,50.0899742,14.4202664,50.0899733,14.4202515,50.0899914,14.4202498,50.0899889,14.4202003,50.0899705,14.4202022,50.0899696,14.4201868,50.0899881,14.4201846,50.0899854,14.4201332,50.0899669,14.4201355,50.0899661,14.4201201,50.0899832,14.4201179,50.0899823,14.4201009,50.0900239,14.4200959,50.0900229,14.4200752],[50.0881445,14.417522,50.0879804,14.4175887,50.0879591,14.4174644,50.0879419,14.4173624,50.0879744,14.4173491,50.0879729,14.4173363,50.0880261,14.4173153,50.0880413,14.4172933,50.0880639,14.4172031,50.0880777,14.4172106,50.0880856,14.4171762,50.088101,14.4171649,50.0882163,14.4172371,50.0881445,14.417522],[50.0876661,14.4189185,50.0876762,14.4189777,50.0876791,14.4189765,50.0876803,14.4189849,50.0876852,14.4189829,50.0877118,14.4189719,50.0877164,14.41897,50.0877456,14.418958,50.0877509,14.4189558,50.0877782,14.4189445,50.0877829,14.4189425,50.0877816,14.4189355,50.0877848,14.4189342,50.087786,14.4189235,50.087782,14.4189256,50.0877746,14.4188748,50.0878098,14.4188603,50.0878924,14.4185287,50.0877909,14.4184665,50.0877497,14.4186223,50.0877504,14.4186388,50.0877561,14.4186511,50.0877692,14.4186643,50.0877501,14.4187377,50.0877362,14.4187423,50.087731,14.4187336,50.0877214,14.4187268,50.0877105,14.4187273,50.0876984,14.4187326,50.0876899,14.4186838,50.0876975,14.4186783,50.0877003,14.4186671,50.0876997,14.418646,50.0876831,14.4185518,50.0875743,14.4185958,50.0876294,14.4189322,50.0876661,14.4189185],[50.0879798,14.4181733,50.0879137,14.4184421,50.0878924,14.4185287,50.0877909,14.4184665,50.0877822,14.4184612,50.0877946,14.4184114,50.0877697,14.4183965,50.0878324,14.4181439,50.0878571,14.4181579,50.0878703,14.4181071,50.0879798,14.4181733],[50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128,50.0876638,14.4178923,50.0877905,14.4178417,50.0878197,14.4180209],[50.0876993,14.4181128,50.0876455,14.4181339,50.0876367,14.4181216,50.0876282,14.4181374,50.0876322,14.4181428,50.0876383,14.4181808,50.0875113,14.4182306,50.0874675,14.4179733,50.0876638,14.4178923,50.0876993,14.4181128],[50.087711,14.4184813,50.0877069,14.4184838,50.0876986,14.4185041,50.0876833,14.4185101,50.0876898,14.4185491,50.0876831,14.4185518,50.0875743,14.4185958,50.0875113,14.4182306,50.0876383,14.4181808,50.087645,14.4181809,50.0876513,14.4182156,50.0876637,14.4182106,50.087711,14.4184813],[50.0868377,14.4199336,50.0867709,14.4199912,50.0866854,14.420076,50.086676,14.4200854,50.0866743,14.420093,50.086669,14.4200906,50.0866708,14.420081,50.0866431,14.4200094,50.0866515,14.4200015,50.0866897,14.4199658,50.0867613,14.4199045,50.0868154,14.4198553,50.0868377,14.4199336],[50.086733,14.4197963,50.0867613,14.4199045,50.0866897,14.4199658,50.0866515,14.4200015,50.0866431,14.4200094,50.0865794,14.419876,50.0865749,14.4198749,50.0865712,14.4198648,50.086569,14.4198652,50.0865668,14.4198643,50.0865651,14.4198622,50.086564,14.4198591,50.0865638,14.4198557,50.0865644,14.4198525,50.0865658,14.4198498,50.0865677,14.4198482,50.0865699,14.4198479,50.086572,14.4198489,50.0865737,14.4198435,50.0865776,14.4198404,50.0867358,14.419599,50.0867394,14.4196051,50.0867479,14.4196194,50.086781,14.419735,50.086733,14.4197963],[50.0868941,14.419886,50.0868377,14.4199336,50.0868154,14.4198553,50.086781,14.419735,50.0867479,14.4196194,50.0867394,14.4196051,50.0867358,14.419599,50.0867349,14.4195925,50.0867645,14.41956,50.0867867,14.4195356,50.0867929,14.419556,50.0868941,14.419886],[50.0869477,14.4198396,50.0868941,14.419886,50.0867929,14.419556,50.0867867,14.4195356,50.0868386,14.4194881,50.0868482,14.419519,50.0869477,14.4198396],[50.0870132,14.4198083,50.0869477,14.4198396,50.0868482,14.419519,50.0868386,14.4194881,50.0869026,14.4194422,50.0869091,14.4194606,50.0869135,14.4194752,50.0870132,14.4198083],[50.0870663,14.4197094,50.0870627,14.419712,50.0870419,14.4196639,50.0869884,14.4197038,50.086996,14.4197404,50.0870109,14.4197885,50.0870216,14.4197824,50.0870258,14.419799,50.0870132,14.4198083,50.0869135,14.4194752,50.0869091,14.4194606,50.0869197,14.4194526,50.086915,14.4194347,50.0869673,14.4194036,50.0869768,14.4194328,50.0870663,14.4197094],[50.0869978,14.4194069,50.0870057,14.4194009,50.0870087,14.4194115,50.087077,14.4196521,50.0870941,14.419693,50.0870826,14.4196963,50.0870663,14.4197094,50.0869768,14.4194328,50.0869673,14.4194036,50.0869753,14.4193989,50.0869938,14.4193916,50.0869978,14.4194069],[50.0871134,14.419361,50.0871128,14.4193911,50.0871962,14.4196239,50.087103,14.4196905,50.0870941,14.419693,50.087077,14.4196521,50.0870087,14.4194115,50.0870057,14.4194009,50.0870025,14.4193903,50.0870342,14.4193716,50.0870368,14.4193824,50.0870459,14.4193758,50.0870428,14.4193632,50.0870652,14.419341,50.0870715,14.4193538,50.087081,14.4193423,50.0870751,14.4193304,50.0870803,14.4193248,50.0871023,14.4193013,50.0871101,14.4193435,50.0871134,14.419361],[50.0872719,14.419554,50.0871962,14.4196239,50.0871128,14.4193911,50.0871134,14.419361,50.0871101,14.4193435,50.0871023,14.4193013,50.0871976,14.4192523,50.0872089,14.4192981,50.0872719,14.419554],[50.0873766,14.4193427,50.0873284,14.4193727,50.0873535,14.4194916,50.0872987,14.4195293,50.0872719,14.419554,50.0872089,14.4192981,50.0871976,14.4192523,50.0872519,14.419232,50.0873048,14.4192224,50.0873663,14.4192173,50.0873687,14.4192463,50.0873766,14.4193427],[50.0873096,14.4197004,50.087316,14.4196974,50.0873405,14.4196861,50.0873325,14.4196524,50.0873631,14.4196347,50.0873605,14.4196194,50.0873639,14.4196181,50.0874261,14.4198819,50.0873134,14.4199165,50.0873119,14.4199105,50.0873082,14.419912,50.0872849,14.4198103,50.0872692,14.4198193,50.0872263,14.4196818,50.0872829,14.4196296,50.0873096,14.4197004],[50.0874843,14.419615,50.0875223,14.4198515,50.0874261,14.4198819,50.0873639,14.4196181,50.0874033,14.4195999,50.0874187,14.419637,50.0874224,14.4196525,50.0874843,14.419615],[50.0864918,14.4207098,50.0865121,14.4206948,50.0865268,14.420685,50.0865446,14.4206895,50.0865446,14.4206976,50.0865715,14.4207201,50.0865755,14.4207124,50.0865855,14.4207217,50.0865846,14.4207311,50.0866236,14.4207744,50.0866145,14.4207942,50.0865417,14.4209616,50.0865336,14.420967,50.0864823,14.4211113,50.0864565,14.4211967,50.0864544,14.4211954,50.0864243,14.4212806,50.0864156,14.4213573,50.0864109,14.4213547,50.0863079,14.4213001,50.0863604,14.4211518,50.0863937,14.4210379,50.0863925,14.4210182,50.0864451,14.4208507,50.086443,14.4208487,50.0864701,14.4207676,50.0864871,14.4207123,50.0864918,14.4207098],[50.0875434,14.4196066,50.0875773,14.4198286,50.0875223,14.4198515,50.0874843,14.419615,50.0875255,14.4195963,50.0875334,14.4195994,50.0875434,14.4196066],[50.0876784,14.4195982,50.0876906,14.4197917,50.0876584,14.4198015,50.0875868,14.4198233,50.0875872,14.41983,50.0875788,14.4198325,50.0875773,14.4198286,50.0875434,14.4196066,50.0876784,14.4195982],[50.0876685,14.4193966,50.0877007,14.4195514,50.087676,14.4195627,50.0876784,14.4195982,50.0875434,14.4196066,50.0875349,14.4195654,50.087525,14.4195328,50.0875566,14.4195022,50.0875841,14.4194759,50.0876685,14.4193966],[50.0875817,14.4192982,50.0876485,14.4193627,50.0876685,14.4193966,50.0875841,14.4194759,50.0875374,14.4193605,50.087541,14.4193549,50.0875817,14.4192982],[50.087541,14.4193549,50.0875374,14.4193605,50.0875841,14.4194759,50.0875566,14.4195022,50.0874609,14.4193146,50.0875074,14.4192768,50.087541,14.4193549],[50.0875566,14.4195022,50.087525,14.4195328,50.08749,14.4195663,50.0874755,14.419576,50.0874585,14.4195335,50.0874654,14.4195244,50.0874508,14.419494,50.0874082,14.4195333,50.087412,14.41955,50.0873828,14.4195754,50.087361,14.4194993,50.087347,14.4193843,50.0873932,14.4193565,50.0873946,14.4193608,50.0874609,14.4193146,50.0875566,14.4195022],[50.0862344,14.4212773,50.0862539,14.4211384,50.0862438,14.4211334,50.0862634,14.4210169,50.086279,14.4210226,50.0862829,14.4210075,50.0862844,14.4210078,50.0862987,14.4209441,50.086316,14.4208449,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.086197,14.4210164,50.0861945,14.4210166,50.0861771,14.421154,50.0861793,14.4211559,50.0861654,14.4212369,50.0862344,14.4212773],[50.0871545,14.4177715,50.0871603,14.417784,50.0871634,14.4177827,50.0871669,14.4178053,50.0871709,14.4178037,50.0871716,14.4178075,50.0872469,14.4177763,50.0872474,14.4177801,50.0872505,14.417779,50.0872508,14.4177856,50.0872531,14.4177954,50.0872596,14.4178033,50.087268,14.4178066,50.0872776,14.417804,50.087283,14.4178065,50.0872806,14.4178097,50.0872898,14.4178678,50.0872913,14.4178672,50.0873199,14.4180345,50.0873217,14.4180338,50.0873479,14.4181869,50.0873461,14.4181876,50.0873709,14.4183325,50.0873748,14.4183309,50.0874211,14.4185941,50.087416,14.4185962,50.0874414,14.4187442,50.0874448,14.4187428,50.087469,14.4188867,50.087466,14.418888,50.0874734,14.4189314,50.0874708,14.4189608,50.0874642,14.4189824,50.0874538,14.4189978,50.0874409,14.4190067,50.0874225,14.4190138,50.0874231,14.4190175,50.087381,14.4190348,50.0873802,14.4190302,50.0873477,14.4190442,50.0873393,14.4190479,50.0873403,14.419053,50.0873355,14.4190555,50.0873343,14.41905,50.0873224,14.4190551,50.0873102,14.4190604,50.0873111,14.4190654,50.0873056,14.4190677,50.0873047,14.4190627,50.0872646,14.41908,50.087265,14.4190827,50.087224,14.4190996,50.0872235,14.4190964,50.0872047,14.4191058,50.0871691,14.4190979,50.0871488,14.4190572,50.0871432,14.4190246,50.0871407,14.4190257,50.0871165,14.4188801,50.0871184,14.4188793,50.0870933,14.4187328,50.0870893,14.4187345,50.0870438,14.4184709,50.0870482,14.418469,50.0870228,14.4183208,50.0870206,14.4183217,50.0869942,14.4181709,50.086997,14.4181697,50.0869682,14.4180015,50.0869579,14.4179414,50.0869569,14.4179355,50.0869675,14.4179287,50.086973,14.4179201,50.0869754,14.417905,50.0869748,14.4178933,50.0869772,14.4178917,50.0869766,14.4178883,50.0870518,14.4178579,50.0870512,14.4178531,50.0870549,14.4178516,50.0870511,14.4178298,50.0870534,14.4178288,50.0870541,14.417817,50.0870708,14.4177952,50.0870858,14.4177825,50.0871016,14.4177732,50.087118,14.4177682,50.0871353,14.4177669,50.0871545,14.4177715],[50.0883742,14.4188188,50.0884674,14.419135,50.0883426,14.4192223,50.0883104,14.4191129,50.0882984,14.4191209,50.0883004,14.4191283,50.0882582,14.4191621,50.0881896,14.4189663,50.0883373,14.4188452,50.0883742,14.4188188],[50.0882582,14.4191621,50.0882368,14.4191798,50.0882444,14.419207,50.0881553,14.4192816,50.0881454,14.4192542,50.088122,14.4192729,50.0880549,14.419077,50.088065,14.4190684,50.0881614,14.4189859,50.0881634,14.4189872,50.0881896,14.4189663,50.0882582,14.4191621],[50.08813,14.4192973,50.0881049,14.4193169,50.0880987,14.4193021,50.088062,14.4193282,50.0880774,14.4194314,50.0880704,14.4194338,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880129,14.4195694,50.088016,14.4195914,50.087977,14.4196026,50.0879411,14.4196094,50.0879385,14.4196015,50.0879345,14.419559,50.0879318,14.419559,50.0879136,14.4194261,50.087906,14.4194279,50.0879045,14.4194189,50.0879124,14.419417,50.0879061,14.4193713,50.0878982,14.4193731,50.087897,14.4193644,50.0879048,14.4193616,50.0878901,14.4192286,50.0878913,14.4192196,50.0878924,14.419211,50.0880467,14.4190837,50.0880549,14.419077,50.088122,14.4192729,50.08813,14.4192973],[50.0877761,14.419814,50.0877568,14.4196469,50.0878354,14.4196225,50.0878359,14.4196309,50.0878392,14.4196313,50.0878731,14.4196255,50.0879034,14.4196202,50.0879035,14.4196179,50.0879094,14.419617,50.087909,14.4196097,50.0879385,14.4196015,50.0879411,14.4196094,50.087977,14.4196026,50.0879935,14.4197308,50.0879964,14.4197526,50.0880017,14.4197512,50.0880209,14.4199062,50.0880168,14.4199072,50.0880204,14.4199381,50.0880399,14.4200926,50.0880372,14.4200984,50.0880263,14.4201021,50.0880258,14.4200982,50.0879911,14.4201101,50.0879859,14.4201256,50.087982,14.4201467,50.0879712,14.4201725,50.0879579,14.4201883,50.0879392,14.4201974,50.0879238,14.4201975,50.0879105,14.4201905,50.0878967,14.420177,50.087883,14.4201449,50.0878798,14.4201446,50.0878713,14.4201329,50.0878696,14.4201266,50.08782,14.4201418,50.0877992,14.4199826,50.087796,14.4199838,50.0877925,14.4199576,50.0877847,14.4198982,50.0877768,14.4198387,50.0877737,14.4198149,50.0877761,14.419814],[50.0883034,14.4199265,50.0881912,14.4199994,50.0881863,14.4199999,50.0881614,14.4200158,50.0880467,14.4195802,50.0880607,14.4195712,50.0881877,14.4194897,50.0883034,14.4199265],[50.0881614,14.4200158,50.0881138,14.4200467,50.088113,14.4200558,50.0880931,14.4200682,50.0880882,14.4200618,50.0880399,14.4200926,50.0880204,14.4199381,50.0880458,14.4199204,50.0880362,14.4198856,50.0880462,14.4198784,50.0880323,14.4198231,50.088059,14.4198072,50.088037,14.4197235,50.0880211,14.4197322,50.0880186,14.4197171,50.0879935,14.4197308,50.087977,14.4196026,50.088016,14.4195914,50.0880467,14.4195802,50.0881614,14.4200158],[50.0882589,14.4245902,50.0882602,14.4245825,50.0882897,14.4245787,50.0882899,14.4245826,50.0882961,14.4245778,50.0883193,14.4245745,50.0883253,14.4245783,50.0883254,14.4245738,50.0883574,14.4245718,50.0883577,14.4245791,50.0884292,14.4245714,50.0884308,14.4245815,50.0884539,14.4250029,50.0884593,14.4250549,50.0884617,14.425123,50.0884574,14.4251242,50.088463,14.4252171,50.0884527,14.4252185,50.0884563,14.4252531,50.0884256,14.4252603,50.0884261,14.4252697,50.0884105,14.425273,50.0884147,14.4253241,50.0884307,14.4253217,50.0884321,14.4253376,50.0884166,14.4253415,50.0884211,14.4253974,50.0884372,14.4253958,50.0884389,14.4254163,50.0884225,14.4254184,50.0884271,14.4254693,50.0884435,14.425465,50.0884448,14.4254806,50.0884284,14.4254839,50.0884326,14.4255277,50.0884482,14.4255242,50.0884492,14.4255368,50.0884315,14.4255379,50.0884251,14.4255702,50.088442,14.4255853,50.0884354,14.4256034,50.0884106,14.4256364,50.0883973,14.4256451,50.0883697,14.4256505,50.0883569,14.4256476,50.0883269,14.4256255,50.0883177,14.4256131,50.0883305,14.4255939,50.0883275,14.4255669,50.0883078,14.4255728,50.0883018,14.4255746,50.0882996,14.4255534,50.0883164,14.4255479,50.0883126,14.4255138,50.0882955,14.4255175,50.0882929,14.4254993,50.0883104,14.4254941,50.0883061,14.4254475,50.0882873,14.4254514,50.0882847,14.4254292,50.0883026,14.425425,50.0882977,14.4253771,50.0882793,14.4253819,50.0882771,14.4253602,50.0882951,14.4253555,50.0882887,14.4253043,50.0882496,14.4253128,50.0882218,14.425165,50.0881962,14.4247165,50.0881937,14.424716,50.0881934,14.4247114,50.0881896,14.4247127,50.088185,14.4246004,50.0881882,14.4245974,50.0882589,14.4245902],[50.0891319,14.4204104,50.0891347,14.4204147,50.0891357,14.4204102,50.0891388,14.4204177,50.0891406,14.4204153,50.0891477,14.4204335,50.0891458,14.4204351,50.0891719,14.420503,50.0891738,14.4205013,50.0891799,14.4205164,50.0891781,14.420518,50.0891809,14.4205245,50.0891746,14.4205324,50.0891956,14.4205847,50.0892041,14.4205769,50.0892104,14.4205945,50.0892025,14.4206027,50.0892229,14.4206549,50.0892314,14.4206477,50.0892389,14.4206658,50.0892302,14.4206739,50.0892504,14.4207271,50.0892589,14.4207181,50.089266,14.4207358,50.089258,14.420745,50.0892693,14.4207736,50.0892789,14.4207976,50.0892859,14.4207925,50.0893256,14.4208935,50.0893273,14.4208913,50.0893347,14.4209088,50.0893298,14.4209141,50.0893348,14.4209273,50.0892866,14.4209768,50.0892917,14.4210199,50.0892991,14.421022,50.0892973,14.4210363,50.0892904,14.4210346,50.0892802,14.4210739,50.089285,14.4210813,50.0892799,14.4210896,50.0892749,14.4210844,50.0892519,14.4211054,50.0892524,14.4211145,50.0892449,14.4211171,50.0892441,14.4211088,50.0892164,14.4211063,50.0892126,14.4211136,50.0892081,14.4211089,50.08921,14.4211007,50.0891837,14.4210755,50.0891349,14.4211207,50.0891293,14.4211051,50.089127,14.4211069,50.0891209,14.4210902,50.0891224,14.4210881,50.0890949,14.4210177,50.0890932,14.4210192,50.089087,14.421003,50.0890889,14.4210002,50.0890838,14.4209873,50.0890903,14.4209814,50.0890686,14.4209273,50.0890603,14.4209336,50.0890539,14.4209171,50.0890619,14.4209085,50.0890413,14.4208551,50.0890325,14.4208623,50.0890252,14.4208453,50.0890344,14.4208364,50.089013,14.420782,50.089004,14.4207906,50.088998,14.4207745,50.0890075,14.4207654,50.088986,14.4207126,50.0889782,14.4207183,50.088977,14.4207141,50.0889749,14.4207164,50.0889677,14.4206979,50.0889692,14.4206956,50.0889436,14.4206286,50.0889417,14.4206307,50.0889352,14.4206148,50.0889378,14.420612,50.0889347,14.4206049,50.0889383,14.4206011,50.0889375,14.420598,50.0889476,14.4205878,50.0889489,14.4205913,50.0889838,14.4205569,50.0889833,14.4205539,50.0889934,14.4205434,50.0889953,14.4205471,50.0890029,14.4205399,50.0890741,14.4204723,50.0890746,14.4204667,50.0890849,14.4204574,50.089087,14.4204602,50.0890892,14.4204586,50.0891222,14.4204259,50.0891219,14.4204221,50.0891319,14.4204104],[50.0887928,14.4186327,50.0887923,14.4186448,50.0888057,14.4186555,50.0888105,14.4186474,50.0888135,14.4186507,50.0888092,14.418659,50.0888124,14.4186686,50.0888306,14.418662,50.0888302,14.4186594,50.088863,14.41865,50.0888827,14.4186444,50.0888973,14.4187198,50.0888801,14.4187257,50.0888979,14.4188483,50.0889057,14.4188467,50.0889077,14.4188613,50.0889002,14.4188644,50.0889051,14.4189012,50.0889133,14.4188998,50.0889154,14.418914,50.0889073,14.4189167,50.0889129,14.4189556,50.0889345,14.4189479,50.0889484,14.4190539,50.0888923,14.4190748,50.0888889,14.4190454,50.0887617,14.4190905,50.0887612,14.419085,50.088756,14.4190878,50.0887541,14.4190734,50.0887449,14.4190769,50.0887378,14.4190327,50.0887533,14.4190257,50.0887463,14.4189798,50.0887368,14.4189832,50.0887281,14.4189383,50.0887069,14.4189463,50.0886915,14.4189526,50.0886819,14.4189198,50.0887203,14.418903,50.0887119,14.4188615,50.0887251,14.4188553,50.0887161,14.4187998,50.0887018,14.4187065,50.0887375,14.4186888,50.0887382,14.4186963,50.0887557,14.4186883,50.0887571,14.4186798,50.0887524,14.4186772,50.0887539,14.4186704,50.0887586,14.418673,50.0887684,14.4186502,50.0887652,14.418644,50.0887686,14.4186411,50.088772,14.4186482,50.0887795,14.4186462,50.0887872,14.4186442,50.0887881,14.4186324,50.0887928,14.4186327],[50.0848412,14.4219009,50.0847324,14.4217393,50.0847765,14.42166,50.0848203,14.4215813,50.0849386,14.4217388,50.0848412,14.4219009],[50.0847835,14.4215317,50.0848203,14.4215813,50.0847765,14.42166,50.0847324,14.4217393,50.0846971,14.42169,50.0847409,14.4216098,50.0847835,14.4215317],[50.0847635,14.4212515,50.0847572,14.4212409,50.0847164,14.4213118,50.0846028,14.4211588,50.0846803,14.421019,50.0848031,14.4211879,50.0847635,14.4212515],[50.0847851,14.4214053,50.0847164,14.4213118,50.0847572,14.4212409,50.0847635,14.4212515,50.0848031,14.4211879,50.0848634,14.4212709,50.0847851,14.4214053],[50.0848988,14.4214336,50.0848601,14.4215056,50.0847851,14.4214053,50.0848634,14.4212709,50.0849234,14.4213568,50.0848888,14.4214191,50.0848988,14.4214336],[50.0850567,14.4215378,50.0849788,14.4216669,50.0848973,14.4215562,50.0849384,14.4214792,50.0849246,14.4214577,50.0849562,14.4214005,50.0850567,14.4215378],[50.0849234,14.4213568,50.0849562,14.4214005,50.0849246,14.4214577,50.0849384,14.4214792,50.0848973,14.4215562,50.0848601,14.4215056,50.0848988,14.4214336,50.0848888,14.4214191,50.0849234,14.4213568],[50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855872,14.4186924,50.0856294,14.4187436,50.0856609,14.4187822,50.0856929,14.4188115,50.0856766,14.4188882,50.0856803,14.4188895,50.0856742,14.418935,50.0856766,14.4189561,50.0855627,14.4189574,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488],[50.0902364,14.4207506,50.0902666,14.4208993,50.090242,14.4209109,50.090266,14.4210205,50.0902915,14.4210085,50.0902951,14.4209918,50.0903356,14.4209719,50.0903461,14.4210214,50.0903717,14.421008,50.0903755,14.4210292,50.0904413,14.4209955,50.090459,14.4210806,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901455,14.4207969,50.0901496,14.4207948,50.0902364,14.4207506],[50.0875811,14.4228312,50.0875845,14.4228461,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0874538,14.4226472,50.0874758,14.4227699,50.0875623,14.4227316,50.0875667,14.422752,50.0875853,14.4227423,50.0876021,14.4228202,50.0875811,14.4228312],[50.0874467,14.4224071,50.0875038,14.4223827,50.0875186,14.4223753,50.0875216,14.4223905,50.0875115,14.4223954,50.0875154,14.4224144,50.0875168,14.4224215,50.0875175,14.4224248,50.0875152,14.422426,50.0875112,14.4224281,50.0874971,14.4224353,50.0875008,14.4224531,50.0874429,14.4224695,50.087456,14.4225656,50.0875192,14.4225421,50.0875216,14.4225534,50.0875382,14.4225452,50.0875375,14.4225462,50.0875363,14.42255,50.0875361,14.4225541,50.0875367,14.4225582,50.0875381,14.4225617,50.0875401,14.4225642,50.0875426,14.4225656,50.0875451,14.4225657,50.0875467,14.4225651,50.0875571,14.4226129,50.0874538,14.4226472,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0874268,14.4223014,50.0874467,14.4224071],[50.0875216,14.4223905,50.0875186,14.4223753,50.0875353,14.4223684,50.0875173,14.4222591,50.087468,14.4222785,50.0874919,14.4223827,50.0875026,14.4223772,50.0875038,14.4223827,50.0874467,14.4224071,50.0874268,14.4223014,50.0873286,14.4223401,50.0873107,14.4221595,50.0873731,14.4221355,50.0873639,14.4221012,50.0873547,14.4220668,50.0875174,14.4219837,50.0875237,14.4220169,50.08753,14.42205,50.0875877,14.4223582,50.0875815,14.4223614,50.0875874,14.4223891,50.0875302,14.4224185,50.0875242,14.4223891,50.0875216,14.4223905],[50.08753,14.42205,50.0875237,14.4220169,50.0875174,14.4219837,50.0875646,14.4219599,50.0876792,14.421902,50.0876874,14.4219287,50.0876955,14.4219552,50.0877362,14.4220901,50.0876545,14.4221317,50.0876706,14.4222149,50.0877101,14.4221956,50.0876973,14.4221511,50.0877424,14.4221219,50.0877642,14.4222068,50.087785,14.4222877,50.0877747,14.4222922,50.08777,14.4222943,50.0877675,14.4222955,50.0877665,14.422291,50.0877649,14.4222836,50.0877623,14.4222719,50.0877438,14.4222817,50.0877488,14.4223046,50.0877065,14.4223273,50.0877019,14.422306,50.0876877,14.4223135,50.0876898,14.422323,50.0876874,14.4223248,50.0876855,14.4223278,50.0876848,14.4223296,50.0876844,14.4223316,50.0876841,14.4223357,50.0876846,14.4223389,50.0876665,14.4223484,50.0876622,14.422317,50.0876558,14.4222685,50.0876538,14.4222536,50.0876329,14.4222643,50.0876238,14.4222689,50.0876225,14.4222657,50.0876037,14.4222739,50.0876169,14.4223398,50.0876227,14.4223715,50.0876055,14.42238,50.0875997,14.4223828,50.0875969,14.4223698,50.0875938,14.4223551,50.0875877,14.4223582,50.08753,14.42205],[50.0892836,14.4177191,50.0892904,14.4177481,50.0893442,14.4177158,50.0893532,14.4177536,50.0893663,14.4178088,50.0893135,14.4178408,50.0893199,14.4178672,50.0893255,14.4178628,50.0893354,14.4178737,50.0893422,14.4179033,50.0893396,14.4179206,50.0893337,14.4179233,50.0893564,14.4180157,50.0892888,14.4180559,50.0892211,14.418096,50.0891976,14.4180009,50.089196,14.4180014,50.0891947,14.4179948,50.0891958,14.4179936,50.0891872,14.4179587,50.0891858,14.4179593,50.0891841,14.4179515,50.0891852,14.4179506,50.0891508,14.4178111,50.0891478,14.4177991,50.0892157,14.4177591,50.0892836,14.4177191],[50.0893564,14.4180157,50.0893732,14.4180833,50.0893868,14.418087,50.0893975,14.4181051,50.0894442,14.4181001,50.089448,14.4181935,50.0894517,14.4182868,50.0892734,14.4183058,50.0892211,14.418096,50.0892888,14.4180559,50.0893564,14.4180157],[50.0896682,14.4184301,50.0896932,14.4184212,50.0897158,14.4184188,50.0897434,14.4184241,50.0899364,14.4184305,50.0899358,14.4185379,50.0897988,14.4185315,50.0897981,14.4185565,50.0897939,14.4185551,50.089793,14.4186364,50.0897442,14.4186474,50.0897447,14.4186521,50.0897159,14.4186533,50.0897188,14.4187021,50.0896318,14.4187238,50.0895947,14.4187246,50.0895917,14.4186691,50.0895715,14.4186696,50.0895706,14.4186404,50.0895637,14.4184433,50.0896682,14.4184301],[50.0899402,14.4187402,50.0899432,14.4187393,50.0899472,14.4188104,50.0899429,14.4188092,50.0899414,14.4188418,50.089929,14.4188676,50.0899146,14.4188827,50.0899174,14.4188943,50.0898653,14.4189283,50.0898627,14.4189172,50.0897993,14.4189578,50.0897993,14.4189622,50.0897586,14.4189888,50.0897576,14.4189834,50.0896935,14.4190253,50.0896945,14.4190308,50.0896536,14.4190569,50.0896531,14.4190539,50.0895981,14.4188501,50.0895963,14.4188429,50.0896417,14.4188168,50.0896373,14.4187956,50.0896647,14.4187769,50.0896718,14.4187935,50.0896876,14.4187825,50.0896848,14.418763,50.0897121,14.4187447,50.0897171,14.4187693,50.0897676,14.4187391,50.0897686,14.4187465,50.0897803,14.4187343,50.0897919,14.4187364,50.0897954,14.4187148,50.0899385,14.4187043,50.0899402,14.4187402],[50.0895663,14.4188699,50.0895981,14.4188501,50.0896531,14.4190539,50.0894841,14.4191617,50.0894122,14.4188637,50.0895283,14.4187949,50.0895381,14.4188329,50.0895294,14.4188398,50.0895369,14.4188719,50.0895408,14.4188702,50.089556,14.4188845,50.0895584,14.4188937,50.0895642,14.4188898,50.0895675,14.4188778,50.0895663,14.4188699],[50.0893222,14.4184664,50.0895637,14.4184433,50.0895706,14.4186404,50.0895483,14.4186419,50.0895481,14.4186579,50.0895279,14.4186598,50.0895285,14.4186654,50.0894998,14.4186683,50.0895189,14.4187478,50.0895165,14.4187482,50.0895283,14.4187949,50.0894122,14.4188637,50.089316,14.418483,50.0893222,14.4184664],[50.0886774,14.4185632,50.0887018,14.4187065,50.0887161,14.4187998,50.0886585,14.418845,50.0886551,14.4188608,50.0886732,14.4189221,50.0885478,14.4190018,50.0884749,14.4187547,50.0884797,14.4187245,50.0886774,14.4185632],[50.0886819,14.4189198,50.0886915,14.4189526,50.0887069,14.4189463,50.0887113,14.4189629,50.0886976,14.4189729,50.0887179,14.4190403,50.0887103,14.4190458,50.0887217,14.4190835,50.0887166,14.4190877,50.0887394,14.4191642,50.0886194,14.4192507,50.0885478,14.4190018,50.0886732,14.4189221,50.0886819,14.4189198],[50.0887766,14.4191385,50.0887915,14.4191861,50.0888166,14.419168,50.0888263,14.4191713,50.0888354,14.419212,50.0888324,14.419226,50.0888072,14.4192427,50.0888183,14.4192811,50.0888158,14.4192955,50.0887871,14.4193137,50.0888035,14.4193731,50.0888053,14.4193969,50.0888207,14.4194009,50.0888267,14.4193771,50.0888841,14.419338,50.0889337,14.4195167,50.088752,14.419635,50.0887273,14.4196199,50.0886194,14.4192507,50.0887394,14.4191642,50.0887766,14.4191385],[50.0890491,14.4192107,50.0890757,14.4191941,50.0891286,14.4193901,50.0890451,14.4194435,50.0890456,14.4194486,50.0890416,14.419452,50.0890392,14.4194477,50.0890211,14.4194593,50.0890216,14.4194639,50.0890176,14.419467,50.0890153,14.419464,50.0889337,14.4195167,50.0888841,14.419338,50.0888795,14.4193209,50.0889076,14.4193029,50.088898,14.4192673,50.0890391,14.4191735,50.0890491,14.4192107],[50.0889974,14.4188506,50.0889808,14.4187865,50.0889183,14.4188261,50.088934,14.4188908,50.0889909,14.4188601,50.0889974,14.4188506],[50.0889909,14.4188601,50.0890482,14.4190878,50.0889738,14.4190633,50.088934,14.4188908,50.0889909,14.4188601],[50.0893285,14.4192608,50.0891286,14.4193901,50.0890757,14.4191941,50.0891377,14.4191553,50.0891664,14.4191668,50.089171,14.4191484,50.0891462,14.4191253,50.0891268,14.4190417,50.0892555,14.4189668,50.0893285,14.4192608],[50.089072,14.418804,50.0891981,14.4187321,50.0892166,14.4188095,50.0892221,14.4188203,50.0892217,14.4188303,50.0892307,14.4188663,50.0892349,14.418871,50.0892342,14.4188823,50.0892555,14.4189668,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804],[50.0890482,14.4190878,50.0891268,14.4190417,50.0891207,14.4190144,50.0890956,14.4190284,50.0890894,14.4190043,50.0890804,14.4190079,50.0890497,14.4188803,50.0890538,14.4188785,50.0890473,14.418853,50.0890793,14.4188324,50.089072,14.418804,50.0889974,14.4188506,50.0889909,14.4188601,50.0890482,14.4190878],[50.0890453,14.4186979,50.0890377,14.4186919,50.0890227,14.4187156,50.0889978,14.4187186,50.0889804,14.4185041,50.0890795,14.418483,50.0890796,14.4184805,50.0891172,14.4184722,50.0891408,14.4184932,50.0891468,14.4185388,50.0891981,14.4187321,50.089072,14.418804,50.089061,14.418762,50.0890518,14.4187668,50.0890395,14.4187194,50.0890453,14.4186979],[50.0888678,14.4185271,50.0889804,14.4185041,50.0889978,14.4187186,50.0890002,14.4187483,50.0889444,14.4187602,50.0889421,14.4187334,50.0889313,14.4187209,50.088899,14.4187282,50.0888973,14.4187198,50.0888827,14.4186444,50.0888804,14.4186259,50.0888678,14.4185271],[50.0887626,14.4173717,50.0887698,14.4173628,50.0887688,14.4173605,50.0888176,14.4173025,50.0888272,14.4172442,50.0889663,14.4173067,50.0889119,14.4175978,50.0887136,14.4176079,50.0887089,14.4173888,50.0887031,14.4172191,50.0887082,14.4171912,50.0887686,14.4172179,50.0887592,14.417268,50.0887626,14.4173717],[50.0886256,14.4173933,50.0887089,14.4173888,50.0887136,14.4176079,50.0885929,14.4176169,50.0885873,14.4174319,50.0885872,14.4174287,50.0885985,14.4174039,50.0886259,14.4174017,50.0886256,14.4173933],[50.0883284,14.4175976,50.0883373,14.4176162,50.0883527,14.4176266,50.0883693,14.4176211,50.0883708,14.417626,50.0883834,14.4176248,50.088385,14.4176293,50.0883906,14.4176295,50.0883934,14.4176241,50.088521,14.4176225,50.0885249,14.4176195,50.0885929,14.4176169,50.0885873,14.4174319,50.0885408,14.4174299,50.0885388,14.417436,50.0885286,14.4174359,50.0885257,14.417419,50.0885205,14.4174012,50.0885081,14.4173784,50.0885011,14.4173732,50.0885042,14.4173575,50.0885101,14.4173535,50.0885266,14.4172888,50.0884149,14.4172176,50.088384,14.4173396,50.0883811,14.4173377,50.0883679,14.4173894,50.0883711,14.4173912,50.0883414,14.4175077,50.0883377,14.4175099,50.0883355,14.4175192,50.088337,14.4175215,50.088331,14.4175432,50.0883328,14.4175462,50.0883247,14.4175733,50.0883284,14.4175976],[50.0888792,14.4180624,50.0888669,14.4180145,50.08889,14.417999,50.0888856,14.417982,50.0888661,14.4179941,50.0888459,14.4179951,50.0888458,14.4180101,50.0888034,14.4180103,50.0888033,14.4179947,50.0887764,14.4179961,50.0887759,14.4179912,50.088772,14.4177738,50.0889455,14.4177641,50.088959,14.4177801,50.0890108,14.4179849,50.0888792,14.4180624],[50.0890572,14.4181747,50.0890597,14.4181768,50.0890832,14.4182753,50.089065,14.4183215,50.088889,14.4183519,50.0888701,14.4181559,50.0888886,14.418153,50.0888977,14.4181357,50.0888792,14.4180624,50.0890108,14.4179849,50.0890122,14.4179841,50.0890572,14.4181747],[50.0888242,14.4181284,50.0888302,14.418137,50.0888678,14.41813,50.0888701,14.4181559,50.088889,14.4183519,50.0887096,14.4183884,50.0886937,14.4181631,50.0887262,14.4181577,50.0887334,14.4181458,50.0888242,14.4181284],[50.0885745,14.4184574,50.0885144,14.4182716,50.0885089,14.4182561,50.0885687,14.4182163,50.0885688,14.4182081,50.0886166,14.418176,50.0886937,14.4181631,50.0887096,14.4183884,50.0886698,14.4183948,50.0885745,14.4184574],[50.0886134,14.4177819,50.088772,14.4177738,50.0887759,14.4179912,50.0887517,14.417997,50.0887528,14.4180156,50.0886432,14.4180219,50.0886432,14.4180048,50.0886187,14.4180054,50.0886134,14.4177819],[50.0885191,14.4177824,50.0885241,14.4177819,50.0885268,14.4177867,50.0885418,14.4177863,50.0885441,14.4177825,50.0885501,14.4177819,50.0885501,14.4177852,50.0886134,14.4177819,50.0886187,14.4180054,50.0886002,14.4180055,50.0885991,14.4180271,50.0884811,14.418031,50.0884801,14.418013,50.08846,14.418014,50.0884596,14.4180079,50.0884549,14.4177905,50.088519,14.4177858,50.0885191,14.4177824],[50.0881829,14.4181358,50.0883172,14.4182192,50.0882716,14.4184006,50.0882646,14.4183952,50.0882519,14.4184488,50.0882353,14.4184413,50.0882252,14.4184815,50.0881136,14.4184155,50.0881829,14.4181358],[50.0884886,14.4182917,50.0885144,14.4182716,50.0885745,14.4184574,50.0884406,14.4185677,50.0883785,14.4183835,50.0884028,14.4183645,50.0883851,14.4183086,50.088418,14.4182814,50.0884227,14.4182962,50.0884411,14.4182816,50.0884371,14.4182664,50.0884709,14.418239,50.0884886,14.4182917],[50.0884406,14.4185677,50.0883832,14.4186152,50.0883524,14.4186405,50.0883048,14.4186797,50.0882508,14.4185162,50.0882753,14.418498,50.0882673,14.4184712,50.0883078,14.4184387,50.0883037,14.4184255,50.0883739,14.4183697,50.0883785,14.4183835,50.0884406,14.4185677],[50.0882537,14.4216708,50.0883171,14.4216594,50.0883804,14.4216479,50.0883975,14.4217281,50.088431,14.4218873,50.0883892,14.421897,50.0883884,14.4218922,50.0883597,14.4218974,50.0883747,14.4219435,50.088365,14.4219514,50.0883173,14.4219843,50.0882949,14.4218988,50.0882537,14.4216708],[50.088365,14.4219514,50.0883988,14.4220333,50.0884224,14.4220116,50.088422,14.4220083,50.0884515,14.4219806,50.0885024,14.4221694,50.0884991,14.4221714,50.0884197,14.4222447,50.0884002,14.4222628,50.0883863,14.4222221,50.0883901,14.422219,50.0883624,14.4221143,50.0883372,14.4220376,50.0883338,14.4220413,50.0883173,14.4219843,50.088365,14.4219514],[50.0884536,14.4217082,50.0884835,14.4217343,50.0886385,14.4218696,50.0885754,14.4219441,50.0885576,14.4219068,50.0885221,14.4219328,50.0885156,14.4219059,50.088484,14.4219258,50.0884644,14.4219063,50.0884554,14.4219106,50.0884478,14.4219101,50.0884408,14.4219032,50.0884352,14.4219063,50.088431,14.4218873,50.0883975,14.4217281,50.0884428,14.4217096,50.0884421,14.4217013,50.088452,14.4216985,50.0884536,14.4217082],[50.0890216,14.4201093,50.0890849,14.4202729,50.0890249,14.420327,50.089025,14.4203302,50.0889706,14.4203815,50.0889693,14.42038,50.0889292,14.4204167,50.0889294,14.4204199,50.0888984,14.4204488,50.0888458,14.4203156,50.0889309,14.4202376,50.0889187,14.4202054,50.0889202,14.420204,50.0890216,14.4201093],[50.0888123,14.4202019,50.0887714,14.4202261,50.0887751,14.4202403,50.0887439,14.4202606,50.0886746,14.4203057,50.0886152,14.4200836,50.0887572,14.4199916,50.0888123,14.4202019],[50.0888458,14.4203156,50.0888057,14.4203546,50.0888024,14.4203443,50.0887929,14.420345,50.0887776,14.4203623,50.0887689,14.4203578,50.0887439,14.4202606,50.0886746,14.4203057,50.0887079,14.4204293,50.0887318,14.4204015,50.0887751,14.4205188,50.0887883,14.4205495,50.0888984,14.4204488,50.0888458,14.4203156],[50.0886857,14.4206117,50.0887751,14.4205188,50.0887318,14.4204015,50.0887079,14.4204293,50.0886478,14.4205047,50.0886857,14.4206117],[50.0887079,14.4204293,50.0886478,14.4205047,50.0885935,14.42057,50.0884291,14.4207787,50.0884089,14.4207007,50.088392,14.4206357,50.0884286,14.4206116,50.0884303,14.4206181,50.0885789,14.4205232,50.0886032,14.4204902,50.0885884,14.4204323,50.088461,14.4205144,50.0884633,14.4205248,50.0884405,14.4205401,50.0884338,14.4205166,50.0884037,14.420536,50.0884026,14.420533,50.0883326,14.4202667,50.0886152,14.4200836,50.0886746,14.4203057,50.0887079,14.4204293],[50.0890403,14.4213465,50.0890772,14.4212908,50.0890528,14.4212266,50.0890513,14.4212272,50.0890006,14.4210977,50.0890017,14.4210959,50.088975,14.4210315,50.0888422,14.421157,50.0888662,14.4212231,50.0888602,14.4212726,50.0888231,14.4213229,50.0888283,14.4213317,50.0889278,14.4215038,50.0890381,14.4213453,50.0890403,14.4213465],[50.0888068,14.4216676,50.0888085,14.4216702,50.0887848,14.4217025,50.0887614,14.4217048,50.0887325,14.4216866,50.0887333,14.4216843,50.0886252,14.4216033,50.0886528,14.421515,50.0886608,14.4215209,50.0886911,14.4214334,50.0887555,14.4214833,50.0887724,14.4214563,50.0887577,14.4214276,50.0888283,14.4213317,50.0889278,14.4215038,50.0888068,14.4216676],[50.0884372,14.4214596,50.0885283,14.4213206,50.0885504,14.4212868,50.0887007,14.421398,50.0886911,14.4214334,50.0886608,14.4215209,50.0886528,14.421515,50.0886252,14.4216033,50.0884372,14.4214596],[50.0885283,14.4213206,50.0884372,14.4214596,50.0884282,14.4214667,50.0884222,14.4214617,50.0884116,14.4214435,50.088401,14.4214254,50.0883997,14.4214276,50.0883151,14.4213017,50.0883169,14.4212988,50.0883007,14.4212764,50.0882846,14.421254,50.0882893,14.4212462,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983,50.0885407,14.4211921,50.0884927,14.4212465,50.0885283,14.4213206],[50.0883326,14.4202667,50.0884026,14.420533,50.0883636,14.420558,50.088366,14.4205678,50.0883751,14.4205631,50.088392,14.4206357,50.0883523,14.4206604,50.0883334,14.4205942,50.0882721,14.4206313,50.0882457,14.4205324,50.0882047,14.4205584,50.0881583,14.4203769,50.0882289,14.4203322,50.0882237,14.4203271,50.0882255,14.4203206,50.0882343,14.420329,50.0882572,14.4203137,50.0882607,14.4202973,50.0882652,14.4203007,50.0882626,14.4203104,50.0883326,14.4202667],[50.088392,14.4206357,50.0883523,14.4206604,50.0882747,14.4207095,50.0883263,14.4208069,50.088343,14.4207838,50.0883572,14.4208029,50.0883765,14.4207838,50.0883637,14.4207577,50.0883791,14.4207476,50.0884089,14.4207007,50.088392,14.4206357],[50.08806,14.4207983,50.0880367,14.4207527,50.0880315,14.4207653,50.0880262,14.4207602,50.0880311,14.4207469,50.0880219,14.4207411,50.0880135,14.4207251,50.0880086,14.4207105,50.0880006,14.4207135,50.0879985,14.4207034,50.0880076,14.4206963,50.0879826,14.4206502,50.0879837,14.4206477,50.0879631,14.420607,50.087961,14.4206077,50.0879567,14.4206003,50.0879567,14.4205937,50.0879442,14.420567,50.0879396,14.4205653,50.0879476,14.4205086,50.0879536,14.420511,50.0879718,14.4204983,50.0879712,14.4204952,50.0881279,14.4203945,50.0881288,14.4203977,50.088147,14.4203856,50.0881462,14.4203827,50.0881583,14.4203769,50.0882047,14.4205584,50.088155,14.4205895,50.0881588,14.4206149,50.0881567,14.4206313,50.0881528,14.4206455,50.088147,14.4206537,50.0882088,14.4207753,50.0881105,14.4208928,50.0881036,14.4208809,50.0881037,14.4208778,50.0880919,14.4208544,50.0880897,14.4208541,50.0880843,14.4208439,50.0880843,14.4208397,50.0880641,14.4207994,50.08806,14.4207983],[50.0885935,14.42057,50.0886195,14.4206347,50.0886504,14.4206064,50.0886601,14.4206365,50.0886726,14.4206441,50.0886916,14.420624,50.0887883,14.4205495,50.0888435,14.4206939,50.0887192,14.4208106,50.0886905,14.4207345,50.0886492,14.4207856,50.0884964,14.4209742,50.0884604,14.4209067,50.0884455,14.4209223,50.0884393,14.4209445,50.0884314,14.4209585,50.0884232,14.4209674,50.0884094,14.4209749,50.0883976,14.4209757,50.088391,14.420974,50.0883874,14.4209778,50.0883977,14.4209943,50.0884007,14.4210024,50.0884033,14.4210123,50.088404,14.4210205,50.0883914,14.4210315,50.0884153,14.4210786,50.0882893,14.4212462,50.0882591,14.4211839,50.088253,14.421194,50.0882471,14.4211869,50.0882521,14.4211783,50.0882436,14.4211624,50.0882371,14.4211734,50.0882348,14.4211681,50.0882328,14.4211734,50.0882279,14.4211679,50.0882304,14.4211616,50.0882214,14.4211499,50.0882089,14.4211277,50.0882037,14.4211089,50.0881974,14.4211104,50.0881954,14.421098,50.0882059,14.421089,50.0881968,14.4210709,50.0881883,14.4210764,50.088185,14.4210676,50.088193,14.4210615,50.0881105,14.4208928,50.0882088,14.4207753,50.0882258,14.4208068,50.0882609,14.4207657,50.0882698,14.420784,50.088265,14.4207898,50.0882941,14.4208469,50.0882965,14.4208452,50.0883203,14.4208934,50.0883331,14.4208778,50.0883383,14.4208822,50.0883503,14.4208647,50.0883592,14.4208814,50.0883648,14.4208648,50.088373,14.4208511,50.0883844,14.4208404,50.0883934,14.4208363,50.0884027,14.4208351,50.0884133,14.4208183,50.0884077,14.4208063,50.0884291,14.4207787,50.0885935,14.42057],[50.0885458,14.4210628,50.0886124,14.4209816,50.0886542,14.4209311,50.0886953,14.42088,50.0886492,14.4207856,50.0884964,14.4209742,50.0885458,14.4210628],[50.0888435,14.4206939,50.0888809,14.4207888,50.0888911,14.420815,50.0887679,14.4209308,50.0887661,14.4209325,50.0887583,14.4209127,50.0887192,14.4208106,50.0888435,14.4206939],[50.0888911,14.420815,50.088975,14.4210315,50.0888422,14.421157,50.0888214,14.4211762,50.0888096,14.4211429,50.0888393,14.421114,50.0887679,14.4209308,50.0888911,14.420815],[50.0863784,14.4226461,50.0864248,14.4227362,50.086423,14.4227379,50.0864259,14.422748,50.0863669,14.4227957,50.0863583,14.4227985,50.0862348,14.4226714,50.0862335,14.4226579,50.0862909,14.4225442,50.0862925,14.4225462,50.0862939,14.4225435,50.0863784,14.4226461],[50.0864451,14.422565,50.0865099,14.4226287,50.0865118,14.4226315,50.0865098,14.422635,50.0864549,14.4227276,50.0864259,14.422748,50.086423,14.4227379,50.0864248,14.4227362,50.0863784,14.4226461,50.0862939,14.4225435,50.0863484,14.4224433,50.0864451,14.422565],[50.0866125,14.4224033,50.086548,14.4225534,50.0865099,14.4226287,50.0864451,14.422565,50.0863484,14.4224433,50.0864632,14.422234,50.0866125,14.4224033],[50.0866125,14.4224033,50.0864632,14.422234,50.0865075,14.4221535,50.0866495,14.4223186,50.0866125,14.4224033],[50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0865389,14.4226629,50.0865098,14.422635,50.0865118,14.4226315,50.0865099,14.4226287,50.086548,14.4225534,50.0866125,14.4224033,50.0866495,14.4223186,50.0866536,14.4223094,50.0867014,14.4223592],[50.0871239,14.42162,50.0870458,14.4217116,50.0870047,14.421771,50.0868867,14.4219606,50.0868299,14.4218857,50.0868567,14.4218291,50.0868729,14.421793,50.0868807,14.421774,50.0870102,14.4215653,50.0870708,14.4214907,50.0871239,14.42162],[50.0869773,14.421973,50.0869516,14.4220041,50.0868907,14.4221124,50.0868772,14.4221347,50.0868676,14.4221378,50.0868426,14.422095,50.0868416,14.422089,50.0869037,14.4219838,50.0868857,14.4219631,50.0868867,14.4219606,50.0870047,14.421771,50.0870458,14.4217116,50.0871239,14.42162,50.0871717,14.4217817,50.0870049,14.421931,50.0869749,14.4219657,50.0869773,14.421973],[50.0871905,14.4218529,50.0871858,14.4218562,50.0871943,14.4219022,50.0872001,14.4219008,50.0872012,14.4219099,50.0871962,14.4219128,50.0872066,14.4219709,50.0872041,14.4219723,50.0871234,14.4220211,50.0871057,14.4220386,50.0870225,14.4221024,50.0869569,14.4221618,50.0869235,14.4221968,50.0869206,14.422186,50.0868907,14.4221124,50.0869516,14.4220041,50.0869773,14.421973,50.0869749,14.4219657,50.0870049,14.421931,50.0871717,14.4217817,50.0871798,14.421826,50.0871834,14.4218454,50.0871888,14.4218432,50.0871905,14.4218529],[50.08722,14.4220824,50.0872225,14.4220819,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869569,14.4221618,50.0870225,14.4221024,50.0871057,14.4220386,50.0871234,14.4220211,50.0872041,14.4219723,50.08722,14.4220824],[50.0865154,14.4227725,50.0868325,14.4227644,50.0868623,14.4227586,50.0870274,14.4227518,50.0870054,14.4225919,50.0870313,14.4225801,50.0870135,14.4224824,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725],[50.0872284,14.4227611,50.0870928,14.4227499,50.0870996,14.4227026,50.0870963,14.4226662,50.0870959,14.4226124,50.0872387,14.4226265,50.0872284,14.4227611],[50.0872315,14.4221585,50.0872346,14.4221623,50.0872332,14.4221699,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0870885,14.4224585,50.087065,14.4224706,50.0870609,14.4224532,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527,50.0872315,14.4221585],[50.0869463,14.4222744,50.0869414,14.4222603,50.0869208,14.4222674,50.0868029,14.4222794,50.0867636,14.4222212,50.0867114,14.4223127,50.0867106,14.4223258,50.0867591,14.4223638,50.0868061,14.4223879,50.086944,14.4223678,50.0869629,14.4223514,50.0869463,14.4222744],[50.0869809,14.4223612,50.0869629,14.4223514,50.086944,14.4223678,50.0868061,14.4223879,50.0867591,14.4223638,50.0867106,14.4223258,50.0867014,14.4223592,50.0866502,14.422568,50.0866491,14.4225816,50.0868441,14.4224481,50.0869376,14.4224301,50.0869421,14.4223849,50.0869809,14.4223612],[50.0896149,14.4201834,50.0895738,14.4202249,50.0895327,14.4202664,50.089503,14.4202965,50.0894698,14.4202154,50.0894557,14.4202293,50.0894367,14.4201844,50.0894513,14.42017,50.0894303,14.4201188,50.0895451,14.420008,50.0896149,14.4201834],[50.0893652,14.419599,50.0893852,14.4196076,50.0894624,14.4198045,50.0893599,14.4199064,50.08933,14.4198397,50.0893149,14.4198324,50.089265,14.4198614,50.0892418,14.4197781,50.0892483,14.4197737,50.0892259,14.4196912,50.0893652,14.419599],[50.0892252,14.4196887,50.0892259,14.4196912,50.0892483,14.4197737,50.0892418,14.4197781,50.089265,14.4198614,50.0892095,14.4198963,50.0892067,14.4199161,50.089236,14.4199929,50.0891937,14.4200332,50.0891369,14.420088,50.0890639,14.4198994,50.0890607,14.4198976,50.0890391,14.4198409,50.0890449,14.4198071,50.0890824,14.4197817,50.089084,14.4197838,50.0891865,14.4197163,50.0891866,14.4197134,50.0892252,14.4196887],[50.0892505,14.4199784,50.0892674,14.420022,50.0892741,14.4200163,50.0893153,14.4201233,50.089311,14.4201274,50.0893329,14.4201812,50.0892734,14.4202373,50.0892174,14.4202902,50.0891369,14.420088,50.0891937,14.4200332,50.089236,14.4199929,50.0892505,14.4199784],[50.0893537,14.4202352,50.0893574,14.4202323,50.0893986,14.4203389,50.0893924,14.4203448,50.0894091,14.4203867,50.0893807,14.4204134,50.0893529,14.4204408,50.0893387,14.4204541,50.0892966,14.4204948,50.0892174,14.4202902,50.0892734,14.4202373,50.0893329,14.4201812,50.0893537,14.4202352],[50.0896409,14.420796,50.0896437,14.4208003,50.0896405,14.420805,50.0896362,14.4208012,50.0896126,14.420815,50.0896104,14.4208211,50.089605,14.4208191,50.0896065,14.4208119,50.0895869,14.4208243,50.0895854,14.4208219,50.0895065,14.420864,50.0895072,14.4208683,50.0894483,14.420899,50.0894472,14.4208958,50.0894176,14.4208122,50.0892966,14.4204948,50.0893387,14.4204541,50.0893529,14.4204408,50.0893807,14.4204134,50.0894907,14.420694,50.0894972,14.4207002,50.0895177,14.4206888,50.0895046,14.4206213,50.0895327,14.4206062,50.0895259,14.4205763,50.0895842,14.4205473,50.089591,14.4205768,50.0896192,14.4205626,50.0896332,14.4206247,50.0896677,14.4206055,50.0895327,14.4202664,50.0895738,14.4202249,50.0896149,14.4201834,50.0897741,14.4205732,50.0897788,14.4205722,50.0898117,14.4206545,50.0898085,14.4206573,50.0897976,14.4207084,50.0897956,14.4207175,50.0897841,14.4207234,50.0897392,14.4207463,50.0897375,14.4207406,50.0896603,14.4207819,50.0896605,14.4207852,50.0896409,14.420796],[50.0899433,14.4194262,50.0899247,14.4194381,50.0899456,14.4195169,50.089831,14.4195907,50.08981,14.4195116,50.0897917,14.4195233,50.0897461,14.4193555,50.0898983,14.4192565,50.0899433,14.4194262],[50.0897948,14.4195338,50.0897671,14.4195519,50.0897512,14.4195406,50.0897403,14.4195469,50.0897354,14.4195695,50.0897387,14.4195869,50.0897568,14.4195958,50.0897869,14.4196804,50.0896692,14.4197803,50.0895898,14.4195514,50.089587,14.4195544,50.0895684,14.4195017,50.0895785,14.4194654,50.0896171,14.4194332,50.089618,14.4194375,50.0897461,14.4193555,50.0897917,14.4195233,50.0897948,14.4195338],[50.08996,14.419655,50.0899672,14.4196848,50.0899963,14.419667,50.0900229,14.4197687,50.0900504,14.4198738,50.0900181,14.4198923,50.0900187,14.4198947,50.0899943,14.4199112,50.0899938,14.4199073,50.0899287,14.4199494,50.0899012,14.4198446,50.0898761,14.4197492,50.0898736,14.4197398,50.0898954,14.4197256,50.0898912,14.4197043,50.0899429,14.419673,50.0899421,14.4196663,50.08996,14.419655],[50.0898076,14.4197173,50.089816,14.4197096,50.0898225,14.4197317,50.0898159,14.4197381,50.0898235,14.4197603,50.0898413,14.4197716,50.0898761,14.4197492,50.0899012,14.4198446,50.0899287,14.4199494,50.0898918,14.4199718,50.0898921,14.4199772,50.0897631,14.4200584,50.0897381,14.4199872,50.089741,14.4199852,50.0897247,14.419941,50.0897231,14.4199475,50.0897198,14.4199458,50.0897209,14.4199381,50.0897055,14.4198894,50.0896996,14.4198896,50.0896992,14.4198814,50.0897054,14.4198827,50.0896692,14.4197803,50.0897869,14.4196804,50.0897943,14.4196741,50.0898076,14.4197173],[50.0893728,14.4217621,50.0893898,14.4218398,50.0892934,14.4218609,50.0892817,14.4218984,50.0893817,14.4219822,50.0893164,14.4221701,50.0891667,14.4220426,50.0892316,14.421856,50.0892566,14.4217841,50.0893546,14.4217661,50.0893728,14.4217621],[50.0892697,14.4213756,50.0893735,14.4215502,50.0894213,14.421636,50.0893818,14.4216922,50.089396,14.4217162,50.0893728,14.4217621,50.0893546,14.4217661,50.0892866,14.4216461,50.0892718,14.4216666,50.0892739,14.4216739,50.0892281,14.4217366,50.0892213,14.4217252,50.089131,14.421572,50.0892697,14.4213756],[50.0894569,14.4219404,50.089585,14.4220101,50.0895184,14.4222889,50.0894873,14.4223065,50.0893164,14.4221701,50.0893817,14.4219822,50.0894021,14.4220001,50.0894093,14.4219958,50.0894118,14.4219796,50.0894221,14.4219681,50.0894317,14.4219695,50.0894409,14.4219771,50.0894495,14.421971,50.0894569,14.4219404],[50.0896309,14.4218245,50.089585,14.4220101,50.0894569,14.4219404,50.0894506,14.4219364,50.0894473,14.4219154,50.0894515,14.4218972,50.08946,14.4218845,50.0894782,14.4218051,50.0894293,14.4217761,50.0893988,14.4218379,50.0893898,14.4218398,50.0893728,14.4217621,50.089396,14.4217162,50.0894069,14.4216961,50.0894965,14.4217459,50.0896309,14.4218245],[50.0894771,14.4216974,50.089428,14.421652,50.089458,14.421593,50.0894931,14.4216302,50.0894771,14.4216974],[50.0880306,14.4246089,50.088031,14.4246118,50.0880792,14.4246084,50.0880845,14.424615,50.0881011,14.4249466,50.0879793,14.424964,50.0879744,14.4248569,50.0879379,14.4248585,50.0879329,14.4246217,50.0880306,14.4246089],[50.0894213,14.421636,50.089428,14.421652,50.089458,14.421593,50.089464,14.421579,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0894213,14.421636],[50.0881136,14.4251691,50.0881662,14.425461,50.0880267,14.4255372,50.0879804,14.4253359,50.0880151,14.4253201,50.0880071,14.4252881,50.0879985,14.4252312,50.0881136,14.4251691],[50.0893767,14.4212245,50.0894785,14.4213953,50.089435,14.4214593,50.0894385,14.4214671,50.0894166,14.4215001,50.0894137,14.4215045,50.089409,14.421497,50.0893735,14.4215502,50.0892697,14.4213756,50.0893767,14.4212245],[50.089131,14.421572,50.0892213,14.4217252,50.0891803,14.4217859,50.08917,14.4217908,50.0891745,14.421817,50.0891844,14.4218135,50.0892316,14.421856,50.0891667,14.4220426,50.0890014,14.4219024,50.0889998,14.421907,50.0889561,14.4218705,50.0889523,14.4218148,50.0889882,14.4217666,50.0889904,14.4217692,50.0890498,14.4216868,50.0890487,14.4216841,50.0890535,14.4216769,50.0890546,14.421679,50.089062,14.4216683,50.0890696,14.4216574,50.0890683,14.4216555,50.0890729,14.4216489,50.089074,14.4216515,50.089131,14.421572],[50.0897256,14.4214355,50.0896864,14.4215995,50.0895464,14.4215197,50.0895744,14.4214094,50.0895989,14.4214232,50.0896117,14.4213706,50.0896175,14.4213733,50.0896716,14.4214044,50.0897256,14.4214355],[50.0879329,14.4246217,50.0879379,14.4248585,50.0879066,14.4248598,50.0879062,14.4248537,50.0878985,14.424858,50.0879003,14.4249066,50.0879094,14.4249048,50.087913,14.4249736,50.087791,14.4249786,50.0877807,14.4246326,50.0879329,14.4246217],[50.0877994,14.4252705,50.0878777,14.4252481,50.0878818,14.425277,50.0879201,14.4252703,50.0879309,14.4253625,50.0879804,14.4253359,50.0880267,14.4255372,50.0878426,14.4256334,50.0877994,14.4252705],[50.0881011,14.4249466,50.0881136,14.4251691,50.0879985,14.4252312,50.0879615,14.4252488,50.0879504,14.4251074,50.0879497,14.4250982,50.0879862,14.4250921,50.0879853,14.4250744,50.0879591,14.4250778,50.0879577,14.425052,50.0879839,14.4250485,50.0879793,14.424964,50.0881011,14.4249466],[50.0898165,14.4210736,50.0898133,14.4210769,50.0897256,14.4214355,50.0896716,14.4214044,50.0896175,14.4213733,50.0896361,14.4212976,50.0896194,14.4212723,50.0895702,14.4212979,50.0895515,14.421213,50.0895328,14.421128,50.0897647,14.4210072,50.0897696,14.4209988,50.0898165,14.4210736],[50.087791,14.4249786,50.087913,14.4249736,50.0879176,14.4251122,50.0879504,14.4251074,50.0879615,14.4252488,50.0879201,14.4252703,50.0878818,14.425277,50.0878777,14.4252481,50.0877994,14.4252705,50.087791,14.4249786],[50.0896864,14.4215995,50.0896309,14.4218245,50.0894965,14.4217459,50.0895044,14.4217137,50.0894771,14.4216974,50.0894931,14.4216302,50.0895145,14.4215402,50.0895387,14.4215538,50.0895464,14.4215197,50.0896864,14.4215995],[50.08957,14.4213027,50.0895646,14.4213208,50.0895291,14.4213417,50.0895344,14.4213688,50.0894806,14.4213983,50.0894785,14.4213953,50.0893767,14.4212245,50.089417,14.4211898,50.0895328,14.421128,50.0895515,14.421213,50.0895702,14.4212979,50.08957,14.4213027],[50.089923,14.4218274,50.089942,14.4218381,50.0899609,14.4217615,50.0899798,14.4216846,50.0899746,14.4216805,50.0899904,14.4216187,50.0899838,14.4216015,50.0899655,14.4215912,50.0899761,14.4215511,50.0898665,14.4214857,50.0897996,14.4217557,50.089923,14.4218274],[50.0901543,14.4214419,50.0902554,14.4216927,50.0901397,14.421806,50.0901271,14.4217737,50.0900426,14.4218577,50.0900334,14.4217471,50.0900791,14.4217026,50.0900439,14.4216142,50.0900717,14.4215867,50.0900538,14.4215411,50.0900573,14.421538,50.0901543,14.4214419],[50.0897373,14.4220161,50.0898494,14.4220789,50.0898567,14.4220834,50.0898423,14.4221522,50.0898469,14.4221656,50.0898504,14.422163,50.0898659,14.4222103,50.0898615,14.4222132,50.0898656,14.4222273,50.0898822,14.4222326,50.0898538,14.4224177,50.0897201,14.4223686,50.0897174,14.422371,50.0896792,14.4223566,50.0896613,14.4223152,50.0896769,14.4222541,50.0896789,14.4222554,50.0897373,14.4220161],[50.0900415,14.4222676,50.0900223,14.4222604,50.0900193,14.4222804,50.0900394,14.4222847,50.090012,14.4224741,50.0899751,14.4224625,50.0899743,14.42246,50.0898953,14.4224323,50.0898862,14.4224323,50.0898859,14.4224292,50.0898538,14.4224177,50.0898822,14.4222326,50.089901,14.422238,50.0899126,14.4221717,50.0899562,14.4221859,50.0899578,14.4221791,50.0899892,14.4221897,50.0899877,14.4221977,50.0900056,14.4222039,50.0900138,14.4221144,50.0900613,14.4221134,50.090049,14.4222187,50.0900415,14.4222676],[50.0897996,14.4217557,50.089923,14.4218274,50.0899148,14.4218592,50.0899206,14.4218785,50.0899505,14.4218964,50.0899616,14.4218497,50.0900461,14.421898,50.0900558,14.4219656,50.0900596,14.4219916,50.0900739,14.4220863,50.0900771,14.4221133,50.0900613,14.4221134,50.0900138,14.4221144,50.09,14.4220179,50.0899282,14.4219757,50.0899207,14.4220107,50.0899222,14.4220142,50.0899069,14.4220821,50.0898556,14.422052,50.0898494,14.4220789,50.0897373,14.4220161,50.0897996,14.4217557],[50.0901616,14.4219971,50.090184,14.4220536,50.0901112,14.4221291,50.0900771,14.4221133,50.0900739,14.4220863,50.0901439,14.4220151,50.0901616,14.4219971],[50.0900558,14.4219656,50.090071,14.421946,50.090081,14.421973,50.0900596,14.4219916,50.0900739,14.4220863,50.0901439,14.4220151,50.090085,14.421858,50.0900461,14.421898,50.0900558,14.4219656],[50.089955,14.4211131,50.0900172,14.4211023,50.0901543,14.4214419,50.0900573,14.421538,50.0900257,14.421459,50.0900221,14.4214662,50.090003,14.421468,50.0899991,14.4214611,50.0899761,14.4215511,50.0898665,14.4214857,50.0899553,14.4211233,50.089955,14.4211131],[50.0900461,14.421898,50.0899616,14.4218497,50.089942,14.4218381,50.0899609,14.4217615,50.09001,14.421788,50.090016,14.421755,50.0900334,14.4217471,50.0900426,14.4218577,50.0900461,14.421898],[50.0902858,14.4217655,50.0902881,14.4217664,50.090318,14.4218419,50.0901851,14.4219735,50.0901727,14.4219426,50.0901637,14.4219503,50.0901288,14.421859,50.0901371,14.4218503,50.0901258,14.4218205,50.0901397,14.421806,50.0902554,14.4216927,50.0902858,14.4217655],[50.0896785,14.4239079,50.0896709,14.4240376,50.0896395,14.4240441,50.089534,14.424066,50.0895315,14.4240215,50.0895265,14.4239359,50.089599,14.423901,50.089606,14.423909,50.089669,14.423879,50.089676,14.423891,50.0897096,14.4238837,50.0897126,14.4238893,50.0897123,14.4239032,50.0896785,14.4239079],[50.0895858,14.4235827,50.0895937,14.4237015,50.0896319,14.4236972,50.0896352,14.4237411,50.0896278,14.4237989,50.0895606,14.4238258,50.0895585,14.4238063,50.0895272,14.4238173,50.0895266,14.4238117,50.0895078,14.4238192,50.0894352,14.4237842,50.0894297,14.4237055,50.0894269,14.423706,50.0894259,14.4236988,50.0894288,14.4236985,50.0894278,14.4236821,50.0894245,14.4236821,50.089424,14.4236746,50.089427,14.4236735,50.0894231,14.4236048,50.0895572,14.423585,50.0895858,14.4235827],[50.0895078,14.4238192,50.0895265,14.4239359,50.0895315,14.4240215,50.0895154,14.4240342,50.0895001,14.4240297,50.0894781,14.4240463,50.089468,14.4240679,50.089425,14.424096,50.0893689,14.4238725,50.0894377,14.4238255,50.0894352,14.4237842,50.0895078,14.4238192],[50.0894505,14.4228546,50.0894525,14.422862,50.0894679,14.4228556,50.0894736,14.4228675,50.08949,14.4229111,50.0894941,14.422908,50.0895243,14.4229862,50.0895212,14.4229891,50.0895784,14.4231348,50.0895817,14.4231316,50.0896131,14.423212,50.0896096,14.4232158,50.0896443,14.4233041,50.0895922,14.4233501,50.0895899,14.4233413,50.0895611,14.4233556,50.0895507,14.4233605,50.089535,14.4232877,50.0894927,14.4233079,50.0895061,14.4233814,50.0894115,14.4234236,50.089378,14.4229005,50.0893954,14.4228934,50.0893936,14.422884,50.0894505,14.4228546],[50.0898109,14.4237298,50.08981,14.4237327,50.0898108,14.4237349,50.0898159,14.4237355,50.0898134,14.42374,50.0898235,14.4237656,50.0898275,14.4237664,50.0898253,14.423772,50.0898269,14.4237767,50.0898302,14.4237773,50.0898836,14.4239153,50.0897811,14.4239513,50.0897796,14.4239467,50.0897653,14.4239104,50.089723,14.4239471,50.0897123,14.4239032,50.0897126,14.4238893,50.0897096,14.4238837,50.0896524,14.4237788,50.0896313,14.4238047,50.0896278,14.4237989,50.0896352,14.4237411,50.0896831,14.4236962,50.0896616,14.4236476,50.0896881,14.4236346,50.0896998,14.4236294,50.0897018,14.4236404,50.089756,14.4235916,50.0898109,14.4237298],[50.089687,14.4234149,50.0896893,14.4234126,50.0897151,14.4234782,50.0897132,14.4234803,50.089756,14.4235916,50.0897018,14.4236404,50.0896998,14.4236294,50.0896881,14.4236346,50.0896828,14.4236212,50.0896631,14.4236408,50.0896599,14.4236408,50.0896568,14.4236398,50.0896538,14.4236379,50.0896512,14.4236351,50.089649,14.4236315,50.0896299,14.4235853,50.0896297,14.4235803,50.0896297,14.4235765,50.08963,14.4235719,50.0896309,14.4235675,50.0896322,14.4235635,50.0896527,14.4235427,50.0896308,14.4234787,50.0896231,14.4234865,50.089618,14.423472,50.0895942,14.4234926,50.0895857,14.4234373,50.089567,14.4233847,50.0895939,14.4233602,50.0895922,14.4233501,50.0896443,14.4233041,50.089687,14.4234149],[50.0893689,14.4238725,50.089425,14.424096,50.089432,14.4241233,50.0894332,14.4241288,50.089375,14.4241668,50.0893016,14.4239286,50.089307,14.4239127,50.0893689,14.4238725],[50.089567,14.4233847,50.0895857,14.4234373,50.089549,14.4234513,50.0895572,14.423585,50.0894231,14.4236048,50.0894115,14.4234236,50.0895061,14.4233814,50.0895507,14.4233605,50.0895611,14.4233556,50.089567,14.4233847],[50.089881,14.4228775,50.0898179,14.4228546,50.0898176,14.42286,50.0898168,14.4228653,50.0898155,14.4228704,50.0898136,14.422875,50.0898112,14.422879,50.0898085,14.4228824,50.0898054,14.422885,50.0898375,14.4229684,50.0897385,14.4230604,50.0895976,14.4226967,50.0895901,14.4226877,50.0895957,14.4226727,50.0895908,14.4226666,50.0896164,14.422612,50.0896218,14.4226159,50.0896291,14.422603,50.089637,14.4226113,50.0899062,14.4227073,50.0898843,14.4228529,50.089881,14.4228775],[50.0898843,14.4230068,50.0898912,14.4230008,50.0899,14.4230218,50.089904,14.4230176,50.0900097,14.4232916,50.0899999,14.4233016,50.0900395,14.4234038,50.0900498,14.4233938,50.0901092,14.4235461,50.0901002,14.4235547,50.0899754,14.4236736,50.0897385,14.4230604,50.0898375,14.4229684,50.089847,14.4229586,50.0898681,14.423012,50.089871,14.4230093,50.0898742,14.4230073,50.0898775,14.4230063,50.0898809,14.4230061,50.0898843,14.4230068],[50.0902604,14.4228336,50.0902777,14.4228451,50.0902877,14.4228537,50.0903056,14.4228738,50.0903116,14.4228826,50.0903151,14.4228901,50.0904571,14.4232246,50.0903782,14.4233063,50.0903307,14.4231969,50.0902975,14.4232313,50.0902433,14.4231017,50.0902758,14.4230684,50.0902476,14.4230043,50.0902187,14.4229735,50.0901743,14.4229585,50.090166,14.4230171,50.0900222,14.4229649,50.090031,14.4229057,50.0898843,14.4228529,50.0899062,14.4227073,50.0902604,14.4228336],[50.0889318,14.4249602,50.0889298,14.4249399,50.0889451,14.4249348,50.0889429,14.4249176,50.0889328,14.4248396,50.0889114,14.4246737,50.0887794,14.4247065,50.088764,14.4245504,50.0889924,14.4244826,50.0889957,14.424489,50.0890767,14.4250747,50.089079,14.4250926,50.0888249,14.4251424,50.0888091,14.4249878,50.0889318,14.4249602],[50.087766,14.4234423,50.0877906,14.4235268,50.0878094,14.4235191,50.0878265,14.4236243,50.0878408,14.4236194,50.0878466,14.423657,50.0878311,14.4236662,50.0878481,14.4237764,50.08772,14.4238355,50.0876723,14.4234852,50.087766,14.4234423],[50.0874016,14.4250941,50.0874957,14.4250958,50.0875756,14.4250972,50.0875761,14.4251452,50.0875088,14.4251452,50.0875089,14.4251948,50.0874676,14.4251948,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.087396,14.4250076,50.0874016,14.4250941],[50.0890103,14.4237416,50.0890907,14.4239232,50.0890027,14.4239966,50.0889465,14.4238467,50.0889953,14.4238045,50.0889812,14.4237724,50.088984,14.4237618,50.0889823,14.4237524,50.0889224,14.4235659,50.0889735,14.423538,50.0890317,14.4237187,50.0890103,14.4237416],[50.0884186,14.4240189,50.0884292,14.4240663,50.0884082,14.4240806,50.0883504,14.4241201,50.0883392,14.4241275,50.0883122,14.4240073,50.0882612,14.423741,50.0882595,14.4237323,50.0882726,14.4237235,50.0883251,14.423687,50.0883975,14.4239439,50.0884186,14.4240189],[50.0860523,14.4189949,50.0860448,14.4191626,50.0860451,14.4192241,50.0860451,14.4192369,50.0859767,14.4192431,50.0859753,14.4192226,50.085997,14.4192227,50.0859951,14.4191689,50.0859726,14.4191692,50.0859609,14.4190236,50.0860523,14.4189949],[50.0893409,14.4237108,50.0892785,14.4237473,50.0892617,14.4237613,50.0892127,14.4236181,50.089229,14.4236085,50.0892177,14.4235371,50.0891947,14.4235532,50.089171,14.423524,50.0891663,14.4235015,50.0891899,14.4234903,50.0893089,14.4234701,50.0893409,14.4237108],[50.0858844,14.4192707,50.0859042,14.4194922,50.0858924,14.4195013,50.0858652,14.4195153,50.0858602,14.4195188,50.085832,14.4193869,50.0858111,14.4192519,50.0858162,14.4192503,50.0857933,14.419071,50.0858692,14.419048,50.0858844,14.4192707],[50.0869729,14.424844,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0869525,14.4249526,50.0869034,14.4249645,50.0868838,14.4248982,50.0868799,14.4249006,50.0868806,14.4248817,50.0869502,14.4248487,50.0869729,14.424844],[50.0855417,14.4203684,50.0855754,14.4203826,50.08556,14.4204845,50.0856259,14.4205185,50.0856057,14.4205963,50.085574,14.420576,50.0854551,14.4205201,50.0854811,14.4204395,50.0855059,14.4204525,50.0855193,14.4203728,50.0855393,14.4203791,50.0855417,14.4203684],[50.087526,14.4233667,50.0874792,14.4233859,50.0874324,14.423405,50.0873928,14.4232977,50.0873715,14.4233038,50.0873611,14.423417,50.087314,14.4234188,50.0873138,14.4233874,50.0873109,14.4233874,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667],[50.0888908,14.4227153,50.0888962,14.4227334,50.0889263,14.4227245,50.088938,14.422721,50.088936,14.4227,50.08895,14.422696,50.08893,14.422556,50.088938,14.422553,50.0889285,14.4224909,50.0888569,14.422514,50.0888558,14.4225145,50.0888697,14.4225973,50.0888908,14.4227153],[50.0851267,14.4205874,50.0850946,14.4206509,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849021,14.4209476,50.0849059,14.4209408,50.0848737,14.4208929,50.0848696,14.4209002,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874],[50.0865366,14.4215843,50.0865806,14.4216146,50.0865949,14.4216035,50.0865986,14.4216105,50.0866147,14.4215972,50.0866478,14.4215858,50.086654,14.4215688,50.0866616,14.4215481,50.0867177,14.4216001,50.0867088,14.4216184,50.086701,14.4216342,50.0867144,14.4216462,50.0867159,14.4216535,50.0866427,14.4217711,50.0865631,14.421658,50.0865612,14.4216628,50.0865136,14.4216374,50.0865366,14.4215843],[50.0862558,14.4186272,50.0862411,14.4186268,50.0862292,14.4186897,50.0862761,14.4186997,50.0862679,14.4189554,50.0861805,14.4189387,50.0861526,14.4189301,50.0861389,14.4189099,50.0861266,14.418876,50.0861352,14.4185964,50.0862312,14.4186027,50.0862309,14.4185833,50.0862572,14.4185819,50.0862558,14.4186272],[50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0865038,14.4199962,50.0865239,14.4200723,50.0865159,14.4200774,50.0865292,14.4202208,50.0864915,14.420236,50.0864873,14.4202419,50.0864772,14.4202453,50.0864325,14.4202606,50.086418,14.4202285,50.0863778,14.4202535,50.0863133,14.4199902,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105],[50.0854287,14.4194611,50.0854448,14.4196123,50.0854548,14.4196817,50.085444,14.4196864,50.0854357,14.4197202,50.0854332,14.4197726,50.0854342,14.4198863,50.0853017,14.4198996,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853485,14.4196238,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611],[50.0871196,14.4245176,50.0871214,14.4246701,50.0870429,14.424668,50.0870406,14.4247089,50.0870384,14.4247094,50.0870382,14.4247377,50.0870011,14.4247331,50.0869311,14.4247395,50.0869301,14.4247138,50.0869382,14.4246511,50.0869221,14.4246326,50.0869147,14.424612,50.0869108,14.4245628,50.0869607,14.4245545,50.0869593,14.4245137,50.0871196,14.4245176],[50.0861841,14.4213405,50.086249,14.4213648,50.0862502,14.4213589,50.0863135,14.4213963,50.0863124,14.4214006,50.0863705,14.4214455,50.0863188,14.4215919,50.0862897,14.421571,50.0862772,14.4216177,50.0862155,14.4215612,50.0862134,14.4215652,50.0861461,14.4215329,50.0861841,14.4213405],[50.0857384,14.4182243,50.0857694,14.4183653,50.0857828,14.4184227,50.0857562,14.4184378,50.0857702,14.4184843,50.0857948,14.4184705,50.0858006,14.4184966,50.085754,14.4185321,50.0857532,14.4185283,50.0857484,14.4185337,50.0857276,14.418467,50.0857238,14.4184698,50.0856478,14.418274,50.0857384,14.4182243],[50.0862709,14.4181951,50.0863017,14.4182771,50.0862707,14.4183031,50.0862648,14.4182877,50.0862448,14.4182973,50.0862518,14.41835,50.0862488,14.4183498,50.0861165,14.4184039,50.0860964,14.4182856,50.0862311,14.4182187,50.0862449,14.4182118,50.0862465,14.4182171,50.0862709,14.4181951],[50.0882988,14.4235503,50.0883065,14.4235781,50.0883136,14.4236141,50.0882552,14.4236696,50.0882726,14.4237235,50.0882595,14.4237323,50.0882612,14.423741,50.0882143,14.4237732,50.0882222,14.4238036,50.0881262,14.4238654,50.0880744,14.4236558,50.0881594,14.4235914,50.088178,14.423648,50.0882932,14.4235382,50.0882988,14.4235503],[50.0886689,14.4235363,50.0886034,14.4234572,50.0886264,14.423405,50.088613,14.4233049,50.0887088,14.4232568,50.0887107,14.4232657,50.0887314,14.4233826,50.0887271,14.423386,50.0887277,14.4234035,50.0887204,14.4234124,50.0887377,14.4234667,50.088742,14.4234628,50.0887601,14.4234736,50.0887656,14.4234881,50.0886689,14.4235363],[50.0862514,14.4183799,50.0862713,14.4183746,50.0862712,14.4183583,50.0862762,14.4183534,50.0862775,14.4184131,50.0862443,14.418419,50.0862494,14.4185109,50.0862805,14.4185112,50.0862797,14.4185815,50.0862572,14.4185819,50.0862309,14.4185833,50.0862312,14.4186027,50.0861352,14.4185964,50.0861295,14.4184996,50.0861165,14.4184039,50.0862488,14.4183498,50.0862514,14.4183799],[50.0865393,14.4204705,50.0865751,14.4206216,50.0864998,14.4206567,50.0864341,14.4206708,50.086434,14.420668,50.086357,14.4206836,50.0861524,14.4206615,50.0861497,14.4205858,50.0862251,14.4205767,50.0862239,14.420541,50.086273,14.4205253,50.0862917,14.4205237,50.0863041,14.4205295,50.0863208,14.4205533,50.0863247,14.4205662,50.0863274,14.4205818,50.0863481,14.4205827,50.0863464,14.4205486,50.0864051,14.4205323,50.0865393,14.4204705],[50.0882165,14.4226521,50.0881845,14.4226709,50.0881914,14.4226947,50.0881916,14.422711,50.0881557,14.4227219,50.0881488,14.4227288,50.0881393,14.4227189,50.0881411,14.4226983,50.0881194,14.4227105,50.0881285,14.4227457,50.0880591,14.4228151,50.088038,14.4227314,50.088035,14.4227321,50.0880177,14.4226626,50.0881879,14.4225527,50.0882165,14.4226521],[50.0860242,14.4182263,50.0858832,14.4183009,50.0858734,14.4182587,50.0858432,14.4182785,50.0858545,14.4183212,50.0858164,14.4183441,50.0857694,14.4183653,50.0857384,14.4182243,50.085796,14.4182096,50.0858592,14.4181842,50.0858589,14.4181796,50.0859265,14.4181493,50.0859279,14.4181559,50.0859995,14.4181192,50.0860259,14.4182251,50.0860242,14.4182263],[50.0883471,14.4226305,50.0883034,14.4226571,50.0883013,14.4226547,50.0882946,14.4226296,50.0882811,14.4226383,50.0882789,14.4226544,50.0882716,14.4226664,50.0882639,14.4226725,50.0882578,14.4226741,50.0882504,14.4226719,50.0882438,14.422666,50.0882398,14.4226557,50.0882384,14.422644,50.0882177,14.4226575,50.0882165,14.4226521,50.0881879,14.4225527,50.0883036,14.4224749,50.0883471,14.4226305],[50.0863628,14.4194563,50.0863792,14.4195488,50.0862213,14.4196079,50.0862124,14.4195597,50.0861704,14.4195874,50.0861796,14.4196299,50.0861875,14.4196269,50.0861914,14.419645,50.0861001,14.4196881,50.0860872,14.4196102,50.0861678,14.4195732,50.0861556,14.419504,50.0863628,14.4194563],[50.0880146,14.4230378,50.0880241,14.4230481,50.0880257,14.4230571,50.0880581,14.4230581,50.0881022,14.423113,50.0881268,14.4231505,50.0882309,14.4233842,50.08828,14.4235037,50.0882932,14.4235382,50.088178,14.423648,50.0881594,14.4235914,50.0881754,14.4235783,50.0880181,14.4231881,50.0879892,14.4230622,50.087986,14.4230615,50.0879841,14.4230496,50.0879912,14.4230468,50.0880146,14.4230378],[50.0885632,14.4232057,50.0885686,14.4232539,50.0885114,14.4232883,50.0885117,14.4233002,50.088427,14.4233217,50.0884247,14.4232878,50.0884248,14.4231921,50.0884325,14.4231889,50.0884326,14.4231779,50.0884998,14.4231483,50.0885096,14.4232186,50.0885632,14.4232057],[50.087504,14.4256178,50.0875728,14.4255842,50.0875775,14.4255708,50.087586,14.4255636,50.0876002,14.4255598,50.0875942,14.4255157,50.0876718,14.4254938,50.0876933,14.4256934,50.0876922,14.425699,50.0876882,14.4257038,50.0875334,14.4257572,50.0875132,14.4256739,50.087504,14.4256178],[50.0869071,14.4188471,50.0869191,14.4188407,50.0869705,14.4188145,50.0869718,14.418822,50.0869743,14.4188216,50.0869829,14.4188739,50.0869812,14.4188749,50.0870247,14.4191372,50.0870266,14.4191368,50.0870348,14.4191888,50.0870333,14.4191901,50.0870353,14.4192047,50.087011,14.4192417,50.0870014,14.4192435,50.0870016,14.4192463,50.0869679,14.4192558,50.086967,14.4192535,50.0867942,14.4192956,50.0867943,14.419298,50.0867612,14.4193056,50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867472,14.4187011,50.0868229,14.4186804,50.0869071,14.4188471],[50.0857687,14.4179189,50.0857994,14.4180799,50.0857106,14.4181202,50.0856853,14.4179772,50.0856835,14.4179775,50.0856708,14.4179345,50.0857204,14.4178989,50.0857315,14.4179408,50.0857687,14.4179189],[50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861956,14.4199808,50.0861988,14.4199964,50.0861954,14.4199981,50.0862089,14.4200631,50.0861332,14.4200962,50.0861352,14.4201088,50.0861223,14.4201141,50.0860388,14.4201506,50.0860173,14.4201603,50.0859994,14.4201688,50.0859761,14.4200783,50.0859949,14.4200696,50.0860149,14.4200604,50.0860074,14.4200129,50.0860369,14.4200007],[50.086081,14.4186966,50.0860829,14.4186986,50.0860846,14.4187916,50.0860817,14.4187938,50.0860825,14.418905,50.0860171,14.4189048,50.0860151,14.4189107,50.0860081,14.4189092,50.0859786,14.4189102,50.0859777,14.4189064,50.0859604,14.4189046,50.085928,14.418879,50.0858955,14.4188459,50.0857305,14.4186487,50.085773,14.4185901,50.0857618,14.4185596,50.0857484,14.4185337,50.0857532,14.4185283,50.085754,14.4185321,50.0858006,14.4184966,50.0858412,14.4184668,50.0858528,14.4185321,50.0859186,14.4185216,50.0859551,14.4185105,50.0859967,14.4184918,50.0860674,14.4184744,50.0860728,14.4185176,50.086075,14.418518,50.0860792,14.41858,50.086081,14.4186966],[50.0861118,14.4222883,50.0861319,14.4222515,50.0861381,14.4222608,50.0861366,14.4222646,50.0861355,14.4222688,50.086135,14.4222733,50.0861351,14.4222779,50.0861358,14.4222823,50.086137,14.4222864,50.0861387,14.4222901,50.0861582,14.4223175,50.0861371,14.4223517,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0861605,14.4222264,50.0861371,14.4221614,50.0860822,14.4222353,50.0860917,14.4222545,50.0861118,14.4222883],[50.0849852,14.421062,50.0849823,14.4210667,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.0851111,14.4207477,50.0850832,14.4208009,50.0849922,14.4209501,50.084961,14.4209996,50.0849579,14.4210046,50.0849567,14.4210028,50.0849523,14.4210097,50.0849852,14.421062],[50.0855385,14.4233933,50.0854816,14.4234657,50.0854844,14.4234716,50.0854132,14.4235804,50.0854149,14.4235843,50.0853067,14.4237302,50.0853051,14.4237266,50.0852172,14.4238712,50.0850995,14.4236942,50.0852542,14.4234381,50.0853468,14.4233013,50.0853493,14.4233054,50.0853821,14.4232663,50.0854248,14.423203,50.0854291,14.4232102,50.0855385,14.4233933],[50.0860461,14.4183164,50.0860674,14.4184744,50.0859967,14.4184918,50.0859551,14.4185105,50.0859186,14.4185216,50.0858528,14.4185321,50.0858412,14.4184668,50.085865,14.4184584,50.0858649,14.4184486,50.0858811,14.4184438,50.0858897,14.4184994,50.0859124,14.4184919,50.0859051,14.4184379,50.085914,14.418435,50.0859053,14.418382,50.0859511,14.4183639,50.0860461,14.4183164],[50.0863188,14.4215919,50.0863184,14.4215955,50.0864168,14.421685,50.0864422,14.4217084,50.0864398,14.4217135,50.0864141,14.4216927,50.0863982,14.4217193,50.0864182,14.4217472,50.0864393,14.4217146,50.0865384,14.4218708,50.0864276,14.4220424,50.0862789,14.4218389,50.0863532,14.4217247,50.086279,14.4216548,50.0862908,14.421629,50.0862772,14.4216177,50.0862897,14.421571,50.0863188,14.4215919],[50.0860523,14.4189949,50.0861169,14.4190035,50.0861704,14.419016,50.0861638,14.4191294,50.0861575,14.4191783,50.0861141,14.4191691,50.0861117,14.4192126,50.086122,14.4192143,50.0861213,14.4192337,50.0860451,14.4192369,50.0860451,14.4192241,50.0860601,14.4192255,50.0860605,14.4191943,50.086063,14.4191947,50.0860631,14.4191675,50.0860448,14.4191626,50.0860523,14.4189949],[50.0852819,14.4194677,50.0853042,14.4194669,50.0853901,14.419466,50.0853902,14.4194599,50.0854287,14.4194611,50.0854349,14.4193195,50.085441,14.4193193,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0852631,14.4193142,50.0852641,14.4193449,50.0852611,14.4193902,50.0852877,14.4193951,50.0852819,14.4194677],[50.0889807,14.423523,50.0889708,14.423529,50.0889735,14.423538,50.0889224,14.4235659,50.088906,14.423573,50.088879,14.423436,50.08886,14.423421,50.0888159,14.4234442,50.0887601,14.4234736,50.0887314,14.4233826,50.0888133,14.4233484,50.088812,14.42334,50.0889596,14.4232631,50.0889744,14.4233383,50.08895,14.423351,50.0889807,14.423523],[50.0873138,14.4233874,50.087314,14.4234188,50.0873611,14.423417,50.0874324,14.423405,50.0874792,14.4233859,50.087526,14.4233667,50.0875643,14.4234699,50.0874725,14.4235072,50.0874541,14.4234577,50.0874398,14.4234611,50.0874401,14.4234669,50.0873875,14.4234783,50.0873865,14.4234677,50.0873658,14.4234692,50.0873564,14.4235618,50.0873213,14.4235612,50.087321,14.4235676,50.0872416,14.4235663,50.0872583,14.4233868,50.0873109,14.4233874,50.0873138,14.4233874],[50.0884321,14.423141,50.08845,14.4231376,50.0884498,14.4231563,50.0884325,14.4231624,50.0884326,14.4231779,50.0884325,14.4231889,50.0884248,14.4231921,50.0884247,14.4232878,50.0883719,14.4232936,50.0883144,14.4232163,50.0882796,14.4231443,50.0882849,14.4230867,50.0883507,14.4231173,50.0884322,14.4231005,50.0884321,14.423141],[50.0857719,14.4211414,50.0857795,14.4210998,50.0857968,14.4211061,50.085804,14.4210676,50.0858083,14.4210694,50.0858164,14.4210231,50.0857984,14.4210121,50.085809,14.4210024,50.0857925,14.420969,50.0858494,14.4209743,50.0858498,14.4209798,50.085896,14.4209728,50.0859625,14.4209762,50.0858999,14.4213429,50.0858642,14.4213452,50.0857938,14.4212849,50.0857275,14.421208,50.085733,14.4212,50.0857297,14.4211948,50.0857469,14.421169,50.0857871,14.4211856,50.0857935,14.4211504,50.0857719,14.4211414],[50.0868273,14.4240522,50.0868687,14.4240568,50.086875,14.423993,50.086768,14.423935,50.086756,14.423986,50.086703,14.423948,50.086725,14.423869,50.086749,14.423895,50.086789,14.423813,50.086774,14.423799,50.086806,14.42372,50.086704,14.423631,50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0868273,14.4240522],[50.0884131,14.424377,50.0884345,14.4244835,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.0885185,14.4239333,50.0885036,14.4238836,50.088445,14.4239219,50.0884563,14.4239822,50.0884459,14.4239893,50.0884928,14.4242487,50.0884566,14.4242714,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377],[50.0858999,14.4213429,50.085921,14.4213764,50.0859668,14.4214369,50.0858959,14.4215983,50.0858448,14.4216858,50.085841,14.4216793,50.085668,14.4219168,50.0856339,14.4218653,50.0855792,14.4217826,50.0856864,14.4216243,50.0857297,14.4215559,50.0857689,14.4216107,50.0857252,14.4216829,50.0857348,14.4216996,50.0857401,14.4217087,50.085834,14.4215596,50.0858238,14.421546,50.0857782,14.4214811,50.0858441,14.4213808,50.0858642,14.4213452,50.0858999,14.4213429],[50.0856362,14.4235474,50.0854998,14.4237371,50.0854971,14.4237343,50.0854437,14.4238086,50.0853857,14.4238936,50.085285,14.4240499,50.0851922,14.4239119,50.0852172,14.4238712,50.0853051,14.4237266,50.0853067,14.4237302,50.0854149,14.4235843,50.0854132,14.4235804,50.0854844,14.4234716,50.0854816,14.4234657,50.0855385,14.4233933,50.0856362,14.4235474],[50.0869382,14.4246511,50.0869301,14.4247138,50.0869311,14.4247395,50.0870011,14.4247331,50.0870382,14.4247377,50.0870384,14.4247094,50.0870406,14.4247089,50.0870429,14.424668,50.0871214,14.4246701,50.0871192,14.4248472,50.0869729,14.424844,50.0869502,14.4248487,50.0868806,14.4248817,50.0868778,14.4248837,50.0868675,14.4248018,50.0868645,14.424784,50.0868673,14.4247829,50.0868666,14.4247775,50.0868907,14.4247592,50.0868724,14.4246507,50.0869096,14.4246406,50.0869221,14.4246326,50.0869382,14.4246511],[50.0851396,14.4203592,50.0851434,14.4203492,50.0850046,14.4202309,50.0849755,14.4203016,50.084952,14.4203642,50.0849269,14.4204011,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0848635,14.4208896,50.0848743,14.4208713,50.0850677,14.4205149,50.0851089,14.4205636,50.0851082,14.4205662,50.0851267,14.4205874,50.0851282,14.4205888,50.0851659,14.4205141,50.0851876,14.4204836,50.0851611,14.4204468,50.0851815,14.4204046,50.0851396,14.4203592],[50.0884719,14.4234853,50.0884888,14.4235506,50.0885141,14.4235295,50.0885157,14.4235354,50.088519,14.4235328,50.0885323,14.4235932,50.0885288,14.4235955,50.0885347,14.4236196,50.0885543,14.4237291,50.088544,14.4237341,50.0885368,14.4236833,50.0885087,14.4237044,50.0885376,14.4238052,50.0885611,14.4239057,50.0885185,14.4239333,50.0885036,14.4238836,50.0884967,14.4238671,50.0884607,14.4237376,50.0884646,14.4237353,50.0884632,14.4237295,50.088468,14.4237265,50.0884113,14.4234939,50.0884528,14.4234661,50.0884512,14.4234599,50.0884647,14.4234519,50.0884724,14.4234765,50.0884719,14.4234853],[50.0855792,14.4217826,50.0856864,14.4216243,50.0856648,14.4215932,50.0856673,14.4215901,50.085646,14.4215573,50.0857206,14.421449,50.0857588,14.4215103,50.0857782,14.4214811,50.0858441,14.4213808,50.08584,14.4213746,50.0858397,14.4213697,50.0858387,14.421365,50.0858373,14.4213605,50.0858354,14.4213566,50.085833,14.4213532,50.0858304,14.4213505,50.0858276,14.4213488,50.0858246,14.421348,50.0858216,14.421348,50.0858187,14.421349,50.085816,14.4213507,50.0857848,14.421302,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857281,14.4213932,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0855792,14.4217826],[50.0849022,14.4200847,50.0849578,14.4201343,50.0849572,14.4201509,50.0850064,14.4202283,50.0850046,14.4202309,50.0849755,14.4203016,50.0849148,14.4202412,50.0848373,14.4204591,50.0848858,14.4204987,50.0847732,14.4207314,50.0847615,14.4207547,50.0847538,14.4207452,50.0847575,14.4207376,50.0847309,14.4207017,50.0847274,14.4207098,50.0847205,14.4206997,50.0847241,14.4206916,50.0846924,14.4206472,50.0846996,14.4206276,50.0847191,14.4205783,50.0847779,14.4204278,50.0848359,14.4203002,50.0849022,14.4200847],[50.088764,14.4240622,50.0888076,14.4241709,50.0888467,14.4242978,50.088723,14.4243831,50.0886739,14.4242232,50.0886785,14.424218,50.0886884,14.4242109,50.0886946,14.4242317,50.0886856,14.4242389,50.08869,14.4242543,50.0887423,14.4242104,50.0887093,14.4240911,50.0886471,14.4241309,50.0886391,14.4240952,50.0886307,14.4241008,50.0886242,14.4240741,50.0886298,14.424071,50.0886013,14.4239713,50.0887006,14.4239345,50.0887612,14.4240659,50.088764,14.4240622],[50.0860917,14.4222545,50.0860721,14.4222874,50.0859981,14.4223988,50.0859993,14.422403,50.0859562,14.4224718,50.0857664,14.4220952,50.0858787,14.4219334,50.0858826,14.4219343,50.0859247,14.4218744,50.0859349,14.4218423,50.0859938,14.4219106,50.0860359,14.4217806,50.086087,14.4218248,50.0860787,14.4218524,50.086149,14.421909,50.086086,14.4220266,50.0859704,14.4219324,50.0859208,14.4219965,50.0860138,14.4221835,50.0860395,14.4221528,50.0860822,14.4222353,50.0860917,14.4222545],[50.0854587,14.4211787,50.0855488,14.4210269,50.0855811,14.4210899,50.085583,14.4210878,50.0855845,14.4210936,50.0855904,14.4210875,50.0856031,14.4211043,50.0856175,14.4211238,50.0856377,14.4210898,50.0856258,14.4210729,50.0856496,14.4210458,50.0856785,14.4211127,50.0856728,14.4211318,50.0856816,14.4211429,50.0856285,14.4212004,50.0856162,14.421184,50.0855901,14.4212236,50.0855873,14.4212242,50.0855844,14.4212237,50.0855817,14.4212222,50.0855794,14.4212196,50.0855557,14.4212584,50.0855195,14.4212042,50.0854999,14.4212361,50.0854587,14.4211787],[50.0876142,14.4235421,50.0876284,14.423651,50.0876339,14.4237343,50.0876281,14.4237723,50.0873354,14.4238364,50.0873077,14.4238316,50.0873053,14.423796,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.087321,14.4235676,50.0873213,14.4235612,50.0873564,14.4235618,50.0873961,14.423557,50.0873991,14.4236342,50.0873899,14.423639,50.0873892,14.4236357,50.0873601,14.4236346,50.0873592,14.4236297,50.0873491,14.4236316,50.0873567,14.4237141,50.0875429,14.4236637,50.0875205,14.4235151,50.0875037,14.4235214,50.0875154,14.4235921,50.0874909,14.4236031,50.0874725,14.4235072,50.0875643,14.4234699,50.0875971,14.4234566,50.0876142,14.4235421],[50.0849922,14.4209501,50.0850832,14.4208009,50.0851111,14.4207477,50.0851163,14.4207539,50.085259,14.4204961,50.0852136,14.4204438,50.0852069,14.4204537,50.0852133,14.4204632,50.0852184,14.4204735,50.0851835,14.420539,50.0851659,14.4205141,50.0851282,14.4205888,50.0851267,14.4205874,50.0850946,14.4206509,50.0851169,14.4206815,50.0850899,14.4207323,50.0850666,14.4206994,50.0849168,14.4209349,50.0849057,14.4209528,50.0849123,14.4209624,50.0849162,14.4209554,50.0849523,14.4210097,50.0849567,14.4210028,50.0849579,14.4210046,50.084961,14.4209996,50.0849922,14.4209501],[50.0885339,14.4227638,50.0885502,14.422876,50.0886251,14.4228573,50.0886317,14.4229194,50.0885552,14.4229411,50.0885744,14.423044,50.0885342,14.4230656,50.0885061,14.4230757,50.0884888,14.4229587,50.088482,14.4229601,50.0884757,14.4229146,50.0884157,14.4229339,50.0884406,14.4230972,50.0884322,14.4231005,50.0883507,14.4231173,50.0882849,14.4230867,50.0882628,14.4230713,50.0882347,14.4230517,50.0882174,14.4230397,50.0882708,14.4229882,50.0882733,14.4229951,50.0883666,14.4230413,50.088349,14.4229207,50.0884094,14.4228852,50.0884696,14.4228668,50.0884582,14.4228,50.0885339,14.4227638],[50.0865623,14.4184787,50.0865573,14.4184827,50.0865877,14.4186187,50.0865936,14.4186163,50.0865965,14.4186282,50.0866556,14.4186181,50.0866721,14.4187503,50.0866172,14.4187646,50.0865552,14.4187644,50.0865473,14.4189395,50.0865392,14.4190261,50.0865446,14.4190269,50.0865299,14.4192602,50.0864163,14.4192282,50.0864204,14.4191445,50.0864323,14.4189902,50.0864335,14.4189754,50.0864386,14.4189754,50.0864437,14.4187177,50.0864493,14.4187164,50.0864487,14.4187121,50.0864664,14.4187105,50.0864801,14.4187093,50.0864832,14.4187604,50.0865408,14.4187652,50.0865036,14.4185015,50.0864261,14.41854,50.0864188,14.4185088,50.0864076,14.4184322,50.0864238,14.4184248,50.0865317,14.418368,50.0865623,14.4184787],[50.0853893,14.4206529,50.0853471,14.4207333,50.0853319,14.4207637,50.0853527,14.4207949,50.0853509,14.4207974,50.0853386,14.4208179,50.0853309,14.4208079,50.0853219,14.4208239,50.0853279,14.4208353,50.0853224,14.4208459,50.0854074,14.4209725,50.085282,14.4211416,50.0851911,14.4212908,50.0851865,14.4212984,50.0851868,14.4213018,50.0851781,14.4213164,50.0851669,14.4213337,50.0850217,14.4211262,50.0850305,14.421112,50.0850644,14.4210561,50.0850615,14.421052,50.0851089,14.4209664,50.085121,14.420981,50.0851479,14.420934,50.0851326,14.4209161,50.0851744,14.420827,50.0851163,14.4207539,50.085259,14.4204961,50.0853893,14.4206529],[50.0882303,14.4241977,50.0882312,14.4242142,50.088226,14.4242154,50.0882235,14.4242033,50.0881852,14.4242218,50.0881946,14.4243038,50.0882452,14.4242891,50.0882473,14.424304,50.0882632,14.4243009,50.0882627,14.4242881,50.0882689,14.4242861,50.0882705,14.4242985,50.088295,14.4242933,50.0882942,14.4242792,50.0883014,14.424277,50.088303,14.4242904,50.0883106,14.4242892,50.0883337,14.4242713,50.0883236,14.4242279,50.0883694,14.4242011,50.0883504,14.4241201,50.0884082,14.4240806,50.0884441,14.4242123,50.0883848,14.4242459,50.0884131,14.424377,50.088367,14.4243921,50.0882089,14.4244575,50.0881522,14.4244668,50.0880848,14.4244695,50.0880857,14.4242793,50.0880759,14.4242813,50.0880702,14.4241119,50.0882029,14.424068,50.0882303,14.4241977],[50.0876465,14.4252743,50.0876467,14.4252759,50.0876675,14.4254562,50.0876697,14.4254751,50.0876718,14.4254938,50.0875942,14.4255157,50.087565,14.4255241,50.0875728,14.4255842,50.087504,14.4256178,50.087438,14.425644,50.0874015,14.4256561,50.0872404,14.4256949,50.0872383,14.4256706,50.087227,14.4255423,50.0872249,14.4255154,50.0873853,14.4254842,50.0874145,14.4254733,50.0874103,14.4253716,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0875124,14.4252907,50.0875125,14.4252938,50.0875161,14.4252926,50.0875169,14.4252737,50.0875776,14.4252755,50.0876465,14.4252743],[50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0852212,14.4198961,50.0852262,14.4196171,50.0852941,14.419622,50.0853426,14.4196202,50.0853481,14.4196154,50.0853485,14.4195215,50.0853013,14.4195223,50.0853042,14.4194669,50.0852819,14.4194677,50.0852877,14.4193951,50.0852611,14.4193902,50.0852603,14.4194029,50.0851967,14.4193971,50.0851901,14.4194597,50.0851892,14.419466,50.0852629,14.4194804,50.0852628,14.4195332,50.085305,14.4195339,50.0853048,14.4195606,50.0852098,14.4195613,50.0852097,14.4195905,50.0851942,14.4195906,50.0851945,14.4196094,50.0851912,14.4196096,50.0851909,14.4196789,50.0851611,14.4196772,50.0851616,14.4196038,50.0851714,14.4194572,50.0850849,14.4194393,50.0850863,14.4195146,50.0850875,14.4195776],[50.0885552,14.4229411,50.0886317,14.4229194,50.0887615,14.4228776,50.0888785,14.4228196,50.0889172,14.4228043,50.0889213,14.4228027,50.0889214,14.4228039,50.0889331,14.4229131,50.0889596,14.4232631,50.088812,14.42334,50.0888133,14.4233484,50.0887314,14.4233826,50.0887107,14.4232657,50.088744,14.4232391,50.0888888,14.4231694,50.0888855,14.4231453,50.0888779,14.4231483,50.0888759,14.4231376,50.0888802,14.4231358,50.0888688,14.4230872,50.0888631,14.4230898,50.0888615,14.4230787,50.0888673,14.4230762,50.0888602,14.4230241,50.0888533,14.4230269,50.0888521,14.4230178,50.088862,14.4230132,50.0888531,14.4229613,50.0888088,14.422985,50.088736,14.4230167,50.0886697,14.4230404,50.0886724,14.4230602,50.0886504,14.4230678,50.0886482,14.4230486,50.0885786,14.423075,50.0885744,14.423044,50.0885552,14.4229411],[50.085733,14.4212,50.0857275,14.421208,50.0857359,14.4212197,50.0857278,14.4212371,50.0857609,14.421279,50.0857528,14.4212957,50.0857709,14.4213218,50.0857726,14.4213243,50.0857394,14.4213756,50.0857145,14.421342,50.0857043,14.4213605,50.0857226,14.4213849,50.0856765,14.4214105,50.0856103,14.4215052,50.0855975,14.421487,50.0854991,14.421658,50.0853942,14.421516,50.0855087,14.4213537,50.0855118,14.4213567,50.0855615,14.421426,50.0855789,14.4214246,50.0856644,14.4212762,50.0856614,14.4212457,50.0856285,14.4212004,50.0856816,14.4211429,50.0856876,14.4211514,50.0856947,14.421139,50.085728,14.421194,50.085733,14.4212],[50.0865052,14.4233628,50.0865064,14.4233583,50.0865167,14.4233606,50.0865167,14.4233658,50.0865295,14.423368,50.0865298,14.423363,50.0865443,14.4233662,50.0865443,14.4233717,50.0865584,14.4233748,50.0865589,14.4233685,50.0865866,14.4233748,50.0865959,14.4232646,50.0866671,14.4232978,50.086661,14.4233297,50.086679,14.4233393,50.0866714,14.4233769,50.0867077,14.4233952,50.0867073,14.4234011,50.0868524,14.4234798,50.0868615,14.4234393,50.0869067,14.4234574,50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871262,14.4234705,50.0869615,14.4234321,50.0869613,14.4234276,50.0867581,14.4233272,50.0866876,14.4233063,50.0866879,14.4233042,50.086687,14.4233039,50.086701,14.4232248,50.0866209,14.423191,50.086596,14.4231769,50.0865955,14.4231807,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0865052,14.4233628],[50.0862503,14.4200274,50.0863133,14.4199902,50.0863778,14.4202535,50.086393,14.4203262,50.0864114,14.420412,50.0863862,14.420423,50.086354,14.4204361,50.0863534,14.4204537,50.0863521,14.4204623,50.0863502,14.4204706,50.0863476,14.4204784,50.0863406,14.4204923,50.0863363,14.4204981,50.0863316,14.4205031,50.0863212,14.4205101,50.0863157,14.4205121,50.0863043,14.4205128,50.0862987,14.4205115,50.0862932,14.4205091,50.086288,14.4205057,50.0862785,14.4204961,50.0862744,14.4204899,50.0862679,14.4204756,50.0862213,14.4204987,50.0862123,14.4205034,50.0861917,14.4203978,50.0861778,14.4203263,50.0861704,14.4203235,50.0861648,14.4203172,50.0861553,14.4202668,50.086154,14.4202675,50.0861528,14.4202621,50.0861486,14.4202643,50.0861417,14.4202597,50.0861391,14.4202542,50.0861331,14.4202496,50.0861281,14.4202222,50.086123,14.4201948,50.0861258,14.4201863,50.0861295,14.4201676,50.0861323,14.4201663,50.0861223,14.4201141,50.0861352,14.4201088,50.0861332,14.4200962,50.0862089,14.4200631,50.0861954,14.4199981,50.0861988,14.4199964,50.0862396,14.4199758,50.0862503,14.4200274],[50.0851233,14.4227554,50.0850679,14.4228438,50.0850593,14.422832,50.0850405,14.4228645,50.0850417,14.4228669,50.0848913,14.423112,50.0849303,14.4231691,50.0848955,14.4232275,50.0848601,14.4231743,50.0848648,14.4231645,50.0848555,14.4231516,50.0848689,14.4231244,50.0848432,14.4230866,50.0848604,14.4230577,50.0848517,14.4230446,50.0848196,14.4231004,50.0847804,14.423046,50.0847211,14.4229615,50.0847192,14.4229655,50.0847149,14.4229599,50.084712,14.4229635,50.0847079,14.4229559,50.0847206,14.4229354,50.0847204,14.4229264,50.0847055,14.4229035,50.0847342,14.4228608,50.0847625,14.422827,50.0847677,14.4228338,50.0847763,14.4228214,50.0847807,14.4228299,50.084784,14.4228264,50.0847918,14.4228395,50.0847716,14.4228699,50.0847615,14.4228543,50.0847467,14.4228772,50.0848248,14.4229889,50.084933,14.4228069,50.0848951,14.4227507,50.0848908,14.4227589,50.0848801,14.4227435,50.0848842,14.4227355,50.08486,14.4227005,50.0848561,14.4227058,50.0848513,14.4226994,50.0848481,14.4227039,50.0848454,14.4226998,50.0848435,14.4226959,50.0848661,14.4226588,50.0848622,14.4226526,50.0848652,14.4226466,50.084888,14.4226078,50.0848456,14.4225497,50.0848372,14.422537,50.0848975,14.4224337,50.0851233,14.4227554],[50.0879652,14.4239951,50.0879685,14.423997,50.0879755,14.4240412,50.0879773,14.4240411,50.0879878,14.4241051,50.0879939,14.4241673,50.0880009,14.4242968,50.0879253,14.4243182,50.087901,14.4241255,50.0878966,14.4241246,50.0878872,14.4240242,50.0879652,14.4239951],[50.08692,14.418507,50.0868306,14.4185714,50.0868278,14.4185734,50.0868259,14.418569,50.0867953,14.4184456,50.0868938,14.4183841,50.08692,14.418507],[50.0868938,14.4183841,50.0867953,14.4184456,50.0867672,14.4183193,50.0868663,14.4182562,50.0868938,14.4183841],[50.0855891,14.4202832,50.0855231,14.4202691,50.0855321,14.4199873,50.0856102,14.4200007,50.0855891,14.4202832],[50.0868521,14.4186575,50.0868781,14.4187433,50.0869191,14.4188407,50.0869705,14.4188145,50.0869724,14.4188133,50.0869627,14.4187541,50.0869607,14.418755,50.0869495,14.4186839,50.0869512,14.4186836,50.0869435,14.4186365,50.0869414,14.4186367,50.0869298,14.4185647,50.086932,14.4185645,50.0869225,14.4185053,50.08692,14.418507,50.0868306,14.4185714,50.0868521,14.4186575],[50.0860461,14.4183164,50.0859511,14.4183639,50.0859053,14.418382,50.0859037,14.4183775,50.0858832,14.4183009,50.0860242,14.4182263,50.0860461,14.4183164],[50.086834,14.418659,50.0867454,14.4186839,50.0867336,14.4185956,50.0868113,14.4185732,50.086834,14.418659],[50.0866202,14.4189482,50.0866006,14.4192689,50.0865299,14.4192602,50.0865446,14.4190269,50.0865392,14.4190261,50.0865473,14.4189395,50.0865552,14.4187644,50.0866172,14.4187646,50.0866202,14.4189482],[50.0886218,14.4225826,50.0885946,14.4223138,50.0885878,14.4222673,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0885173,14.4226072,50.0886218,14.4225826],[50.0856478,14.418274,50.0857238,14.4184698,50.0856618,14.4185404,50.0856192,14.4184422,50.0855698,14.4183286,50.0856478,14.418274],[50.0883122,14.4240073,50.0883392,14.4241275,50.0882778,14.4241745,50.0882303,14.4241977,50.0882029,14.424068,50.0882025,14.4240649,50.0883122,14.4240073],[50.0855193,14.4203728,50.0855059,14.4204525,50.0854811,14.4204395,50.0854428,14.4204279,50.0854586,14.4199741,50.0855321,14.4199873,50.0855231,14.4202691,50.0855193,14.4203728],[50.0872111,14.4242333,50.0872107,14.4242084,50.0876323,14.4241453,50.0876371,14.4244212,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333],[50.0865271,14.4217124,50.0865322,14.4217255,50.0865808,14.4218062,50.0865384,14.4218708,50.0864393,14.4217146,50.0864398,14.4217135,50.0864422,14.4217084,50.0864956,14.4216731,50.0865271,14.4217124],[50.0893089,14.4234701,50.0891899,14.4234903,50.0891663,14.4235015,50.0891447,14.4234333,50.0891371,14.4233854,50.0892152,14.4233554,50.089299,14.4233313,50.0893089,14.4234701],[50.0857484,14.4185337,50.0857618,14.4185596,50.085773,14.4185901,50.0857305,14.4186487,50.0856618,14.4185404,50.0857238,14.4184698,50.0857276,14.418467,50.0857484,14.4185337],[50.0865393,14.4204705,50.0864051,14.4205323,50.0863862,14.420423,50.0864114,14.420412,50.086393,14.4203262,50.0864527,14.4202926,50.0864839,14.4202714,50.0865393,14.4204705],[50.0871152,14.4239088,50.0871016,14.424067,50.0869539,14.4240731,50.0869553,14.4240663,50.0869323,14.4240638,50.086963,14.4238082,50.0871148,14.4238115,50.0871152,14.4239088],[50.0860418,14.417674,50.0860695,14.4177668,50.0859826,14.417801,50.0859716,14.4177415,50.0859675,14.4177201,50.0859649,14.4177079,50.0860418,14.417674],[50.089268,14.4224526,50.0892824,14.4224793,50.0893113,14.4225738,50.0892505,14.4226204,50.0891348,14.4227009,50.0891069,14.4226072,50.0890861,14.4225233,50.089074,14.4224996,50.0892111,14.4223707,50.089268,14.4224526],[50.0865291,14.4230379,50.0865199,14.4231125,50.086511,14.4231506,50.0865084,14.4231519,50.0865087,14.4231566,50.0865086,14.4231658,50.0864885,14.423358,50.0864736,14.4233416,50.0864575,14.4233044,50.086449,14.4232729,50.0864449,14.42325,50.0864261,14.4230891,50.0864231,14.4229994,50.0864372,14.422833,50.086555,14.4228762,50.0865291,14.4230379],[50.0869539,14.4230291,50.0869567,14.4230014,50.086959,14.422979,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.0870858,14.4231926,50.0869944,14.423172,50.0869935,14.4231761,50.0869416,14.4231641,50.0869539,14.4230291],[50.0854548,14.4196817,50.0854558,14.4196851,50.0855346,14.4196694,50.085561,14.4198786,50.0854342,14.4198863,50.0854332,14.4197726,50.0854357,14.4197202,50.085444,14.4196864,50.0854548,14.4196817],[50.086654,14.423581,50.086623,14.423639,50.0865435,14.4234815,50.086561,14.423411,50.086623,14.423429,50.086698,14.423473,50.086654,14.423581],[50.0879598,14.423078,50.087991,14.4232073,50.0879923,14.4232127,50.0879841,14.4232198,50.0879746,14.4232242,50.0879281,14.4232545,50.0878841,14.4231372,50.0879381,14.4230957,50.0879367,14.4230912,50.0879467,14.4230777,50.0879594,14.4230669,50.0879626,14.4230765,50.0879598,14.423078],[50.0877136,14.423999,50.08772,14.4238355,50.0878481,14.4237764,50.0879045,14.4237487,50.0879284,14.4238895,50.0878609,14.4239129,50.0878657,14.4239565,50.0877859,14.4239758,50.0877859,14.423982,50.0877136,14.423999],[50.0868913,14.4235856,50.0869691,14.423622,50.0871184,14.4236478,50.0871148,14.4238115,50.086963,14.4238082,50.0868643,14.4237746,50.0868762,14.4236897,50.0868704,14.4236874,50.0868709,14.4236794,50.0868731,14.4236806,50.0868913,14.4235856],[50.0872078,14.425337,50.0874101,14.42531,50.0874668,14.4253037,50.0874672,14.4252953,50.0874676,14.4251948,50.0872009,14.4252162,50.0872078,14.425337],[50.0878776,14.4239539,50.0878657,14.4239565,50.0878609,14.4239129,50.0879284,14.4238895,50.0879338,14.4238868,50.0879395,14.4238896,50.0879652,14.4239951,50.0878872,14.4240242,50.0878776,14.4239539],[50.085861,14.4206997,50.0859799,14.4207098,50.0859794,14.4207274,50.0859754,14.4207281,50.0859897,14.4209747,50.0859625,14.4209762,50.085896,14.4209728,50.0858498,14.4209798,50.0858494,14.4209743,50.0858676,14.420897,50.085861,14.4206997],[50.0856276,14.4210763,50.0856031,14.4211043,50.0855904,14.4210875,50.0855845,14.4210936,50.085583,14.4210878,50.0855811,14.4210899,50.0855488,14.4210269,50.0855997,14.4209373,50.0856496,14.4210458,50.0856258,14.4210729,50.0856276,14.4210763],[50.0860721,14.4222874,50.0861109,14.4223467,50.0861205,14.422331,50.0861355,14.4223539,50.0861371,14.4223517,50.0861874,14.4224188,50.0860405,14.422649,50.0859562,14.4224718,50.0859993,14.422403,50.0859981,14.4223988,50.0860721,14.4222874],[50.0891389,14.423108,50.0891293,14.4229455,50.0891277,14.4229179,50.0891181,14.4227995,50.0891099,14.4227162,50.0891348,14.4227009,50.0892505,14.4226204,50.0892815,14.4230879,50.0891557,14.4231065,50.0891389,14.423108],[50.0861704,14.419016,50.0861912,14.4190218,50.0862553,14.4190396,50.0863378,14.4190703,50.086332,14.4191486,50.0863385,14.4192254,50.0862088,14.41923,50.0862092,14.4192148,50.0861946,14.4192042,50.0861931,14.4191581,50.086185,14.4191358,50.0861638,14.4191294,50.0861704,14.419016],[50.0889844,14.4223217,50.0889473,14.4223818,50.0890123,14.4225543,50.089074,14.4224996,50.0892111,14.4223707,50.0891267,14.422279,50.0890512,14.4222136,50.0890012,14.4222945,50.0889844,14.4223217],[50.0875756,14.4250972,50.0876568,14.4250973,50.0876593,14.4251638,50.0876568,14.4252745,50.0876465,14.4252743,50.0875776,14.4252755,50.0875761,14.4251452,50.0875756,14.4250972],[50.0861506,14.4181334,50.0861713,14.4181469,50.0861923,14.4181311,50.0862145,14.4181818,50.0862311,14.4182187,50.0860964,14.4182856,50.0860592,14.418085,50.0861313,14.4180406,50.0861506,14.4181334],[50.0865955,14.4231807,50.0865087,14.4231566,50.0865084,14.4231519,50.086511,14.4231506,50.0865199,14.4231125,50.086548,14.4231235,50.0865553,14.4230485,50.0865291,14.4230379,50.086555,14.4228762,50.0866371,14.4229297,50.086596,14.4231769,50.0865955,14.4231807],[50.0854554,14.4208939,50.0854107,14.420831,50.0853904,14.4208194,50.0853867,14.4207879,50.0853778,14.4207875,50.0853647,14.420772,50.0853638,14.4207571,50.0853471,14.4207333,50.0853893,14.4206529,50.0855081,14.420798,50.0854554,14.4208939],[50.0884887,14.4225197,50.0884908,14.4225842,50.0884647,14.4225925,50.0884726,14.4226202,50.0884348,14.4226295,50.0883535,14.4226552,50.0883471,14.4226305,50.0883036,14.4224749,50.0884883,14.4223549,50.0885103,14.4224408,50.0885142,14.4225036,50.0884887,14.4225197],[50.0891389,14.423108,50.08906,14.423114,50.089056,14.423063,50.089043,14.423064,50.089034,14.422936,50.089074,14.42293,50.089075,14.422953,50.0891293,14.4229455,50.0891389,14.423108],[50.0860865,14.4220946,50.0860886,14.4220922,50.0861371,14.4221614,50.0861605,14.4222264,50.0862772,14.4223824,50.0863728,14.4222073,50.0863094,14.4221221,50.0862578,14.4220414,50.0862081,14.4219696,50.086195,14.4219412,50.0861768,14.421913,50.0861565,14.4218938,50.086149,14.421909,50.086086,14.4220266,50.0860657,14.4220671,50.0860865,14.4220946],[50.0878823,14.4231333,50.0878841,14.4231372,50.0879281,14.4232545,50.0879747,14.423404,50.0879745,14.4234142,50.0879687,14.4234205,50.0878094,14.4235191,50.0877906,14.4235268,50.087766,14.4234423,50.0876723,14.4234852,50.0876512,14.4233891,50.0876653,14.4233742,50.087782,14.4232503,50.0878004,14.4232308,50.0878705,14.4231493,50.0878695,14.4231447,50.0878823,14.4231333],[50.086493,14.423866,50.0864355,14.4237875,50.0864974,14.4236625,50.0864341,14.4235362,50.0863719,14.4234122,50.08644,14.4233485,50.086458,14.423416,50.0865435,14.4234815,50.086623,14.423639,50.086493,14.423866],[50.0857122,14.4236834,50.0854732,14.4240402,50.0854636,14.4240239,50.0853857,14.4238936,50.0854437,14.4238086,50.0854885,14.4238848,50.0855415,14.4238089,50.0854998,14.4237371,50.0856362,14.4235474,50.0857122,14.4236834],[50.0857706,14.4209408,50.0857752,14.4209368,50.0857925,14.420969,50.085809,14.4210024,50.0857984,14.4210121,50.0856785,14.4211127,50.0856496,14.4210458,50.0855997,14.4209373,50.085733,14.4208262,50.0857706,14.4209408],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0857994,14.4180799,50.0857687,14.4179189,50.0857315,14.4179408,50.0857204,14.4178989,50.0857043,14.4178379,50.0857786,14.417798,50.0857799,14.4177921,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0886261,14.4236484,50.0886417,14.4237011,50.0887078,14.4239242,50.0887006,14.4239345,50.0886013,14.4239713,50.0885991,14.4239612,50.0886034,14.423958,50.0885543,14.4237291,50.0885347,14.4236196,50.0885797,14.4235929,50.0886261,14.4236484],[50.0853691,14.4208245,50.0853904,14.4208194,50.0854107,14.420831,50.0854554,14.4208939,50.0854074,14.4209725,50.0853224,14.4208459,50.0853279,14.4208353,50.0853386,14.4208179,50.0853509,14.4207974,50.0853691,14.4208245],[50.0860308,14.4204237,50.0861917,14.4203978,50.0862123,14.4205034,50.0862213,14.4204987,50.0862239,14.420541,50.0862251,14.4205767,50.0861497,14.4205858,50.0861524,14.4206615,50.0860073,14.4206453,50.0860073,14.4206031,50.0860308,14.4204237],[50.085733,14.4208262,50.0857077,14.4207332,50.0857961,14.4206999,50.085861,14.4206997,50.0858676,14.420897,50.0858494,14.4209743,50.0857925,14.420969,50.0857752,14.4209368,50.0857706,14.4209408,50.085733,14.4208262],[50.086761,14.419304,50.086771,14.4190323,50.0867642,14.4190323,50.0867437,14.4187142,50.0866846,14.4187302,50.0866864,14.4187464,50.0866721,14.4187503,50.0866172,14.4187646,50.0866202,14.4189482,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304],[50.0859716,14.4177415,50.0859494,14.4177521,50.0859554,14.4178074,50.0859826,14.417801,50.0860695,14.4177668,50.0861088,14.4179322,50.0860138,14.4180006,50.0859141,14.4180596,50.0859097,14.4180325,50.0858884,14.4179232,50.0858616,14.4177876,50.0858588,14.4177737,50.0859216,14.417745,50.085921,14.4177403,50.0859675,14.4177201,50.0859716,14.4177415],[50.0849693,14.4197046,50.0849863,14.4197059,50.0849847,14.419736,50.0849801,14.4198946,50.0848762,14.4198822,50.0848737,14.4198765,50.0848748,14.419807,50.0848792,14.4195556,50.0849903,14.4195625,50.0849926,14.419562,50.0849914,14.4196136,50.0849736,14.4196142,50.0849693,14.4197046],[50.0885686,14.4232539,50.0885973,14.4232856,50.0885945,14.4232932,50.0886007,14.4232936,50.0886072,14.4232981,50.088613,14.4233049,50.0886264,14.423405,50.0886034,14.4234572,50.0885659,14.4234144,50.0885643,14.4234162,50.0884964,14.4233332,50.0885117,14.4233002,50.0885114,14.4232883,50.0885686,14.4232539],[50.0854587,14.4211787,50.0854999,14.4212361,50.0855195,14.4212042,50.0855557,14.4212584,50.085508,14.4213349,50.0855087,14.4213537,50.0853942,14.421516,50.0853327,14.4214311,50.0853321,14.4213965,50.0854587,14.4211787],[50.0858404,14.4196024,50.0858419,14.4196121,50.0858639,14.4198179,50.0857517,14.4198595,50.0857416,14.4198632,50.0857288,14.4197392,50.0857351,14.4197374,50.0857347,14.4197277,50.0857544,14.4197196,50.0857476,14.4196543,50.0857496,14.4196246,50.0858404,14.4196024],[50.0869463,14.4243013,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0869531,14.4245126,50.0869464,14.4243808,50.0869463,14.4243013],[50.088959,14.4221676,50.0890012,14.4222945,50.0889844,14.4223217,50.0889766,14.4223002,50.0889379,14.422328,50.088925,14.4223334,50.0889054,14.4223417,50.0889285,14.4224909,50.088852,14.4225145,50.0887926,14.4220917,50.0888601,14.4220437,50.0888894,14.4220228,50.0889458,14.4221396,50.088959,14.4221676],[50.0867454,14.4186839,50.0867336,14.4185956,50.0866556,14.4186181,50.0866721,14.4187503,50.0866864,14.4187464,50.0866846,14.4187302,50.0867437,14.4187142,50.0867428,14.4187009,50.086747,14.4186997,50.0867454,14.4186839],[50.0895072,14.4240731,50.0895325,14.4241512,50.0895052,14.4241713,50.0895343,14.4242639,50.0895985,14.424219,50.0896859,14.4244933,50.0896307,14.4245352,50.089664,14.4246391,50.0896797,14.424628,50.0897093,14.4247203,50.0895817,14.4247948,50.0895754,14.4247985,50.0895727,14.4248001,50.0895319,14.4246734,50.0895329,14.4246689,50.0894907,14.4245451,50.089372,14.4241683,50.089375,14.4241668,50.0894332,14.4241288,50.089432,14.4241233,50.0895072,14.4240731],[50.0880848,14.4244695,50.0880439,14.4244717,50.0879279,14.4244761,50.0879171,14.4243198,50.0879253,14.4243182,50.0880009,14.4242968,50.0880384,14.4242891,50.0880759,14.4242813,50.0880857,14.4242793,50.0880848,14.4244695],[50.0859915,14.4206009,50.0860073,14.4206031,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0859757,14.4205986,50.0859915,14.4206009],[50.0867194,14.4231061,50.0867204,14.4230985,50.0867674,14.4231137,50.0867699,14.4231105,50.0868064,14.4231222,50.086888,14.4231482,50.0868947,14.4230807,50.0868022,14.4230662,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0866897,14.4230958,50.0867194,14.4231061],[50.08857,14.4239799,50.0886387,14.4242417,50.0886739,14.4242232,50.088723,14.4243831,50.0885996,14.4244443,50.0885781,14.4243269,50.0885751,14.424328,50.0885687,14.4243011,50.0886032,14.4242833,50.0886005,14.4242684,50.088586,14.4242733,50.0885786,14.4242697,50.0885727,14.4242618,50.0885706,14.4242484,50.0885663,14.4242526,50.0885626,14.4242383,50.0885729,14.4242307,50.0885751,14.4242215,50.0885695,14.4242159,50.08855,14.4242278,50.088547,14.4242161,50.0885447,14.4242167,50.0884919,14.4240333,50.0885374,14.4240036,50.08857,14.4239799],[50.0890613,14.4221972,50.0890512,14.4222136,50.0890012,14.4222945,50.088959,14.4221676,50.0889458,14.4221396,50.0889775,14.4220905,50.0890613,14.4221972],[50.0869809,14.4206274,50.086977,14.4206155,50.0869466,14.420523,50.0869478,14.4205208,50.0869291,14.420461,50.0869268,14.4204616,50.086912,14.4204199,50.0869138,14.4204179,50.0869005,14.4203773,50.086889,14.4203459,50.086887,14.4203472,50.0868748,14.4203104,50.0868724,14.4203126,50.0868664,14.4202965,50.0868694,14.4202939,50.0868668,14.4202861,50.0868709,14.4202816,50.0868516,14.4202261,50.0868475,14.420233,50.0868438,14.4202328,50.0868384,14.4202167,50.0868413,14.420214,50.0868457,14.4202093,50.0868325,14.4201695,50.0868281,14.4201739,50.0868224,14.4201564,50.0868263,14.4201528,50.0868128,14.4201118,50.0868092,14.4201162,50.086806,14.4201166,50.0868013,14.4200996,50.0868031,14.4200976,50.0867709,14.4199912,50.0868377,14.4199336,50.0868941,14.419886,50.0869426,14.4198448,50.0869477,14.4198396,50.0870132,14.4198083,50.0870244,14.4198437,50.0869852,14.4198715,50.086957,14.4198927,50.0869799,14.4199719,50.0869887,14.4199668,50.0869941,14.4199832,50.0869862,14.4199897,50.0870118,14.4200708,50.087044,14.4201704,50.0870976,14.4203355,50.0871298,14.420435,50.0871605,14.4205308,50.0871346,14.4205478,50.0871432,14.4205795,50.0871394,14.4205824,50.0871384,14.4205972,50.0871668,14.4206971,50.0871731,14.4206926,50.0871769,14.4206957,50.0871815,14.4206928,50.0871854,14.420706,50.0871737,14.4207141,50.0871749,14.420721,50.0871656,14.420727,50.0871635,14.4207209,50.0871297,14.4207434,50.0871314,14.4207501,50.0871243,14.420755,50.0871103,14.420708,50.0870693,14.4205666,50.0869902,14.420621,50.0869809,14.4206274],[50.0862484,14.4181588,50.0862145,14.4181818,50.0861923,14.4181311,50.0861835,14.4181095,50.0861506,14.4181334,50.0861313,14.4180406,50.0861789,14.4179896,50.0862484,14.4181588],[50.0880181,14.4231881,50.0880045,14.4231977,50.087991,14.4232073,50.0879598,14.423078,50.0879626,14.4230765,50.0879594,14.4230669,50.0879719,14.4230581,50.0879841,14.4230496,50.087986,14.4230615,50.0879892,14.4230622,50.0880181,14.4231881],[50.0854636,14.4240239,50.085375,14.4241553,50.0853686,14.4241588,50.0853632,14.4241585,50.085358,14.424157,50.0853517,14.4241513,50.085285,14.4240499,50.0853857,14.4238936,50.0854636,14.4240239],[50.0869833,14.4232534,50.0867925,14.4231999,50.0868064,14.4231222,50.086888,14.4231482,50.0869416,14.4231641,50.0869935,14.4231761,50.0869833,14.4232534],[50.0871103,14.420708,50.0871243,14.420755,50.0871276,14.420766,50.0871111,14.4207781,50.0871097,14.4207736,50.0870935,14.4207854,50.0870954,14.4207918,50.0870792,14.4208037,50.0870773,14.4207975,50.0870548,14.4208141,50.0870576,14.4208235,50.0870401,14.4208364,50.0870283,14.4207976,50.0870298,14.4207956,50.0870226,14.4207713,50.0871103,14.420708],[50.0856405,14.4246183,50.0856315,14.4246294,50.0857323,14.4247948,50.0858814,14.4245872,50.0858024,14.4244467,50.0857288,14.4243222,50.0856266,14.424462,50.0855872,14.4245158,50.0856405,14.4246183],[50.0853506,14.4224267,50.0853241,14.4223902,50.0852973,14.4223544,50.0853963,14.4221828,50.0854253,14.422222,50.0854478,14.4222525,50.0853506,14.4224267],[50.0878682,14.422714,50.087882,14.4227832,50.0878949,14.4227775,50.087899,14.4228015,50.0878858,14.4228075,50.0878991,14.4228831,50.0879148,14.4228767,50.0879181,14.4228961,50.0879039,14.4229037,50.087908,14.4229312,50.0879246,14.4229324,50.0879239,14.4229543,50.0879231,14.4229568,50.087908,14.4229531,50.0878962,14.4229848,50.0879061,14.4230044,50.0878962,14.4230165,50.0878865,14.4229973,50.0878375,14.4230196,50.0878372,14.4230571,50.0878554,14.4230711,50.0878487,14.4230921,50.0878301,14.4230778,50.0878063,14.423107,50.0878105,14.4231365,50.0877966,14.4231413,50.0877928,14.4231147,50.0877614,14.4231083,50.0877525,14.4231398,50.0877386,14.4231302,50.0877482,14.4230961,50.0877349,14.4230626,50.0876873,14.4230886,50.0876855,14.4231146,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875845,14.4228461,50.0875811,14.4228312,50.0876021,14.4228202,50.0875853,14.4227423,50.0875667,14.422752,50.0875623,14.4227316,50.0875617,14.422729,50.087578,14.4227206,50.0875615,14.4226437,50.0875446,14.4226525,50.0875398,14.4226299,50.0875586,14.4226201,50.0875571,14.4226129,50.0875467,14.4225651,50.0875451,14.4225657,50.0875426,14.4225656,50.0875401,14.4225642,50.0875381,14.4225617,50.0875367,14.4225582,50.0875361,14.4225541,50.0875363,14.42255,50.0875375,14.4225462,50.0875382,14.4225452,50.0875216,14.4225534,50.0875192,14.4225421,50.087517,14.4225316,50.0875373,14.4225213,50.0875219,14.4224467,50.0875016,14.422457,50.0875008,14.4224531,50.0874971,14.4224353,50.0875112,14.4224281,50.0875109,14.4224262,50.0875111,14.4224221,50.0875123,14.4224183,50.0875142,14.4224153,50.0875154,14.4224144,50.0875115,14.4223954,50.0875216,14.4223905,50.0875242,14.4223891,50.0875302,14.4224185,50.0875874,14.4223891,50.0875815,14.4223614,50.0875877,14.4223582,50.0875938,14.4223551,50.0875969,14.4223698,50.087598,14.42237,50.0876006,14.4223709,50.0876029,14.422373,50.0876046,14.4223762,50.0876055,14.42238,50.0876227,14.4223715,50.087647,14.4223587,50.0876665,14.4223484,50.0876846,14.4223389,50.0876841,14.4223357,50.0876844,14.4223316,50.0876848,14.4223296,50.0876855,14.4223278,50.0876874,14.4223248,50.0876898,14.422323,50.0876877,14.4223135,50.0877019,14.422306,50.0877065,14.4223273,50.0877488,14.4223046,50.0877438,14.4222817,50.0877623,14.4222719,50.0877649,14.4222836,50.0877674,14.4222833,50.08777,14.4222842,50.0877723,14.4222863,50.087774,14.4222895,50.0877747,14.4222922,50.087785,14.4222877,50.0877903,14.4223095,50.0877734,14.4223205,50.0877888,14.4223902,50.0878068,14.4223794,50.0878125,14.4224037,50.0877991,14.4224123,50.0878014,14.4224144,50.0878031,14.4224176,50.087804,14.4224215,50.0878041,14.4224257,50.0878033,14.4224296,50.0878018,14.4224328,50.0878002,14.4224347,50.0878042,14.4224516,50.0878144,14.4224951,50.087826,14.422489,50.0878272,14.4224947,50.0878142,14.4225015,50.0878359,14.4226022,50.0878505,14.4225945,50.087853,14.4226058,50.0878379,14.4226137,50.0878593,14.4226911,50.0878736,14.4226826,50.0878789,14.4227081,50.0878682,14.422714],[50.0858291,14.4178333,50.0858393,14.4178713,50.0858778,14.4180458,50.0859097,14.4180325,50.0858884,14.4179232,50.0858723,14.4179307,50.0858596,14.4178789,50.0858453,14.4177984,50.0858616,14.4177876,50.0858588,14.4177737,50.0858306,14.4176173,50.0858167,14.4176232,50.0858107,14.417602,50.085764,14.4176351,50.0857886,14.4177151,50.0857859,14.4177166,50.0858054,14.417777,50.0858094,14.4177749,50.0858291,14.4178333],[50.0873077,14.4238316,50.0871937,14.4238433,50.0871953,14.4238154,50.0873053,14.423796,50.0873077,14.4238316],[50.0885428,14.4193907,50.0886364,14.4197081,50.0885478,14.4197668,50.0884461,14.4198342,50.0883947,14.419645,50.0884464,14.4196115,50.0884629,14.4196191,50.0884678,14.4195999,50.0884511,14.4195861,50.0884211,14.4194801,50.0885428,14.4193907],[50.0894624,14.4198045,50.0895386,14.4199919,50.0895451,14.420008,50.0894303,14.4201188,50.0894101,14.4200694,50.0894033,14.4200762,50.089394,14.4200729,50.0893832,14.4200455,50.0893848,14.4200306,50.0893916,14.4200239,50.0893483,14.4199179,50.0893599,14.4199064,50.0894624,14.4198045],[50.0883003,14.4177964,50.0884549,14.4177905,50.0884596,14.4180079,50.0884312,14.4180091,50.0883918,14.4180521,50.0883868,14.4180387,50.0883475,14.4180816,50.0883486,14.4180845,50.0883172,14.4182192,50.0881829,14.4181358,50.0882545,14.4178497,50.0882574,14.417838,50.0882655,14.4178197,50.0882671,14.4178161,50.0882716,14.4178115,50.088281,14.4178019,50.0883003,14.4177964],[50.0900613,14.4221134,50.0900771,14.4221133,50.0901112,14.4221291,50.0900975,14.4222181,50.0901655,14.4222441,50.0901786,14.4221607,50.0902226,14.422183,50.0901981,14.4222938,50.0901862,14.422287,50.0901781,14.422342,50.0901941,14.4223543,50.0902127,14.4225477,50.0901055,14.4225084,50.090012,14.4224741,50.0900394,14.4222847,50.0900568,14.4222925,50.0900664,14.4222256,50.090049,14.4222187,50.0900613,14.4221134],[50.088328,14.4193998,50.0883496,14.4194797,50.0883247,14.4194955,50.0883299,14.4195177,50.0882956,14.4195414,50.0882894,14.4195205,50.0882671,14.4195364,50.0882909,14.4196211,50.0883531,14.4195814,50.0883735,14.4196564,50.0883935,14.419643,50.0883947,14.419645,50.0884461,14.4198342,50.0883974,14.4198655,50.0883988,14.4198705,50.0883748,14.4198853,50.088352,14.4198994,50.0883509,14.4198957,50.0883034,14.4199265,50.0881877,14.4194897,50.088328,14.4193998],[50.0884674,14.419135,50.0884742,14.419158,50.0885428,14.4193907,50.0884211,14.4194801,50.0883426,14.4192223,50.0884674,14.419135],[50.087875,14.4180043,50.0878744,14.4179981,50.0878197,14.4180209,50.0877905,14.4178417,50.0880368,14.4177387,50.0880418,14.4177465,50.0880555,14.4177695,50.0880698,14.4177935,50.0880742,14.4178017,50.0879798,14.4181733,50.0878703,14.4181071,50.0878901,14.4180281,50.0878866,14.4180256,50.087875,14.4180043],[50.0889202,14.420204,50.0888911,14.42013,50.0888797,14.420123,50.0888698,14.4201303,50.0888733,14.4201452,50.0888696,14.4201592,50.0888451,14.4201734,50.0888464,14.4201806,50.0888123,14.4202019,50.0887572,14.4199916,50.0888468,14.4199338,50.0889232,14.4198846,50.0889305,14.4198882,50.0889369,14.4198913,50.0890216,14.4201093,50.0889202,14.420204],[50.0884979,14.4210983,50.0885185,14.4210801,50.0884811,14.4209957,50.0884153,14.4210786,50.088445,14.4211384,50.088493,14.4210859,50.0884979,14.4210983],[50.0888424,14.4236655,50.0888458,14.4236616,50.0888521,14.4236654,50.0889127,14.4238381,50.0889086,14.423857,50.0889152,14.4238723,50.0889465,14.4238467,50.0890027,14.4239966,50.0888901,14.4240928,50.0888643,14.4240808,50.0887456,14.4237499,50.0888424,14.4236655],[50.0887456,14.4237499,50.0887308,14.4237087,50.0886689,14.4235363,50.0887656,14.4234881,50.0887774,14.4234823,50.0888006,14.4235475,50.0888198,14.4235317,50.0888254,14.4235336,50.088838,14.4235704,50.088837,14.4235799,50.0888182,14.4235965,50.0888279,14.4236241,50.0888424,14.4236655,50.0887456,14.4237499],[50.0872304,14.4221527,50.0872268,14.4221104,50.0872294,14.4221046,50.0872271,14.4220984,50.087225,14.422099,50.0870677,14.4221905,50.0869827,14.4222482,50.0869463,14.4222744,50.0869629,14.4223514,50.0869809,14.4223612,50.0870286,14.4223251,50.087037,14.4223587,50.0870699,14.4223299,50.0870879,14.4222977,50.0870829,14.4222717,50.0871342,14.4222145,50.0872304,14.4221527],[50.0870226,14.4207713,50.0869852,14.4206423,50.0869809,14.4206274,50.0869902,14.420621,50.0870693,14.4205666,50.0871103,14.420708,50.0870226,14.4207713],[50.0858692,14.419048,50.0858799,14.4190444,50.0858919,14.4190417,50.0859073,14.4192661,50.0858966,14.4192681,50.0858844,14.4192707,50.0858692,14.419048],[50.0858919,14.4190417,50.0859609,14.4190236,50.0859726,14.4191692,50.0859063,14.4191797,50.0859111,14.4192656,50.0859073,14.4192661,50.0858919,14.4190417],[50.0862446,14.4198485,50.0862533,14.4198635,50.0862853,14.4199189,50.086352,14.4198918,50.0863648,14.4199294,50.0864051,14.4199062,50.0864102,14.4199105,50.0864454,14.42004,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864372,14.4197829,50.0864335,14.4197667,50.0862446,14.4198485],[50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860369,14.4200007,50.0860453,14.4200471,50.086143,14.420004,50.0861089,14.4198998,50.0861006,14.4198797,50.0859562,14.419948],[50.0870226,14.4207713,50.0869809,14.4206274,50.0869782,14.420632,50.0869627,14.420658,50.0869716,14.4206866,50.0869703,14.4206877,50.0869687,14.4206889,50.0869717,14.420698,50.0869746,14.4206956,50.0869802,14.4207138,50.0869865,14.4207328,50.0869835,14.4207356,50.0869866,14.4207448,50.086988,14.4207437,50.0869894,14.4207427,50.087003,14.4207869,50.0870226,14.4207713],[50.0870985,14.4207738,50.0870934,14.4207687,50.0870876,14.4207665,50.0870816,14.4207673,50.0870761,14.4207712,50.0870717,14.4207776,50.0870689,14.4207859,50.087068,14.4207951,50.0870691,14.4208043,50.087072,14.4208124,50.0870764,14.4208186,50.0870819,14.4208223,50.0870878,14.420823,50.0870936,14.4208207,50.0870986,14.4208155,50.0871023,14.4208082,50.0871042,14.4207994,50.0871042,14.4207901,50.0871022,14.4207812,50.0870985,14.4207738],[50.0868089,14.4229884,50.0868022,14.4230662,50.0868947,14.4230807,50.086888,14.4231482,50.0869416,14.4231641,50.0869539,14.4230291,50.0868089,14.4229884],[50.0878963,14.4169681,50.0879264,14.4171451,50.0879798,14.4170906,50.0879601,14.4169388,50.0878963,14.4169681],[50.0880391,14.4171294,50.0879798,14.4170906,50.0879264,14.4171451,50.0879086,14.4171659,50.0879264,14.4172716,50.0880253,14.4171807,50.0880391,14.4171294],[50.0889429,14.4249176,50.0889141,14.4249275,50.0889038,14.424849,50.0889328,14.4248396,50.0889429,14.4249176],[50.087242,14.41992,50.0872284,14.4198718,50.087253,14.4198549,50.0872666,14.419903,50.087242,14.41992],[50.0889331,14.4229131,50.0891181,14.4227995,50.0891099,14.4227162,50.0891074,14.4226974,50.0889382,14.4227988,50.0889214,14.4228039,50.0889331,14.4229131],[50.08739,14.4212587,50.0873244,14.4212924,50.0873453,14.4213914,50.0874109,14.4213577,50.08739,14.4212587],[50.0857173,14.4241551,50.0855715,14.4243616,50.0855084,14.42445,50.0854792,14.4243997,50.0854753,14.4244057,50.0854332,14.4243386,50.0856427,14.4240336,50.0857173,14.4241551],[50.0858053,14.4238425,50.0858609,14.4239415,50.0857673,14.424078,50.08575,14.4240442,50.0857255,14.4240759,50.0857435,14.4241098,50.0857239,14.4241359,50.0857265,14.424141,50.0857173,14.4241551,50.0856427,14.4240336,50.0856393,14.4240302,50.0857735,14.42384,50.0858053,14.4238425],[50.0859161,14.4240349,50.085815,14.4241758,50.0858223,14.4241929,50.0856266,14.424462,50.0855715,14.4243616,50.0857173,14.4241551,50.0857265,14.424141,50.0857239,14.4241359,50.0857435,14.4241098,50.0857673,14.424078,50.0858609,14.4239415,50.0859161,14.4240349],[50.0864935,14.4250528,50.0865653,14.4251894,50.0865872,14.4252308,50.0863518,14.4255748,50.0863472,14.4255682,50.0863327,14.4255827,50.0862737,14.4256727,50.0862697,14.4256665,50.0862411,14.4257013,50.0862088,14.4256471,50.0861842,14.4256059,50.0861388,14.4255102,50.0860962,14.4254157,50.0861205,14.4253838,50.0861198,14.4253805,50.0862343,14.4252568,50.0864935,14.4250528],[50.0861143,14.4246901,50.0861383,14.4247339,50.0861821,14.4248069,50.0861821,14.4248401,50.0861521,14.4248857,50.0860962,14.4247966,50.086078,14.4247675,50.0860771,14.4247439,50.0861028,14.4246924,50.0861143,14.4246901],[50.0859223,14.4240264,50.0861252,14.4243799,50.0860178,14.4245287,50.0858223,14.4241929,50.085815,14.4241758,50.0859161,14.4240349,50.0859223,14.4240264],[50.0868675,14.4248018,50.0868778,14.4248837,50.0868806,14.4248817,50.0868799,14.4249006,50.0868838,14.4248982,50.0869034,14.4249645,50.0868819,14.4249731,50.0868575,14.4249835,50.0867787,14.4250274,50.0867734,14.4250301,50.0867462,14.4249354,50.0867489,14.4249328,50.0868164,14.4248752,50.0868055,14.424843,50.0868675,14.4248018],[50.086787,14.4246758,50.0866742,14.4247471,50.0866722,14.4247462,50.0866685,14.4247388,50.0865647,14.4244668,50.0865645,14.4244626,50.0865431,14.4244068,50.086669,14.42437,50.086787,14.4246758],[50.0869525,14.4249526,50.0871003,14.4249743,50.0871038,14.4251334,50.0870206,14.4251315,50.0870164,14.4251267,50.0869176,14.4251346,50.0869036,14.4251398,50.0869046,14.4251465,50.0868264,14.4251794,50.0867787,14.4250274,50.0868575,14.4249835,50.0868704,14.4250269,50.086885,14.4250157,50.0868819,14.4249731,50.0869034,14.4249645,50.0869525,14.4249526],[50.0869903,14.4254236,50.0869903,14.4253872,50.0870148,14.4253852,50.0870152,14.4253879,50.0871079,14.4253848,50.0871119,14.4255402,50.0870138,14.4255548,50.0870138,14.4255623,50.0870106,14.4255657,50.0870074,14.4255603,50.0870075,14.425553,50.0869817,14.4255506,50.0869815,14.4255573,50.0869792,14.4255619,50.0869752,14.4255612,50.0869746,14.4255498,50.0869118,14.4255442,50.0868746,14.4253825,50.0869662,14.425388,50.0869687,14.4254173,50.0869742,14.4254286,50.0869903,14.4254236],[50.086659,14.423736,50.086698,14.423795,50.0866394,14.4239852,50.0864303,14.4240891,50.0864027,14.4240221,50.0863888,14.4240383,50.0863697,14.4240605,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0864355,14.4237875,50.086493,14.423866,50.086484,14.4239,50.086515,14.42396,50.086593,14.423885,50.086659,14.423736],[50.0850591,14.4195756,50.0850875,14.4195776,50.085092,14.4195824,50.0850876,14.419707,50.0850947,14.4198968,50.0849801,14.4198946,50.0849847,14.419736,50.0850108,14.4197374,50.0850138,14.4196736,50.0850076,14.4196721,50.0850081,14.4196139,50.0849914,14.4196136,50.0849926,14.419562,50.0849903,14.4195625,50.0850136,14.4194409,50.0850071,14.4194395,50.085029,14.4193035,50.085091,14.4193295,50.0850849,14.4194393,50.0850863,14.4195146,50.0850601,14.4195132,50.0850591,14.4195756],[50.087857,14.4224209,50.0878388,14.4224315,50.0878042,14.4224516,50.0877964,14.4224166,50.0878308,14.4223977,50.0878486,14.4223879,50.087857,14.4224209],[50.0874647,14.4235082,50.087481,14.4236048,50.0873991,14.4236342,50.0873961,14.423557,50.0874051,14.4235351,50.0874647,14.4235082],[50.0883426,14.4192223,50.0882898,14.4192589,50.088328,14.4193998,50.0883496,14.4194797,50.0883617,14.4195195,50.0884211,14.4194801,50.0883426,14.4192223],[50.0881877,14.4194897,50.0881677,14.4194081,50.0880997,14.4194517,50.0881061,14.4194779,50.088077,14.4195068,50.0880584,14.4195155,50.0880617,14.4195519,50.0880607,14.4195712,50.0881877,14.4194897],[50.0876993,14.4181128,50.0877224,14.4182327,50.0878307,14.4180843,50.0878197,14.4180209,50.0877854,14.4180346,50.0877927,14.4180828,50.0877281,14.4181065,50.087727,14.4180999,50.0876993,14.4181128]],"buildingTypes":["yes","residential","residential","office","church","apartments","civic","residential","residential","apartments","yes","civic","civic","civic","civic","civic","civic","civic","civic","civic","civic","residential","residential","residential","residential","apartments","yes","office","yes","residential","yes","civic","apartments","residential","apartments","church","residential","residential","church","church","synagogue","apartments","yes","residential","residential","residential","residential","residential","residential","civic","civic","residential","residential","civic","civic","residential","civic","apartments","apartments","apartments","residential","civic","office","office","yes","yes","apartments","apartments","yes","apartments","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","apartments","office","residential","residential","residential","residential","apartments","yes","yes","apartments","residential","residential","yes","government","yes","government","civic","yes","office","office","residential","residential","yes","residential","residential","residential","residential","residential","residential","yes","yes","residential","yes","yes","residential","residential","residential","residential","residential","school","residential","residential","residential","residential","residential","residential","residential","residential","yes","residential","yes","residential","residential","residential","residential","residential","apartments","residential","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","apartments","yes","residential","yes","residential","residential","office","residential","yes","residential","residential","residential","yes","government","civic","residential","retail","residential","residential","yes","civic","residential","residential","residential","residential","yes","residential","residential","residential","hotel","residential","civic","hotel","residential","residential","civic","residential","residential","residential","residential","residential","residential","residential","civic","residential","residential","hotel","residential","residential","hotel","residential","residential","residential","residential","residential","residential","yes","yes","residential","residential","residential","yes","yes","residential","residential","residential","residential","civic","residential","residential","commercial","residential","residential","residential","residential","residential","university","residential","residential","yes","residential","civic","residential","civic","church","yes","yes","residential","residential","yes","residential","residential","yes","university","apartments","residential","residential","residential","yes","residential","civic","hotel","residential","civic","residential","office","civic","residential","apartments","yes","civic","residential","civic","yes","residential","residential","residential","residential","residential","residential","residential","yes","residential","residential","residential","residential","yes","residential","civic","yes","residential","residential","residential","civic","residential","residential","residential","office","yes","residential","residential","residential","apartments","civic","residential","yes","civic","residential","apartments","yes","residential","residential","public","residential","yes","yes","apartments","civic","yes","yes","church","yes","residential","residential","residential","residential","residential","residential","residential","residential","residential","yes","yes","yes","retail","civic","yes","yes","yes","yes","yes","yes","yes","garage","commercial","service","service","yes","yes","office","retail","yes","retail","roof","civic","yes","office","residential","retail","yes","residential","bridge","hotel","residential","residential","residential"],"pathways":[[50.0854955,14.4182849,50.0855874,14.4184728],[50.0861101,14.4189584,50.0863538,14.4190214,50.0863693,14.4190312,50.0863786,14.4190518,50.0863809,14.4190781,50.0863774,14.4192268],[50.0882307,14.4254915,50.0881554,14.4251461,50.0881307,14.4245397],[50.0888932,14.4242449,50.0886964,14.4237374,50.0886407,14.4235908,50.0884725,14.4233869,50.08834,14.4233113],[50.0888932,14.4242449,50.0888751,14.4242991,50.0888529,14.4243417,50.0886344,14.4244706,50.0884385,14.4245129,50.0883798,14.4245239],[50.0888932,14.4242449,50.0889432,14.4242466,50.0891606,14.4240643,50.0892009,14.4240146,50.0892408,14.4239635],[50.0892408,14.4239635,50.0892734,14.4240622,50.0892898,14.4241112],[50.089256,14.4222921,50.0892961,14.4223714,50.0893287,14.4224469,50.089341,14.4224862,50.0893496,14.4225255,50.0893535,14.4225487,50.0893595,14.4226029,50.0893628,14.4226586],[50.0895841,14.422445,50.0896749,14.4224851,50.0902336,14.4226721,50.0902539,14.4226789,50.0903083,14.4226951],[50.0895841,14.422445,50.0896202,14.4222459,50.0898966,14.4210365],[50.0898966,14.4210365,50.0899424,14.4210323,50.0899938,14.4210225,50.0900269,14.4209964,50.0900584,14.4209597],[50.090598,14.4204452,50.0906086,14.4205878,50.0906422,14.4210087,50.0906402,14.421037,50.0906297,14.4210503,50.0902556,14.4212442,50.0901932,14.4212781],[50.0894486,14.4193621,50.089338,14.4194345,50.0889262,14.4197064,50.0887292,14.4198307],[50.0904081,14.4182672,50.0903227,14.4183253,50.0902452,14.4183708,50.0901961,14.4183747,50.0901489,14.4183716,50.0899696,14.4183567,50.0897021,14.4183484,50.0892882,14.4184063,50.0892014,14.4183972],[50.087843,14.4191543,50.087896,14.4189511,50.0879246,14.4188254,50.0881617,14.4178508,50.0882044,14.4176773],[50.0867681,14.4173801,50.0867803,14.4174137,50.0868287,14.4176177,50.086832,14.4176342],[50.0907149,14.4185544,50.0906394,14.418601,50.0902506,14.4188447,50.0901882,14.4188857,50.0900068,14.4190007,50.0895301,14.4193134,50.0894486,14.4193621],[50.0890115,14.417661,50.088944,14.417683,50.0882793,14.4177044,50.0882044,14.4176773],[50.0883909,14.4187057,50.0884129,14.4187725,50.088692,14.4197104,50.0887292,14.4198307],[50.0891508,14.4203165,50.0891686,14.4203637,50.0893088,14.4207363,50.0894314,14.4210507],[50.0891763,14.4213428,50.0889353,14.4207401,50.0888933,14.4206292,50.0888736,14.4205773,50.0891508,14.4203165],[50.089826,14.4208565,50.0897339,14.4208967,50.0894314,14.4210507,50.0893882,14.4210839,50.0893243,14.4211492,50.0891763,14.4213428,50.088863,14.4217983,50.088818,14.4218779],[50.0872773,14.4221687,50.0872778,14.4221781,50.0872967,14.4225644,50.0872609,14.4228557,50.0872313,14.4230627,50.0871901,14.423353,50.0871677,14.4235566,50.0871535,14.4237387,50.0871463,14.4239228,50.0871582,14.4243622,50.0871573,14.4245605,50.0871556,14.4252587,50.0871597,14.4253641,50.0871723,14.4255276,50.0871745,14.4255527,50.0871917,14.425745],[50.0876993,14.4218873,50.0877033,14.4219024,50.0877075,14.4219175,50.0877827,14.4221962,50.0877961,14.4222459,50.0878308,14.4223977],[50.0857835,14.4237005,50.0857427,14.4237613,50.0853879,14.42428,50.0851434,14.4246144,50.0850531,14.4247593],[50.0878188,14.4204583,50.0877686,14.4205045,50.0877385,14.4205282,50.0874243,14.4207762,50.0873143,14.4208595,50.0870374,14.4210716],[50.08684,14.4193988,50.0870216,14.4193088],[50.0895157,14.4227733,50.0894348,14.422779,50.0893956,14.4227803],[50.0840494,14.4204678,50.0840759,14.420509,50.0840845,14.4205223,50.0849955,14.421757],[50.0856781,14.4199302,50.0856789,14.4200149],[50.0871076,14.4200277,50.0875526,14.4198888,50.0875842,14.4198796,50.0876185,14.4198804,50.0876414,14.4198894],[50.0870016,14.4192463,50.0870087,14.4192685,50.0870216,14.4193088,50.0870428,14.4193632,50.0870459,14.4193758,50.0870368,14.4193824,50.0870342,14.4193716,50.0870025,14.4193903,50.0870057,14.4194009,50.0869978,14.4194069,50.0869938,14.4193916,50.0869753,14.4193989,50.0869673,14.4194036,50.086915,14.4194347,50.0869197,14.4194526,50.0869091,14.4194606,50.0869026,14.4194422,50.0868386,14.4194881,50.0867867,14.4195356,50.0867645,14.41956,50.0867349,14.4195925,50.0867358,14.419599,50.0865776,14.4198404,50.0865737,14.4198435,50.086572,14.4198489,50.0865699,14.4198479,50.0865677,14.4198482,50.0865658,14.4198498,50.0865644,14.4198525,50.0865638,14.4198557,50.086564,14.4198591,50.0865651,14.4198622,50.0865668,14.4198643,50.086569,14.4198652,50.0865712,14.4198648,50.0865749,14.4198749,50.0865584,14.4199057,50.0865038,14.4199962,50.0864958,14.4200013,50.0864458,14.4198201,50.0864554,14.4198124,50.0864508,14.419793,50.0864408,14.4197987,50.0864335,14.4197667,50.0864431,14.4197613,50.0864381,14.4197399,50.0864286,14.4197453,50.0863792,14.4195488,50.0863628,14.4194563,50.0863559,14.4193971,50.086349,14.4193378,50.0863385,14.4192254,50.0863774,14.4192268,50.0864163,14.4192282,50.0865299,14.4192602,50.0866006,14.4192689,50.0866002,14.4192722,50.086761,14.419304,50.0867612,14.4193056,50.0867943,14.419298,50.0867942,14.4192956,50.086967,14.4192535,50.0869679,14.4192558,50.0870016,14.4192463],[50.0879698,14.4230363,50.0879719,14.4230581],[50.0880384,14.4242891,50.0880439,14.4244717],[50.0848118,14.4220819,50.0848696,14.4219839,50.0849955,14.421757,50.0851133,14.4215534],[50.0839072,14.4207003,50.0839506,14.4207523,50.0839647,14.4207753,50.0847726,14.4220255,50.0848118,14.4220819,50.0848817,14.4221634],[50.0865189,14.4206748,50.0868033,14.4205732,50.0868398,14.4205601],[50.0860192,14.4206775,50.086018,14.4206966,50.0860171,14.4207114,50.0860122,14.420789,50.0860091,14.4210045,50.0860279,14.4210895,50.0860622,14.4211573,50.0861108,14.4212499,50.0863236,14.4213506,50.0863754,14.4214251],[50.0879456,14.4227161,50.0879515,14.422686,50.087961,14.4226632,50.0879745,14.422645,50.0884704,14.4223173,50.0886499,14.4221486,50.0887028,14.4220858,50.0887681,14.4219963,50.0887755,14.4219789,50.088818,14.4218779],[50.0849821,14.4189714,50.0850486,14.4190075,50.0854515,14.4191077,50.0856289,14.419103,50.0858022,14.4190459],[50.0855279,14.4220216,50.0854933,14.422109,50.085447,14.4221859,50.0854253,14.422222],[50.085983,14.4206698,50.0859915,14.4206009],[50.0856695,14.4205402,50.0856636,14.420655],[50.0856789,14.4200149,50.0856675,14.4202038],[50.0858966,14.4192681,50.085899,14.4193014],[50.0865095,14.4197397,50.0864372,14.4197829],[50.0861697,14.4198808,50.0861479,14.4198418],[50.0861147,14.4197549,50.0860247,14.4197749],[50.0859642,14.4199648,50.0859523,14.4199694],[50.0861243,14.4197795,50.0861147,14.4197549,50.0861037,14.4197197,50.0860189,14.4197435],[50.0861479,14.4198418,50.0861243,14.4197795],[50.0862533,14.4198635,50.0861697,14.4198808,50.0861089,14.4198998],[50.0861089,14.4198998,50.0859642,14.4199648],[50.0859949,14.4200696,50.0859836,14.4200314,50.0859523,14.4199694,50.0859146,14.4199256,50.0858875,14.4198983,50.0856781,14.4199302,50.084961,14.4199415,50.0848436,14.4199272,50.0848153,14.4199237],[50.0860173,14.4201603,50.0859949,14.4200696],[50.0860186,14.4204259,50.0860264,14.4203703,50.0860299,14.4203169,50.0860284,14.4202545,50.0860237,14.4202009,50.0860173,14.4201603],[50.0859915,14.4206009,50.0860186,14.4204259],[50.087143,14.4233373,50.0869798,14.4232827],[50.0867024,14.4229612,50.0867077,14.4229338],[50.0866652,14.4231537,50.0867024,14.4229612],[50.0867047,14.4231974,50.0866599,14.4231804,50.0866652,14.4231537],[50.086789,14.4232238,50.0867047,14.4231974],[50.0869798,14.4232827,50.086789,14.4232238],[50.087717,14.4245651,50.0877125,14.4245167,50.087682,14.4242159,50.0876826,14.4237711,50.0876273,14.4234212],[50.0873107,14.4221595,50.0872773,14.4221687,50.0872342,14.4221791,50.087244,14.422268,50.0872482,14.4223532,50.0872503,14.4223577,50.0872483,14.4223639,50.0872494,14.4224096,50.0872525,14.422414,50.0872503,14.4224162,50.0872503,14.4224216,50.0872515,14.422538,50.0872387,14.4226265,50.0872284,14.4227611,50.0871783,14.4230193,50.0871755,14.4230514,50.0871726,14.4230838,50.0871603,14.4232017,50.087143,14.4233373,50.0871262,14.4234705,50.0871184,14.4236478,50.0871148,14.4238115,50.0871152,14.4239088,50.0871016,14.424067,50.087118,14.424067,50.0871166,14.4241393,50.0871204,14.4241394,50.08712,14.4241474,50.0871163,14.4241476,50.0871157,14.424188,50.0871196,14.4241885,50.0871193,14.4241976,50.0871152,14.4241976,50.0871124,14.42429,50.0871173,14.4243574,50.0871199,14.4243556,50.0871218,14.4243613,50.0871174,14.4243657,50.0871194,14.4244087,50.0871248,14.4244131,50.087123,14.4244201,50.0871197,14.4244179,50.0871196,14.4245176,50.0871214,14.4246701,50.0871192,14.4248472,50.0871174,14.4249729,50.0871003,14.4249743,50.0871038,14.4251334,50.0871098,14.4251331,50.0871079,14.4253848,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872078,14.425337,50.0872009,14.4252162,50.0871984,14.4251049,50.0872029,14.4249925,50.0872126,14.4245623,50.0872133,14.4244414,50.0872127,14.4244177,50.0872111,14.4242333,50.0872107,14.4242084,50.0871937,14.4238433,50.0871953,14.4238154,50.0872102,14.4235633,50.0872416,14.4235663,50.0872583,14.4233868,50.0872846,14.4230867,50.0874079,14.42305,50.087526,14.4233667,50.0875643,14.4234699,50.0875971,14.4234566,50.0875942,14.4234305,50.0875821,14.4233215,50.0875736,14.423251,50.087677,14.4231527,50.0876752,14.423132,50.0876734,14.4231126,50.0876751,14.4230871,50.0876543,14.4230691,50.0876415,14.4230863,50.0876334,14.4230718,50.0876464,14.4230543,50.0876401,14.4230277,50.0875885,14.4230568,50.0875841,14.4230691,50.0875735,14.4230598,50.0875772,14.4230494,50.0875582,14.4229567,50.0875508,14.4229507,50.0875566,14.4229332,50.0875651,14.42294,50.0876022,14.4229245,50.0876174,14.4229057,50.0876067,14.4228504,50.087589,14.4228472,50.0875892,14.4228524,50.0874238,14.4229439,50.0873958,14.4228355,50.0873854,14.4228063,50.0873529,14.4226782,50.0873497,14.4226783,50.0873492,14.4226676,50.0873547,14.4226651,50.0873432,14.422577,50.0873286,14.4223401,50.0873107,14.4221595],[50.0879719,14.4230581,50.0880045,14.4231977],[50.0880439,14.4244717,50.0880449,14.4244834,50.0880443,14.424545],[50.0877075,14.4219175,50.0876874,14.4219287],[50.0875711,14.4219913,50.0875781,14.4220224,50.0876329,14.4222643],[50.0876329,14.4222643,50.0876353,14.4222801,50.087647,14.4223587],[50.0873553,14.4193698,50.0873386,14.4193811,50.0873566,14.4194923,50.0873571,14.419511,50.0873821,14.4195969,50.0874312,14.4195771],[50.0901986,14.4205238,50.0901805,14.4205448,50.0901671,14.4205602,50.0901502,14.4205798,50.0901158,14.4206379,50.0900595,14.4207328,50.0900517,14.420746,50.0900384,14.4207561,50.0900311,14.4207642],[50.090643,14.4224194,50.0906275,14.4223725,50.0906081,14.4223185,50.0905909,14.4222745,50.0901932,14.4212781,50.0900584,14.4209597],[50.0898801,14.4205759,50.0897221,14.4201956,50.0894748,14.4194973],[50.0894486,14.4193621,50.0894205,14.4192383,50.0892775,14.4186467,50.0892525,14.418544,50.0892014,14.4183972],[50.0868893,14.4211102,50.0868565,14.4210464,50.0867725,14.4209508,50.0866784,14.4208573,50.0866145,14.4207942,50.0865447,14.420723,50.0865121,14.4206948],[50.0865121,14.4206948,50.086498,14.4206818],[50.0867681,14.4173801,50.0868484,14.4173217,50.0868887,14.4173123,50.0869367,14.4173157,50.0870196,14.4173372],[50.0855874,14.4184728,50.0856411,14.4185574,50.0857237,14.418673,50.0858752,14.4188492,50.0859244,14.418915,50.0859616,14.4189646],[50.0860185,14.4180574,50.0858914,14.4181227,50.0855905,14.4182582,50.0854955,14.4182849,50.085452,14.4182944,50.0852504,14.4182613,50.0851431,14.4182598,50.0849537,14.4182522,50.0849107,14.4182505,50.0848946,14.4182499],[50.0873777,14.4179284,50.0875449,14.4189644,50.0875663,14.4190951,50.0875813,14.4191864,50.0875913,14.4192077,50.0876134,14.419229],[50.0871076,14.4192195,50.0873325,14.4191467,50.0873603,14.4191419,50.0873818,14.4191419,50.0874119,14.4191512],[50.0876134,14.419229,50.0876402,14.4192386,50.0876662,14.4192459,50.0876944,14.4192424,50.0877533,14.4192216],[50.087843,14.4191543,50.0878707,14.4191325,50.0879267,14.4190821,50.0880444,14.418976,50.0883909,14.4187057],[50.0865301,14.4198213,50.0866393,14.4196737,50.0867479,14.4195288,50.08684,14.4193988,50.0867843,14.4193844,50.0866947,14.4193678,50.086527,14.4193415,50.0864267,14.4193832],[50.0869809,14.4213061,50.0867513,14.4216597,50.0866105,14.4218912,50.0864121,14.4222307,50.0862088,14.4226102,50.0861917,14.422622,50.0859978,14.4227498],[50.0870136,14.4169552,50.0870191,14.417215],[50.0870191,14.417215,50.0870213,14.4172677,50.0870196,14.4173372],[50.0889432,14.4242466,50.0889839,14.4243669,50.0890145,14.4244766,50.0890576,14.4247338,50.0891353,14.4250284,50.0891582,14.4251199,50.089224,14.425142],[50.0880045,14.4231977,50.0880384,14.4242891],[50.0880832,14.4229894,50.0881342,14.4230086,50.0881895,14.4230479],[50.0879847,14.4229947,50.0880074,14.4229935,50.0880832,14.4229894],[50.0897221,14.4201956,50.0897832,14.4201507,50.0901641,14.4199034,50.0908422,14.4194791,50.0908982,14.4194303],[50.0856129,14.4232651,50.0856262,14.4234188,50.0856954,14.4235425,50.0857835,14.4237005],[50.0851672,14.4215144,50.0852062,14.4215692,50.0855279,14.4220216],[50.0878188,14.4204583,50.0877968,14.4203792,50.0877594,14.4202293,50.0877508,14.420206,50.0877461,14.4201788,50.0877235,14.420002,50.0877095,14.4199626,50.087698,14.4199436],[50.0877533,14.4192216,50.0877769,14.4192099,50.087843,14.4191543],[50.0876874,14.4219287,50.087647,14.4219504,50.0875711,14.4219913,50.0875237,14.4220169,50.0873639,14.4221012],[50.0859616,14.4189646,50.086101,14.4189588,50.0861101,14.4189584],[50.0861101,14.4189584,50.0861077,14.4186032,50.0861008,14.4184851,50.0860737,14.4183113,50.0860277,14.418103,50.0860185,14.4180574],[50.0878188,14.4204583,50.0878106,14.4204921,50.0878086,14.4205356,50.0878106,14.4205832,50.0878202,14.4206361,50.0878343,14.4206787,50.0880344,14.421058,50.0881584,14.421293,50.0881731,14.4213139,50.0882106,14.4213695,50.0882592,14.4214252,50.0884289,14.4215578],[50.088818,14.4218779,50.088923,14.4219772,50.0892253,14.4222631,50.089256,14.4222921],[50.086886,14.417953,50.0868896,14.4179851,50.0871076,14.4192195],[50.0894748,14.4194973,50.0894486,14.4193621],[50.0865301,14.4198213,50.0865584,14.4199057,50.086561,14.4199113,50.086662,14.4201264,50.0868398,14.4205601,50.0870374,14.4210716],[50.0855279,14.4220216,50.0855567,14.4220077,50.085596,14.4219948,50.0856353,14.4219947,50.0856528,14.4220013,50.0856699,14.4220116,50.0856842,14.4220252,50.0856985,14.422042,50.0857399,14.4221034,50.085752,14.4221218,50.0859097,14.4224467,50.0859659,14.4226402,50.0859978,14.4227498],[50.0851133,14.4215534,50.0851672,14.4215144,50.085194,14.4214671],[50.0852501,14.4213711,50.0852654,14.4213458,50.085586,14.4207824,50.0856636,14.420655,50.0856845,14.4206343,50.0856923,14.4206277,50.0857009,14.4206231,50.0857071,14.4206199,50.0857138,14.4206188,50.0857243,14.4206198,50.085983,14.4206698,50.0859957,14.4206725,50.0860192,14.4206775],[50.0843394,14.420402,50.0843675,14.4205378,50.0847472,14.4210564,50.0851133,14.4215534],[50.0893956,14.4227803,50.0893523,14.4227787],[50.0893523,14.4227787,50.089341,14.4228443,50.0893347,14.4229098,50.0893831,14.4237295,50.0893829,14.4237519,50.0893788,14.4237736,50.0893691,14.4237907,50.0893581,14.4238017,50.0892713,14.4238689,50.0892568,14.423889,50.0892458,14.4239144,50.0892407,14.4239383,50.0892408,14.4239635],[50.0848817,14.4221634,50.0851875,14.4226145,50.0855093,14.4230964],[50.0876273,14.4234212,50.0876213,14.4233813,50.0876204,14.4233549,50.0876264,14.4233369,50.0879847,14.4229947],[50.087717,14.4245651,50.0877232,14.4252641,50.0877721,14.4257345],[50.0876204,14.4233549,50.0875821,14.4233215],[50.0901305,14.4207842,50.0904871,14.4206029,50.0905263,14.4205982,50.0905797,14.4205918,50.0905866,14.4205909],[50.0901164,14.4207919,50.0901235,14.420788,50.0901305,14.4207842],[50.0882044,14.4176773,50.0882317,14.4175482,50.0884299,14.4167633,50.0884511,14.4166658,50.0884568,14.4166398],[50.0870636,14.4192695,50.0871076,14.4192195],[50.0875449,14.4189644,50.0874766,14.4190644,50.0874119,14.4191512],[50.0882044,14.4176773,50.0881291,14.4176564,50.0880775,14.4176536,50.0880353,14.4176591,50.0874602,14.4178927,50.0873777,14.4179284],[50.087085,14.4212168,50.0869809,14.4213061],[50.0872523,14.4217613,50.0872752,14.422133,50.0872773,14.4221687],[50.0868667,14.4177964,50.0868839,14.4179136,50.086886,14.417953],[50.0872577,14.4172707,50.0873214,14.4176426,50.0873382,14.4177311,50.0873604,14.4178434,50.0873777,14.4179284],[50.087237,14.4168669,50.0872301,14.4170462,50.0872385,14.4171487,50.0872577,14.4172707],[50.0858022,14.4190459,50.0858779,14.4190213,50.0859616,14.4189646],[50.0861027,14.4167428,50.0860556,14.4167609,50.0860367,14.4168389,50.0860152,14.4169522,50.086007,14.4170589,50.0860041,14.4171828,50.0860129,14.4173742,50.0860509,14.417598,50.0861302,14.4178913,50.0861465,14.4179517],[50.0877474,14.4245079,50.0877125,14.4245167,50.0876651,14.4245271],[50.0842925,14.4202143,50.0844808,14.4203902,50.0846094,14.4205194,50.0846996,14.4206276,50.0847732,14.4207314,50.0848743,14.4208713,50.0849168,14.4209349,50.084961,14.4209996,50.0850305,14.421112,50.0851781,14.4213164],[50.0851781,14.4213164,50.0852365,14.4213954],[50.0864372,14.4197829,50.0862533,14.4198635],[50.089256,14.4222921,50.089437,14.4223817,50.0895115,14.4224129,50.0895841,14.422445],[50.087698,14.4199436,50.0876797,14.4199207,50.0876414,14.4198894],[50.0879045,14.4237487,50.0878481,14.4237764,50.0878311,14.4236662,50.0878466,14.423657,50.0878408,14.4236194,50.0878265,14.4236243,50.0878094,14.4235191,50.0879687,14.4234205,50.0879745,14.4234142,50.0879747,14.423404,50.0879281,14.4232545,50.0879746,14.4232242,50.0879841,14.4232198,50.0879923,14.4232127,50.087991,14.4232073,50.0880045,14.4231977,50.0880181,14.4231881,50.0881754,14.4235783,50.0881594,14.4235914,50.0880744,14.4236558,50.0881262,14.4238654,50.0882222,14.4238036,50.0882143,14.4237732,50.0882612,14.423741,50.0883122,14.4240073,50.0882025,14.4240649,50.0882029,14.424068,50.0880702,14.4241119,50.0880759,14.4242813,50.0880384,14.4242891,50.0880009,14.4242968,50.0879939,14.4241673,50.0879878,14.4241051,50.0879773,14.4240411,50.0879755,14.4240412,50.0879685,14.423997,50.0879652,14.4239951,50.0879395,14.4238896,50.0879338,14.4238868,50.0879284,14.4238895,50.0879045,14.4237487],[50.0872313,14.4230627,50.0871755,14.4230514],[50.0864,14.4230174,50.0864431,14.4233094,50.0864564,14.4233472,50.086478,14.4233773,50.0865014,14.4233859,50.0866376,14.4234033],[50.0875821,14.4233215,50.0875262,14.423272,50.0874175,14.4229847,50.0872609,14.4228557],[50.0858799,14.4190444,50.0858966,14.4192681],[50.0858779,14.4190213,50.0858799,14.4190444],[50.0863754,14.4214251,50.0865677,14.4215883,50.0865772,14.4215917,50.0865863,14.4215885,50.0865963,14.4215816,50.0866457,14.4215646,50.086654,14.4215688],[50.0868829,14.4235375,50.0868105,14.4235042,50.0866376,14.4234033],[50.0864247,14.4228007,50.0864897,14.422707,50.0865421,14.4226797],[50.089306,14.4184665,50.0897031,14.4183904,50.0899558,14.4184192,50.0901389,14.4184369,50.0902495,14.4184341,50.0905037,14.4182843,50.0905085,14.4182832,50.0905128,14.4182842,50.0905202,14.4182935,50.0906001,14.418456,50.0906046,14.418487],[50.0864341,14.4235362,50.0863102,14.4236997],[50.0872126,14.4245623,50.0871573,14.4245605],[50.0876348,14.4245311,50.0874085,14.4245648],[50.0856848,14.4204076,50.0856695,14.4205402],[50.0856675,14.4202038,50.0856848,14.4204076],[50.087415,14.4248705,50.0873309,14.4248642,50.0873349,14.4245864,50.0873353,14.4245639,50.0873359,14.4245432,50.0873364,14.4245342,50.0874074,14.4245297,50.0874085,14.4245648,50.0874095,14.4245981,50.087415,14.4248705],[50.0856477,14.4254656,50.0857563,14.4253036,50.0859458,14.425021,50.0860962,14.4247966,50.0861383,14.4247339,50.0862388,14.424584],[50.0899706,14.4207329,50.0899197,14.420709,50.0898773,14.4207175,50.0898507,14.4207483,50.089826,14.4208565,50.0898243,14.420906,50.0898341,14.4209567,50.0898608,14.4209997,50.0898966,14.4210365],[50.0860091,14.4210045,50.0859313,14.4213326],[50.085921,14.4213764,50.0858238,14.421546],[50.0887308,14.4237087,50.0888279,14.4236241],[50.0886964,14.4237374,50.0887126,14.4237239,50.0887308,14.4237087],[50.0884289,14.4215578,50.0885511,14.4216413,50.0887006,14.4217688,50.088818,14.4218779],[50.0900584,14.4209597,50.0900572,14.4209251,50.090051,14.4208835,50.090008,14.4207898,50.0899706,14.4207329],[50.0883909,14.4187057,50.0886076,14.4185258,50.0886675,14.4184904,50.0888647,14.4184437,50.0891177,14.4183965,50.0892014,14.4183972],[50.0887292,14.4198307,50.0878675,14.4203886],[50.0899243,14.4209806,50.0899737,14.4209703,50.0899936,14.4209661,50.0900079,14.420956,50.090019,14.4209298,50.090023,14.4208899,50.0900126,14.4208612,50.0899821,14.4208153,50.0899674,14.4207965,50.0899476,14.4207692,50.0899354,14.4207599,50.0899223,14.4207556,50.0898969,14.4207613,50.0898803,14.4207795,50.0898738,14.4207979,50.0898678,14.4208147,50.0898592,14.4208581,50.0898545,14.4209052,50.0898605,14.4209332,50.0898722,14.4209586,50.0898819,14.4209712,50.089894,14.4209775,50.0899088,14.4209834,50.0899243,14.4209806],[50.0900311,14.4207642,50.090008,14.4207898,50.0899821,14.4208153],[50.0874085,14.4245648,50.0873353,14.4245639],[50.0873353,14.4245639,50.0872126,14.4245623],[50.083982,14.420641,50.0839897,14.4206517,50.0839955,14.4206749,50.0840128,14.4206993,50.0848338,14.4219255,50.0848509,14.4219537],[50.0905934,14.418494,50.0902518,14.4187256,50.0899788,14.4188831,50.0894974,14.4191902,50.0894822,14.419201],[50.0857835,14.4237005,50.0858228,14.4237691,50.0860769,14.4242268,50.0861092,14.4242486,50.0863646,14.4244205],[50.0854253,14.422222,50.0853241,14.4223902],[50.0853241,14.4223902,50.0852386,14.4225292,50.0851875,14.4226145],[50.0857399,14.4221034,50.0857562,14.4220767],[50.0864267,14.4193832,50.0863559,14.4193971],[50.085899,14.4193014,50.0859154,14.4195029,50.0858561,14.4196221,50.0858796,14.4198267,50.0858875,14.4198983],[50.0847387,14.4220846,50.0847219,14.422114,50.0848225,14.4222572,50.0854477,14.4231842],[50.0893664,14.4192727,50.0893558,14.4192797,50.0893039,14.4193148,50.0887364,14.4196809,50.0887211,14.4196907],[50.0894822,14.419201,50.089306,14.4184665,50.0892996,14.418445],[50.0890972,14.4183141,50.0890649,14.4183379,50.0887136,14.4184043,50.0886499,14.4184228,50.0885845,14.4184681,50.0880876,14.4188795,50.0880368,14.4189092,50.0879931,14.4188408],[50.0884507,14.4187447,50.0884642,14.4187346,50.0886753,14.4185467,50.0887662,14.4185287,50.0891362,14.4184639],[50.0883047,14.4176184,50.0883303,14.4176459,50.0889223,14.41762,50.0889267,14.4176169],[50.0885193,14.4167458,50.0885143,14.4167663,50.088504,14.4168051,50.0883028,14.4175876,50.0883021,14.4175962,50.0883025,14.4176049,50.0883038,14.4176131,50.0883047,14.4176184,50.0883016,14.4176286],[50.0890596,14.417517,50.0891266,14.4178454,50.0891456,14.41784,50.0892617,14.4183296,50.0892767,14.4183397,50.0897212,14.4182851,50.0899386,14.4183034,50.0899444,14.4183036],[50.0878164,14.4210805,50.0878031,14.4210875,50.0877926,14.4210931,50.0877638,14.421108],[50.0880894,14.4178015,50.0880443,14.4177266,50.088038,14.4177198,50.0880315,14.4177183,50.0874705,14.4179597],[50.0860185,14.4180574,50.0861465,14.4179517],[50.0861465,14.4179517,50.0866474,14.4174884,50.0867681,14.4173801],[50.0880443,14.424545,50.087717,14.4245651],[50.0883798,14.4245239,50.0881307,14.4245397],[50.0864267,14.4193832,50.0865095,14.4197397,50.0865301,14.4198213],[50.0866565,14.4250818,50.0865653,14.4251894],[50.0864594,14.4189925,50.0865097,14.4189966],[50.0864323,14.4189902,50.0864594,14.4189925,50.0864664,14.4187105],[50.0887583,14.4209127,50.0886942,14.4209775],[50.0888809,14.4207888,50.0887583,14.4209127],[50.0889353,14.4207401,50.0888931,14.4207764,50.0888809,14.4207888],[50.0877595,14.4192736,50.0877533,14.4192216,50.0877462,14.4191641],[50.0878977,14.4191926,50.087854,14.4192337,50.0877612,14.4192872,50.087663,14.4193019,50.0874814,14.4192478,50.0873997,14.4192185,50.0873655,14.4192091,50.0873042,14.419219,50.0872475,14.4192284,50.0871969,14.4192483,50.0871006,14.4192985,50.087078,14.4193172],[50.0876113,14.4190811,50.0875663,14.4190951,50.087527,14.4191093],[50.0874904,14.4190877,50.0874766,14.4190644,50.0874606,14.4190387],[50.0874964,14.4191445,50.0874898,14.419184,50.0874824,14.4192379],[50.085925,14.4195018,50.0859154,14.4195029],[50.0860302,14.4194883,50.085925,14.4195018],[50.0861556,14.4194522,50.0860302,14.4194883],[50.0863559,14.4193971,50.0861556,14.4194522],[50.087449,14.4178223,50.0881559,14.4175432],[50.0881113,14.4178184,50.0881617,14.4178508,50.0882109,14.4178837],[50.0862388,14.424584,50.0863646,14.4244205],[50.0892898,14.4241112,50.0893602,14.4243339],[50.0893602,14.4243339,50.0893911,14.4244351,50.0894012,14.4244683],[50.0860192,14.4206775,50.0863911,14.4207063,50.086498,14.4206818,50.0865189,14.4206748],[50.0857348,14.4216996,50.085714,14.4217328,50.0856339,14.4218653],[50.0858238,14.421546,50.0857348,14.4216996],[50.0856339,14.4218653,50.0856353,14.4219947],[50.0859313,14.4213326,50.085921,14.4213764],[50.0882953,14.4175832,50.0882317,14.4175482,50.0881861,14.4175203],[50.0882601,14.4177742,50.0882793,14.4177044,50.0883016,14.4176286],[50.0879875,14.4188605,50.0879931,14.4188408,50.088228,14.4178935,50.0882548,14.4177934,50.0882601,14.4177742],[50.0887795,14.4186462,50.0887677,14.418546,50.0887662,14.4185287],[50.0889252,14.4198242,50.0891028,14.4202844,50.0888094,14.4205622,50.0888514,14.4206696,50.0888931,14.4207764,50.0890888,14.4212944,50.0890649,14.4213331,50.0887979,14.4217414],[50.0893882,14.4195539,50.0898294,14.420651,50.089824,14.4206916,50.0898033,14.4207368,50.0897114,14.4207843,50.0894644,14.4209149,50.0894452,14.4209146,50.0892134,14.4203205,50.0890287,14.4198472,50.0890096,14.4197723],[50.090705,14.4186947,50.0906822,14.4187107,50.0895594,14.4194254],[50.0886661,14.4197289,50.088692,14.4197104,50.0887211,14.4196907],[50.0886661,14.4197289,50.0886542,14.4197372,50.08795,14.4202289,50.0878764,14.420251,50.0878454,14.4202518,50.0878305,14.4202349],[50.087698,14.4199436,50.0877084,14.4198985,50.0877157,14.4198671,50.0877307,14.4198025,50.0877176,14.4196332,50.087785,14.4194786],[50.0848432,14.4222251,50.0848817,14.4221634,50.0849138,14.4221146],[50.0863774,14.4192268,50.0863798,14.4192675,50.0864267,14.4193832],[50.0879456,14.4227161,50.0879454,14.4227409,50.0879493,14.4227632,50.087993,14.4228878,50.0879987,14.4229205,50.087999,14.4229497,50.0879944,14.4229728,50.0879847,14.4229947],[50.08834,14.4233113,50.088247,14.4231119,50.0881895,14.4230479],[50.0895172,14.4224834,50.0895289,14.4224978,50.0895351,14.4225153,50.089538,14.4225329,50.0895395,14.4225548,50.0895372,14.4225671,50.0895108,14.4226681,50.089504,14.422686,50.0894879,14.4227094,50.0894692,14.4227279,50.0894342,14.4227361,50.0894139,14.4227296,50.0893991,14.4227136,50.0893929,14.4226997,50.089388,14.4226837,50.0893851,14.4226276,50.0893766,14.4225429,50.0893727,14.4225149,50.0893679,14.4224832,50.0893714,14.4224547,50.0893766,14.4224303,50.0893818,14.4224223,50.089391,14.4224153,50.0894004,14.4224108,50.0894117,14.4224113,50.0894435,14.4224417,50.0894802,14.4224656,50.0895172,14.4224834],[50.0887834,14.4220177,50.0887962,14.4220349,50.0888451,14.4219935,50.0888888,14.4220074,50.0889065,14.4220267,50.0889519,14.4220677,50.0889879,14.4220914,50.0892043,14.4223431,50.0893047,14.422464,50.0893229,14.4225565],[50.08834,14.4233113,50.0883583,14.4233408,50.088378,14.4233413,50.088471,14.423416,50.0886346,14.4236318,50.0888751,14.4242991,50.0887235,14.424405,50.0886016,14.4244566,50.0884345,14.424492,50.0883656,14.4244565,50.0881704,14.4244783,50.0880449,14.4244834,50.0878928,14.4244941,50.0877687,14.4245001,50.0877474,14.4245079],[50.0893229,14.4225565,50.0892792,14.4226455,50.0893295,14.4234562,50.0893536,14.4237129,50.0893398,14.4237408,50.0892451,14.4238007,50.0891573,14.4238949,50.0891024,14.4239557,50.0888927,14.4241199,50.0888555,14.4241049,50.0887126,14.4237239,50.0886543,14.4235497,50.0884896,14.4233585,50.0884,14.4233231,50.08834,14.4233113],[50.0882846,14.4257592,50.0882805,14.4255745,50.0881868,14.4251718,50.0881585,14.4245607,50.0884485,14.4245555],[50.0879847,14.4229947,50.0879555,14.4229938,50.0879308,14.4229939,50.0878625,14.4230975,50.0878049,14.4231496,50.0877446,14.4231529,50.0876752,14.423132],[50.0877728,14.4246242,50.0880836,14.4245946,50.0880916,14.4245977,50.0880957,14.4246139,50.0881236,14.4251601,50.0881756,14.425437,50.0881869,14.4254688],[50.0877687,14.4245001,50.0876955,14.4242101,50.0876976,14.4237601,50.0876328,14.4233617,50.0878602,14.4231362,50.0879698,14.4230363],[50.0878231,14.4256613,50.0877839,14.425265,50.0877623,14.4246365,50.0877728,14.4246242],[50.0875942,14.4234305,50.0876095,14.4234367,50.0876397,14.4237234,50.0876412,14.4242079,50.0876572,14.4245282,50.0876619,14.4247216,50.0876715,14.4252507,50.0876826,14.4254485,50.0877186,14.4257043],[50.0894125,14.4238042,50.0893693,14.4229124,50.08938,14.4228717,50.0894026,14.4228471,50.089436,14.4228268,50.0894619,14.4228282,50.0894734,14.4228352,50.0894836,14.4228578,50.0894971,14.4228939,50.0896605,14.4232366,50.0899174,14.4238837,50.0899297,14.4239429,50.0899817,14.424194,50.0899949,14.4242577,50.0900965,14.4246203,50.0902082,14.4249456,50.0904755,14.4257239,50.0904758,14.4257556,50.0904845,14.425777],[50.0892453,14.4241381,50.0892771,14.4241852,50.0895778,14.4251227,50.0896348,14.4256183,50.0896466,14.4258981],[50.0875559,14.4186062,50.0876382,14.4190735,50.0876113,14.4190811],[50.0895269,14.4194627,50.0894748,14.4194973,50.0894012,14.419546],[50.0893709,14.4195586,50.0890096,14.4197723,50.0889877,14.4197863],[50.0895553,14.419411,50.0895301,14.4193134,50.0895085,14.4192367],[50.0894658,14.4192107,50.0894205,14.4192383,50.0893664,14.4192727],[50.0889314,14.4198205,50.0889252,14.4198242,50.0878957,14.4205025],[50.0889877,14.4197863,50.0889601,14.4198029,50.0889314,14.4198205],[50.0860568,14.421192,50.0860622,14.4211573],[50.0860202,14.4214475,50.0860568,14.421192],[50.0859927,14.4215494,50.0860202,14.4214475],[50.0859624,14.4217019,50.0859927,14.4215494],[50.0858956,14.4218555,50.0859624,14.4217019],[50.0857562,14.4220767,50.0858956,14.4218555],[50.0861917,14.422622,50.0862086,14.4226808,50.086345,14.4228419,50.0864247,14.4228007,50.0867077,14.4229338,50.0867604,14.4229572,50.0869567,14.4230014],[50.090705,14.4186947,50.0908409,14.4193802,50.0908361,14.4194022,50.0908283,14.4194105,50.0908224,14.4194169,50.089784,14.4200665,50.0897579,14.4200783],[50.0863423,14.4238999,50.0863888,14.4240383],[50.0901093,14.424059,50.0900313,14.42385,50.0897601,14.4231518,50.0895975,14.4227332,50.089578,14.422683,50.0896085,14.4226067,50.0896176,14.4225838,50.0896546,14.4225973,50.0902578,14.422818,50.0902852,14.422828,50.090328,14.4228581,50.0905116,14.4233118,50.0905223,14.4233378,50.0906479,14.4236422,50.0907257,14.423803,50.090721,14.4238378,50.0907016,14.4238633,50.0905296,14.4239222,50.090276,14.4240036,50.0901093,14.424059],[50.0878472,14.420311,50.0878675,14.4203886,50.0878757,14.4204216],[50.0873639,14.4221012,50.0872752,14.422133],[50.0865653,14.4251894,50.0862088,14.4256471,50.0860903,14.4257993,50.0859543,14.4259739],[50.0871755,14.4230514,50.0869567,14.4230014],[50.0865421,14.4226797,50.0868574,14.4224878,50.0869457,14.4224644,50.0870078,14.4224226],[50.0892676,14.4241247,50.0892898,14.4241112,50.089314,14.4240966],[50.0894357,14.4228073,50.0894348,14.422779,50.0894342,14.4227361],[50.0892693,14.4207736,50.0893088,14.4207363],[50.0870374,14.4210716,50.087085,14.4212168],[50.0892014,14.4183972,50.0891803,14.4183369,50.0890115,14.417661],[50.0874532,14.4190245,50.0874417,14.4190294,50.0873698,14.4190639,50.0872147,14.4191265,50.0871914,14.4191323,50.0871662,14.4191235,50.0871512,14.4191061,50.0871353,14.4190755,50.0869504,14.4179707,50.0869346,14.4179316,50.0869312,14.4179068,50.0869327,14.4178877,50.0869616,14.4178693,50.0870083,14.4178397],[50.0872596,14.4176144,50.0872357,14.4174849,50.0872269,14.4174329],[50.0872357,14.4174849,50.0868788,14.4176223],[50.0871876,14.4172145,50.087149,14.4172425,50.0870213,14.4172677,50.0869056,14.4172585,50.0868861,14.4172512,50.0868696,14.4172287,50.0868425,14.4171829,50.0868222,14.4171517,50.0867859,14.4171304,50.0867118,14.417092,50.0866938,14.4171114],[50.0872906,14.4171376,50.0872385,14.4171487,50.087213,14.4171541],[50.0873065,14.4177732,50.0873382,14.4177311,50.0873777,14.4176777],[50.0874606,14.4190387,50.0874532,14.4190245,50.0874692,14.4190095,50.0874808,14.4189877,50.0874864,14.4189561,50.0874859,14.4189246,50.0874825,14.4189017,50.0872947,14.4177889,50.0872838,14.4177524,50.0872798,14.4177289],[50.0869249,14.417936,50.086886,14.417953,50.0868533,14.417968],[50.0867372,14.4176917,50.0868437,14.4179719,50.0870491,14.4191969,50.0870446,14.419211,50.0870087,14.4192685],[50.0870487,14.419221,50.0870636,14.4192695,50.0870769,14.4193142],[50.0874678,14.4179425,50.0874602,14.4178927,50.0874514,14.4178376],[50.0881318,14.421425,50.0883207,14.4215464,50.0884415,14.4216275],[50.0873214,14.4176426,50.087282,14.417656,50.0872681,14.4176607,50.0869392,14.4177737,50.0868667,14.4177964],[50.0870196,14.4173372,50.0872042,14.4173011,50.0872577,14.4172707],[50.0874119,14.4191512,50.0874898,14.419184,50.0876134,14.419229],[50.0888451,14.4219935,50.0888601,14.4220437],[50.0888601,14.4220437,50.088925,14.4223334],[50.088925,14.4223334,50.0889785,14.4227335,50.0889309,14.4227597,50.0889382,14.4227988],[50.0889309,14.4227597,50.0889263,14.4227245],[50.0899554,14.4238924,50.0896901,14.4232095,50.0895223,14.4227963,50.0895157,14.4227733],[50.0896605,14.4232366,50.0896718,14.4232241],[50.0897601,14.4231518,50.0897066,14.423194],[50.0896718,14.4232241,50.0896901,14.4232095,50.0897066,14.423194],[50.0894898,14.4228221,50.0895223,14.4227963,50.0895537,14.4227694],[50.0895537,14.4227694,50.0895975,14.4227332],[50.0895372,14.4225671,50.0895588,14.4225796,50.089591,14.4225975],[50.0896601,14.4225669,50.0896749,14.4224851,50.089685,14.42242],[50.0894435,14.4224417,50.089437,14.4223817,50.0894322,14.4223222],[50.0894299,14.4222939,50.0889485,14.421895,50.08893,14.4218698,50.0889222,14.4218501,50.0889347,14.4218128,50.0890112,14.4217018,50.0892666,14.4213422,50.0893668,14.4212023,50.0894138,14.4211594,50.0894675,14.4211276,50.0897509,14.4209781,50.0897784,14.4209751,50.0897946,14.4209955,50.0898036,14.4210069,50.0898259,14.4210528,50.0898269,14.4210913,50.0898088,14.4211646,50.089626,14.4219209,50.0895556,14.4222115,50.0895358,14.4222931,50.0895159,14.422319,50.0895002,14.4223294,50.0894841,14.4223286,50.0894641,14.4223198,50.0894299,14.4222939],[50.0896492,14.422263,50.0896202,14.4222459,50.0895644,14.4222162],[50.089685,14.42242,50.08969,14.4223878,50.0896688,14.4223767,50.0896588,14.4223494,50.0896555,14.4223212,50.0896588,14.4222687,50.0896492,14.422263],[50.0896588,14.4222687,50.0899356,14.421129,50.0899475,14.4210972,50.0899693,14.4210832,50.0900178,14.4210791,50.090023,14.4210787,50.0900434,14.4210987,50.0903254,14.4217966,50.0905628,14.4223701,50.0905652,14.4224167,50.0905577,14.4224394,50.0905495,14.4224641,50.0905349,14.4224771,50.0904935,14.4224907,50.0902319,14.4225728,50.090217,14.4225733,50.089946,14.4224766,50.08969,14.4223878],[50.0893296,14.4225548,50.0893535,14.4225487,50.0893766,14.4225429],[50.0888039,14.4217467,50.088863,14.4217983,50.0889115,14.4218408],[50.0889106,14.4220146,50.088923,14.4219772,50.0889427,14.4219136],[50.0898738,14.4207979,50.0898507,14.4207483,50.0898349,14.4207163],[50.0898061,14.4209827,50.0898341,14.4209567,50.0898605,14.4209332],[50.0900099,14.4210605,50.0899938,14.4210225,50.0899737,14.4209703],[50.0900725,14.4208025,50.0900384,14.4207561,50.0900179,14.4207283,50.0898045,14.4202291,50.0898041,14.420207],[50.0900725,14.4208025,50.0900845,14.4207996,50.0901164,14.4207919],[50.0897477,14.4209627,50.0897339,14.4208967,50.0897164,14.4208095],[50.0863831,14.4221883,50.0864121,14.4222307],[50.0862222,14.4218364,50.0862643,14.4219442,50.0863185,14.4220776,50.0863831,14.4221883],[50.0857901,14.4221619,50.0858577,14.4223875],[50.0884485,14.4245555,50.0884622,14.4245271,50.088637,14.4244845,50.0888716,14.4243776,50.0889839,14.4243669,50.0892453,14.4241381,50.0892676,14.4241247],[50.0867645,14.41956,50.0867699,14.4195714,50.0867394,14.4196051,50.0865831,14.4198447,50.0865859,14.4198572,50.0865794,14.419876],[50.0893186,14.4193652,50.089338,14.4194345,50.0893655,14.419538],[50.0870216,14.4193088,50.0870636,14.4192695],[50.085194,14.4214671,50.0852365,14.4213954,50.0852501,14.4213711],[50.0878408,14.4189139,50.087896,14.4189511,50.087935,14.4189771],[50.0879484,14.4189993,50.0879267,14.4190821,50.0879017,14.4191771],[50.0878924,14.419211,50.0878901,14.4192286,50.0879048,14.4193616,50.087897,14.4193644,50.0878982,14.4193731,50.0879061,14.4193713,50.0879124,14.419417,50.0879045,14.4194189,50.087906,14.4194279,50.0879136,14.4194261,50.0879318,14.419559,50.0879345,14.419559,50.0879385,14.4196015,50.087909,14.4196097,50.0879094,14.419617,50.0879035,14.4196179,50.0879034,14.4196202,50.0878392,14.4196313,50.0878359,14.4196309,50.0878354,14.4196225,50.0877568,14.4196469,50.0877761,14.419814,50.0877737,14.4198149,50.0877307,14.4198025,50.0876906,14.4197917,50.087676,14.4195627,50.0877007,14.4195514,50.0876685,14.4193966,50.0876485,14.4193627,50.0875817,14.4192982,50.0875832,14.4192898,50.0876622,14.419318,50.0877623,14.4192958,50.087857,14.4192429,50.0878924,14.419211],[50.0877462,14.4191641,50.0877317,14.4190479],[50.0860825,14.418905,50.0860817,14.4187938,50.0860846,14.4187916,50.0860829,14.4186986,50.086081,14.4186966,50.0860792,14.41858,50.086075,14.418518,50.0860728,14.4185176,50.0860674,14.4184744,50.0860461,14.4183164,50.0860242,14.4182263,50.0860259,14.4182251,50.0859995,14.4181192,50.0860277,14.418103,50.0860592,14.418085,50.0860964,14.4182856,50.0861165,14.4184039,50.0861295,14.4184996,50.0861352,14.4185964,50.0861266,14.418876,50.0861389,14.4189099,50.0861526,14.4189301,50.0861805,14.4189387,50.0862679,14.4189554,50.0864335,14.4189754,50.0864323,14.4189902,50.0864204,14.4191445,50.0864163,14.4192282,50.0863774,14.4192268,50.0863385,14.4192254,50.086332,14.4191486,50.0863378,14.4190703,50.0862553,14.4190396,50.0861704,14.419016,50.0861169,14.4190035,50.0860523,14.4189949,50.0859609,14.4190236,50.0858919,14.4190417,50.0858692,14.419048,50.0857933,14.419071,50.0856916,14.4191062,50.0856376,14.4191349,50.0855614,14.419158,50.085561,14.4191547,50.0855548,14.4191534,50.0855273,14.4191474,50.085527,14.4191502,50.0854536,14.4191418,50.0854499,14.4191371,50.085416,14.4191275,50.0854122,14.4191319,50.0853028,14.4190937,50.0853033,14.4190901,50.0852897,14.4190859,50.0852898,14.4190881,50.0851255,14.4190522,50.0850723,14.4190436,50.0850612,14.41904,50.0850617,14.4190368,50.0850258,14.4190209,50.0850255,14.4190244,50.0849259,14.4189839,50.0848375,14.4189581,50.0848399,14.4189225,50.0848486,14.4188658,50.0848638,14.4188718,50.0848637,14.4188956,50.0848781,14.4188987,50.0849262,14.4189097,50.084947,14.418914,50.0849518,14.4189228,50.0849635,14.4189336,50.0849905,14.4189421,50.0850311,14.418932,50.0850938,14.4189525,50.0854545,14.4190524,50.0855532,14.4190645,50.0856325,14.4190679,50.0856878,14.4190596,50.0858029,14.419019,50.0858266,14.4189431,50.0858561,14.4188488,50.0858115,14.4188055,50.0857234,14.4187041,50.0856001,14.4185497,50.0855588,14.418498,50.0855874,14.4184728,50.0856192,14.4184422,50.0856618,14.4185404,50.0857305,14.4186487,50.0858682,14.418814,50.0858955,14.4188459,50.085928,14.418879,50.0859604,14.4189046,50.0859777,14.4189064,50.0859786,14.4189102,50.0860151,14.4189107,50.0860171,14.4189048,50.0860825,14.418905],[50.0848157,14.4198726,50.0848737,14.4198765,50.0848762,14.4198822,50.0849801,14.4198946,50.0850947,14.4198968,50.0852212,14.4198961,50.0853017,14.4198996,50.0854342,14.4198863,50.085561,14.4198786,50.0857318,14.4198653,50.0857416,14.4198632,50.0857517,14.4198595,50.0858639,14.4198179,50.0858796,14.4198267,50.0859095,14.4198426,50.0859121,14.4198422,50.0859562,14.419948,50.0859642,14.4199648,50.0859707,14.4199798,50.0859967,14.420011,50.0860074,14.4200129,50.0860149,14.4200604,50.0859949,14.4200696,50.0859761,14.4200783,50.0859585,14.4200143,50.0858006,14.419979,50.0857995,14.4200377,50.085698,14.4200177,50.0856981,14.4200157,50.0856924,14.4200144,50.0856924,14.4200166,50.0856789,14.4200149,50.0856688,14.420012,50.0856693,14.42001,50.085663,14.4200083,50.0856626,14.4200113,50.0856102,14.4200007,50.0855321,14.4199873,50.0854586,14.4199741,50.0853189,14.4199694,50.0853179,14.4199664,50.0853097,14.419968,50.0853092,14.4199717,50.0852781,14.4199811,50.0852781,14.4199768,50.0852688,14.4199756,50.0852685,14.4199792,50.0852308,14.4199877,50.0849614,14.4199817,50.0849578,14.4201343,50.0849022,14.4200847,50.0848143,14.4200467,50.0848153,14.4199237,50.0848157,14.4198726],[50.0860063,14.4201965,50.0859994,14.4201688,50.0860173,14.4201603,50.0860388,14.4201506,50.0861223,14.4201141,50.0861323,14.4201663,50.0861295,14.4201676,50.0861258,14.4201863,50.086123,14.4201948,50.0861331,14.4202496,50.0861391,14.4202542,50.0861417,14.4202597,50.0861486,14.4202643,50.0861528,14.4202621,50.086154,14.4202675,50.0861553,14.4202668,50.0861648,14.4203172,50.0861704,14.4203235,50.0861778,14.4203263,50.0861917,14.4203978,50.0860308,14.4204237,50.0860186,14.4204259,50.0860064,14.4204281,50.0860119,14.4203037,50.0860106,14.4202421,50.0860063,14.4201965],[50.0864998,14.4206567,50.0865189,14.4206748,50.0865268,14.420685,50.0865121,14.4206948,50.0864918,14.4207098,50.0864871,14.4207123,50.0864701,14.4207676,50.0864558,14.4207544,50.0863325,14.4207257,50.086284,14.4207255,50.0862286,14.4207191,50.0860706,14.4207136,50.0860171,14.4207114,50.0859799,14.4207098,50.085987,14.4206931,50.0859957,14.4206725,50.0860073,14.4206453,50.0861524,14.4206615,50.086357,14.4206836,50.086434,14.420668,50.0864341,14.4206708,50.0864998,14.4206567],[50.0859757,14.4205986,50.0859915,14.4206009,50.0860073,14.4206031,50.0860073,14.4206453,50.0859957,14.4206725,50.085987,14.4206931,50.0859799,14.4207098,50.085861,14.4206997,50.0857961,14.4206999,50.0857077,14.4207332,50.085733,14.4208262,50.0855997,14.4209373,50.0855488,14.4210269,50.0854587,14.4211787,50.0853321,14.4213965,50.085304,14.4214461,50.0852907,14.4214276,50.08527,14.4213989,50.0852501,14.4213711,50.0851911,14.4212908,50.085282,14.4211416,50.0854074,14.4209725,50.0854554,14.4208939,50.0855081,14.420798,50.0855655,14.4206818,50.0855674,14.4206829,50.085572,14.4206728,50.0855705,14.4206713,50.0855886,14.4206405,50.085587,14.4206381,50.0855935,14.4206307,50.0855913,14.4206283,50.0856057,14.4205963,50.0856259,14.4205185,50.0856542,14.420533,50.0856695,14.4205402,50.0856882,14.4205479,50.0857714,14.4205644,50.0858558,14.4205875,50.0859757,14.4205986],[50.0860706,14.4207136,50.0860675,14.420795,50.0860656,14.4208434,50.0860428,14.4208401,50.0860267,14.4209426,50.0860398,14.4210464,50.0860476,14.4210754,50.0861111,14.4212028,50.0861654,14.4212369,50.0862344,14.4212773,50.0863065,14.4213039,50.0863079,14.4213001,50.0864109,14.4213547,50.0863943,14.4213981,50.0863915,14.4213968,50.086384,14.4214133,50.0864104,14.4214362,50.0864171,14.4214352,50.08653,14.4215327,50.0865708,14.4215711,50.0865731,14.4215737,50.0865758,14.4215754,50.0865786,14.421576,50.0865814,14.4215754,50.0866218,14.4215267,50.0866616,14.4215481,50.086654,14.4215688,50.0866478,14.4215858,50.0866147,14.4215972,50.0865986,14.4216105,50.0865949,14.4216035,50.0865806,14.4216146,50.0865366,14.4215843,50.0863705,14.4214455,50.0863124,14.4214006,50.0863135,14.4213963,50.0862502,14.4213589,50.086249,14.4213648,50.0861841,14.4213405,50.0861095,14.4213225,50.086076,14.4212063,50.0860568,14.421192,50.0860184,14.4211634,50.0860161,14.4211627,50.0860143,14.421164,50.086013,14.4211671,50.0860128,14.4211713,50.0859469,14.4213714,50.0859653,14.4214114,50.0859668,14.4214369,50.085921,14.4213764,50.0858999,14.4213429,50.0859625,14.4209762,50.0859897,14.4209747,50.0859754,14.4207281,50.0859794,14.4207274,50.0859799,14.4207098,50.0860171,14.4207114,50.0860706,14.4207136],[50.086654,14.4215688,50.0867088,14.4216184],[50.0867088,14.4216184,50.0867513,14.4216597],[50.0858368,14.4229537,50.085802,14.4230012,50.0856129,14.4232651],[50.0863484,14.4224433,50.0862939,14.4225435,50.0862925,14.4225462,50.0862909,14.4225442,50.0862335,14.4226579,50.0862086,14.4226808,50.086182,14.4227053,50.0860243,14.4229397,50.0859918,14.42288,50.0858744,14.4230272,50.0858368,14.4229537,50.0858092,14.422873,50.0857926,14.4228458,50.085866,14.4227342,50.0859291,14.4226359,50.0859659,14.4226402,50.0860405,14.422649,50.0861874,14.4224188,50.0862304,14.4224754,50.0862772,14.4223824,50.0863728,14.4222073,50.0863831,14.4221883,50.0864467,14.4220711,50.0864276,14.4220424,50.0865384,14.4218708,50.0865808,14.4218062,50.0866022,14.4218343,50.0866427,14.4217711,50.0867159,14.4216535,50.0867144,14.4216462,50.086701,14.4216342,50.0867088,14.4216184,50.0867177,14.4216001,50.0867255,14.4216067,50.0867547,14.4215584,50.0867597,14.4215642,50.0868496,14.4214351,50.0869597,14.4212765,50.0869809,14.4213061,50.0870042,14.4213456,50.0869896,14.4213669,50.0869934,14.4213748,50.086941,14.4214432,50.0869363,14.4214375,50.0869293,14.4214477,50.0869344,14.4214593,50.0869023,14.4214985,50.0867499,14.4217263,50.0865928,14.4219965,50.0865075,14.4221535,50.0864632,14.422234,50.0863484,14.4224433],[50.086959,14.422979,50.0869567,14.4230014,50.0869539,14.4230291,50.0868089,14.4229884,50.0867826,14.422982,50.0867792,14.423003,50.086717,14.4229682,50.0867024,14.4229612,50.0866371,14.4229297,50.086555,14.4228762,50.0864372,14.422833,50.0864231,14.4229994,50.0864,14.4230174,50.0863801,14.4230328,50.0862928,14.4228239,50.0862657,14.4228565,50.086182,14.4227053,50.0862086,14.4226808,50.0862335,14.4226579,50.0862348,14.4226714,50.0863583,14.4227985,50.0863669,14.4227957,50.0864259,14.422748,50.0864549,14.4227276,50.0865098,14.422635,50.0865389,14.4226629,50.0865421,14.4226797,50.0865451,14.4226955,50.0865138,14.4227097,50.0865154,14.4227725,50.0865151,14.422826,50.0867038,14.422905,50.0867923,14.4229313,50.0867898,14.4229413,50.086959,14.422979],[50.086345,14.4228419,50.0864,14.4230174],[50.0853321,14.4213965,50.0853327,14.4214311,50.0853942,14.421516,50.0854991,14.421658,50.0855792,14.4217826,50.0856339,14.4218653,50.085668,14.4219168,50.0857562,14.4220767,50.0857664,14.4220952,50.0859562,14.4224718,50.0860405,14.422649,50.0859659,14.4226402,50.0859291,14.4226359,50.0858766,14.4224774,50.0858384,14.4223638,50.0858208,14.4223186,50.0857948,14.4222561,50.0857697,14.422212,50.0856768,14.4220878,50.0856736,14.4220912,50.0856664,14.4220736,50.0856573,14.4220692,50.0856527,14.4220741,50.085649,14.4220655,50.0856368,14.4220714,50.0856226,14.4220691,50.0856214,14.4220719,50.0856078,14.4220774,50.0855989,14.4220931,50.0855956,14.4220934,50.0855955,14.4220968,50.0855895,14.4220975,50.0855804,14.422111,50.0855685,14.4221186,50.0855567,14.4220077,50.0855497,14.4219422,50.0852419,14.4215086,50.0852223,14.421481,50.08527,14.4213989,50.0852907,14.4214276,50.085304,14.4214461,50.0853321,14.4213965],[50.0855093,14.4230964,50.0856129,14.4232651],[50.0863646,14.4244205,50.0862868,14.4239265,50.0862834,14.4239053,50.0862344,14.4238042,50.0860186,14.4233856,50.0859378,14.4232403,50.0858402,14.4230684,50.085802,14.4230012],[50.0859978,14.4227498,50.0858368,14.4229537],[50.0858092,14.422873,50.0858368,14.4229537,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172,50.0857223,14.4232141,50.0856904,14.4232561,50.0856986,14.4232711,50.0856985,14.4232751,50.0857037,14.4232828,50.0857081,14.423293,50.0857112,14.4233044,50.0857136,14.4233176,50.0857134,14.4233298,50.085712,14.423342,50.0857157,14.4233432,50.0857161,14.4233477,50.0856886,14.423385,50.0856886,14.4233882,50.0856767,14.4234049,50.0856847,14.4234193,50.0856858,14.4234181,50.0857096,14.4234615,50.0857224,14.4234447,50.0857603,14.4235141,50.0857475,14.4235318,50.0857793,14.4235887,50.0857805,14.4235873,50.0858031,14.4236275,50.0858021,14.4236295,50.0858543,14.423724,50.08585,14.4237301,50.0858426,14.4237407,50.0858368,14.4237491,50.0858228,14.4237691,50.0858105,14.4237869,50.0857982,14.4238046,50.0857735,14.42384,50.0857427,14.4237613,50.0857122,14.4236834,50.0856362,14.4235474,50.0855385,14.4233933,50.0854291,14.4232102,50.0854477,14.4231842,50.0854602,14.4231667,50.0854719,14.4231506,50.0854843,14.4231323,50.0854957,14.4231159,50.0855093,14.4230964,50.0855244,14.4230749,50.0855343,14.4230606,50.0855452,14.4230453,50.0855567,14.4230286,50.0855717,14.4230058,50.0855852,14.4229851,50.0856424,14.4230703,50.0857435,14.4229181,50.0857609,14.4229463,50.0858092,14.422873],[50.0857541,14.423172,50.085763,14.4231862,50.085765,14.423186,50.0857707,14.4231954,50.0857787,14.4232054,50.0857861,14.4232132,50.0857913,14.4232178,50.0858046,14.4232177,50.0858046,14.4232241,50.0858073,14.4232251,50.0858352,14.423187,50.0858367,14.4231894,50.0858499,14.423172,50.0858573,14.4231848,50.0858573,14.423188,50.085881,14.4232311,50.0858685,14.4232481,50.0859065,14.4233177,50.0859201,14.4233004,50.0859515,14.4233543,50.0859499,14.4233566,50.0859728,14.4233981,50.0859748,14.4233955,50.0860744,14.4235737,50.0860952,14.4236153,50.0860967,14.4236133,50.0861282,14.4236724,50.0861167,14.4236869,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863423,14.4238999,50.0863904,14.423841,50.0863102,14.4236997,50.0862321,14.4235406,50.0861754,14.4235935,50.0861707,14.4235923,50.086099,14.4234362,50.0861003,14.4234294,50.086052,14.4233364,50.0860512,14.4233369,50.0860486,14.4233296,50.0860306,14.4232956,50.0860263,14.4232901,50.0860149,14.4232662,50.0860159,14.4232634,50.0860101,14.4232529,50.0860032,14.4232618,50.085993,14.4232621,50.0859863,14.4232504,50.0859871,14.4232319,50.0859921,14.4232246,50.0859862,14.4232125,50.0859845,14.423215,50.0858744,14.4230272,50.0858402,14.4230684,50.0857541,14.423172],[50.0859223,14.4240264,50.0859161,14.4240349,50.0858609,14.4239415,50.0858053,14.4238425,50.0857735,14.42384,50.0858228,14.4237691,50.0858426,14.4237407,50.0858543,14.423724,50.0859011,14.4238077,50.0859026,14.423806,50.0859236,14.4238453,50.0859557,14.4239057,50.0859672,14.4238911,50.0860044,14.423959,50.0859925,14.4239744,50.0860229,14.4240343,50.0860361,14.4240172,50.0860943,14.4241195,50.0861092,14.4242486,50.0861252,14.4243799,50.0859223,14.4240264],[50.0861252,14.4243799,50.0861092,14.4242486,50.0860943,14.4241195,50.0861253,14.4240778,50.0861293,14.424085,50.0862182,14.4239644,50.0862143,14.4239564,50.0862452,14.4239151,50.0862868,14.4239265,50.0863153,14.4239336,50.0863697,14.4240605,50.0863888,14.4240383,50.0864027,14.4240221,50.0864303,14.4240891,50.0864746,14.4242116,50.0864727,14.4242136,50.0864782,14.42423,50.0864806,14.4242286,50.0864948,14.4242676,50.0864927,14.4242698,50.0864987,14.4242855,50.0865005,14.4242842,50.0865431,14.4244068,50.0865645,14.4244626,50.0865647,14.4244668,50.0866335,14.424648,50.0866685,14.4247388,50.0866722,14.4247462,50.0866742,14.4247471,50.0867489,14.4249328,50.0867462,14.4249354,50.0867734,14.4250301,50.0867787,14.4250274,50.0868264,14.4251794,50.0868746,14.4253825,50.0869118,14.4255442,50.0869746,14.4255498,50.0869752,14.4255612,50.0869792,14.4255619,50.0869815,14.4255573,50.0869817,14.4255506,50.0870075,14.425553,50.0870074,14.4255603,50.0870106,14.4255657,50.0870138,14.4255623,50.0870138,14.4255548,50.0871119,14.4255402,50.0871723,14.4255276,50.0872249,14.4255154,50.0872258,14.4255281,50.087227,14.4255423,50.0872383,14.4256706,50.0872404,14.4256949,50.0872583,14.4258493,50.0872652,14.425865,50.0872231,14.4258788,50.0872051,14.4258844,50.0871797,14.4258924,50.0871526,14.4258771,50.0871299,14.4258649,50.0869961,14.4257967,50.0869957,14.4257933,50.0868733,14.4257706,50.0868701,14.425763,50.0868717,14.4257604,50.0868581,14.4257313,50.0868577,14.4257205,50.0868529,14.4257202,50.0868391,14.4256933,50.0868393,14.4256855,50.0868334,14.4256835,50.0868183,14.4256552,50.0868166,14.4256576,50.0867573,14.4255448,50.0867589,14.4255427,50.0867043,14.4254434,50.0867027,14.4254461,50.086643,14.4253308,50.0866445,14.4253291,50.0866307,14.4253026,50.0866311,14.4252957,50.0866264,14.4252951,50.0866118,14.4252677,50.0866124,14.4252608,50.0866072,14.4252593,50.0865901,14.4252273,50.0865872,14.4252308,50.0865653,14.4251894,50.0864935,14.4250528,50.0863537,14.4247904,50.086349,14.4247969,50.0863433,14.4247868,50.0863481,14.4247804,50.0862388,14.424584,50.0862008,14.4245157,50.0861961,14.4245221,50.0861905,14.4245121,50.0861952,14.4245057,50.0861252,14.4243799],[50.0866773,14.4251335,50.086865,14.4255993,50.0868958,14.4256446,50.0869306,14.4256757,50.086969,14.4256917,50.0871499,14.4257383,50.0871917,14.425745],[50.0879698,14.4230363,50.0879847,14.4229947],[50.0876108,14.4215871,50.0880719,14.4213631,50.0881381,14.4213309,50.0881731,14.4213139],[50.0878675,14.4203886,50.0878372,14.4204187,50.0878188,14.4204583],[50.087785,14.4194786,50.0877623,14.4192958,50.0877612,14.4192872],[50.0857122,14.4236834,50.0857427,14.4237613,50.0857735,14.42384,50.0856393,14.4240302,50.0856427,14.4240336,50.0854332,14.4243386,50.0852321,14.4246354,50.0852015,14.4246805,50.0851434,14.4246144,50.085092,14.4245626,50.0853077,14.4242627,50.0853124,14.4242479,50.0853095,14.4242363,50.0853372,14.4241962,50.0853632,14.4241585,50.0853686,14.4241588,50.085375,14.4241553,50.0854636,14.4240239,50.0854732,14.4240402,50.0857122,14.4236834],[50.0876108,14.4215871,50.0876195,14.4216166,50.0876993,14.4218873],[50.0872523,14.4217613,50.0874955,14.4216431,50.0876108,14.4215871],[50.0880527,14.4213272,50.0879015,14.4210097,50.0877908,14.4207354,50.0877605,14.4206583,50.0877426,14.4205657],[50.0872701,14.4206408,50.0871005,14.4201105,50.0871053,14.4200817,50.0871103,14.4200681,50.0871151,14.4200551,50.0871406,14.4200451,50.0873141,14.41999,50.0875394,14.4199191,50.0875649,14.4199129,50.0875833,14.4199111,50.0876028,14.4199117,50.0876219,14.4199191,50.0876411,14.4199341,50.0876598,14.4199561,50.0876726,14.4199726,50.0876845,14.4199956,50.0876728,14.420013,50.0876665,14.4200224,50.0876578,14.4200126,50.0875946,14.4200203,50.0875887,14.4200276,50.0874996,14.4204854,50.0874803,14.4204985,50.0872701,14.4206408],[50.0871076,14.4200277,50.0870867,14.4200466,50.0870763,14.4200665,50.0870741,14.4200781,50.0870767,14.4201008,50.0870918,14.4201829,50.0872564,14.4206513,50.0872604,14.4206643,50.0872902,14.4207777,50.0873012,14.4208192,50.0873143,14.4208595],[50.0867479,14.4195288,50.0867645,14.41956],[50.0865794,14.419876,50.086561,14.4199113],[50.0866938,14.4171114,50.0867182,14.4171547,50.0867377,14.4172216,50.0867681,14.4173801],[50.0898801,14.4205759,50.0898773,14.4207175],[50.0899706,14.4207329,50.0898801,14.4205759],[50.086832,14.4176342,50.0868667,14.4177964],[50.0879015,14.4210097,50.087835,14.4210726,50.0878164,14.4210805],[50.0863646,14.4244205,50.0863894,14.4244766,50.0864678,14.4246544,50.0866565,14.4250818,50.0866773,14.4251335],[50.0892821,14.4238981,50.0892713,14.4238689,50.0892514,14.4238171],[50.0876675,14.4254562,50.087227,14.4255423],[50.0876826,14.4254485,50.0876675,14.4254562],[50.0895157,14.4227733,50.0895588,14.4225796,50.0895841,14.422445],[50.0893628,14.4226586,50.0893604,14.4227179,50.0893523,14.4227787],[50.0863102,14.4236997,50.0862344,14.4238042],[50.0872269,14.4174329,50.0872121,14.4173471,50.0872042,14.4173011,50.0871938,14.4172469],[50.0878922,14.4244781,50.0878877,14.4243233],[50.0878877,14.4243233,50.087887,14.4243048,50.0878465,14.4242036],[50.0878928,14.4244941,50.0878922,14.4244781],[50.0881307,14.4245397,50.0880443,14.424545],[50.0874955,14.4216431,50.0875516,14.4218972,50.0875646,14.4219599,50.0875711,14.4219913],[50.0901089,14.4206279,50.090054,14.4207181,50.0900595,14.4207328,50.0900845,14.4207996,50.0900725,14.4208025,50.0900637,14.4208042,50.0902056,14.4211784,50.0902151,14.4211952,50.0902306,14.4212099,50.0902438,14.4212134,50.0902508,14.4212153,50.0902714,14.4212133,50.0902839,14.4212059,50.0902986,14.4211978,50.0902945,14.4211778,50.0902916,14.4211641,50.0902891,14.4211533,50.0902632,14.4211685,50.0902515,14.4211662,50.0902391,14.4211561,50.0902334,14.4211463,50.0902269,14.4211142,50.0902185,14.4211179,50.0901838,14.4209447,50.0901817,14.4209457,50.0901753,14.4209156,50.0901711,14.4209177,50.0901519,14.4209273,50.090148,14.4209293,50.0901473,14.4209258,50.0901358,14.4208709,50.0901349,14.420867,50.0901235,14.4208124,50.0901227,14.4208085,50.090127,14.4208063,50.0901255,14.4207984,50.0901235,14.420788,50.0901192,14.4207653,50.0901399,14.4207586,50.0901247,14.4206507,50.0901158,14.4206379,50.0901089,14.4206279],[50.0877642,14.4222068,50.0876558,14.4222685],[50.0876558,14.4222685,50.0876353,14.4222801],[50.0877827,14.4221962,50.0877642,14.4222068],[50.0870803,14.4193248,50.0870901,14.419357],[50.0873571,14.419511,50.087316,14.4196974],[50.0867699,14.4195714,50.0867929,14.419556,50.0868482,14.419519,50.0869135,14.4194752,50.0869768,14.4194328,50.0870087,14.4194115,50.0870901,14.419357,50.0871101,14.4193435,50.0872089,14.4192981,50.0872646,14.4192587,50.0873687,14.4192463],[50.0865859,14.4198572,50.0866515,14.4200015,50.0866854,14.420076],[50.0866854,14.420076,50.0867432,14.4201597,50.0867793,14.4202083,50.0868825,14.4205181,50.0869058,14.420588,50.0870079,14.4208543,50.0870198,14.4208794,50.0870352,14.4208995,50.0870563,14.4209149,50.0870793,14.4209206,50.0871025,14.4209164,50.0872902,14.4207777,50.0874544,14.4206262,50.0877246,14.4204009,50.0876852,14.4200357,50.0876728,14.420013,50.0876446,14.419961,50.0875955,14.4199598,50.0875537,14.419941,50.0873456,14.4200034,50.0871103,14.4200681,50.0870741,14.4200781],[50.087698,14.4199436,50.0876598,14.4199561,50.0876446,14.419961],[50.0868825,14.4205181,50.0868398,14.4205601],[50.0875955,14.4199598,50.0875456,14.4201742,50.0874803,14.4204985,50.0874544,14.4206262,50.087437,14.4207136],[50.0881519,14.4175602,50.0881291,14.4176564,50.0881002,14.4177619],[50.0881002,14.4177619,50.0880894,14.4178015,50.0878126,14.4188949,50.0877769,14.4190366],[50.0880894,14.4178015,50.0881113,14.4178184],[50.0882948,14.4164853,50.0883027,14.4165139,50.0883224,14.416513,50.0883404,14.4165201,50.0883628,14.416553,50.0883816,14.4166017,50.0883826,14.4166234,50.0883793,14.4166424,50.0883613,14.4167219,50.0881671,14.4175096,50.0881559,14.4175432,50.0881519,14.4175602],[50.0881861,14.4175203,50.0881671,14.4175096],[50.0883028,14.4175876,50.0882953,14.4175832],[50.0882109,14.4178837,50.088228,14.4178935],[50.0879623,14.4189513,50.0879875,14.4188605],[50.0879512,14.4189883,50.0879623,14.4189513],[50.087935,14.4189771,50.0879512,14.4189883],[50.0879512,14.4189883,50.0879484,14.4189993],[50.0879017,14.4191771,50.0878977,14.4191926],[50.0878126,14.4188949,50.0878408,14.4189139],[50.0875071,14.4191152,50.0874964,14.4191445],[50.087527,14.4191093,50.0875071,14.4191152],[50.0875071,14.4191152,50.0874904,14.4190877],[50.0874824,14.4192379,50.0874814,14.4192478],[50.0877612,14.4192872,50.0877595,14.4192736],[50.0870446,14.419211,50.0870487,14.419221],[50.0878977,14.4191926,50.088379,14.4188,50.0883872,14.418793],[50.0883872,14.418793,50.0884129,14.4187725,50.0884507,14.4187447],[50.0889623,14.4177513,50.0889536,14.4177478,50.0882709,14.4177845,50.0882548,14.4177934],[50.089133,14.4184521,50.0891177,14.4183965,50.0891002,14.418326],[50.0894822,14.419201,50.0894658,14.4192107],[50.0895085,14.4192367,50.0894974,14.4191902],[50.0895594,14.4194254,50.0895553,14.419411],[50.0895456,14.4194518,50.0895269,14.4194627],[50.0893039,14.4193148,50.0893186,14.4193652],[50.0894012,14.419546,50.0893882,14.4195539,50.0893836,14.4195543,50.089379,14.4195548,50.0893709,14.4195586,50.0893655,14.419538],[50.0871938,14.4172469,50.0871876,14.4172145,50.0871926,14.4171571,50.0872089,14.4171547,50.087213,14.4171541],[50.0872975,14.4171361,50.0872906,14.4171376],[50.0871926,14.4171571,50.0871388,14.4152029],[50.0878388,14.4224315,50.0878939,14.4226723,50.0879304,14.422704,50.0879456,14.4227161],[50.0878308,14.4223977,50.0878388,14.4224315],[50.0892996,14.418445,50.0892882,14.4184063,50.0892729,14.4183672],[50.0892729,14.4183672,50.0892617,14.4183296],[50.0902438,14.4212134,50.0902295,14.4211785,50.0901373,14.4209537,50.0900725,14.4208025],[50.0905263,14.4205982,50.0905141,14.4205164,50.0905064,14.4205044,50.0904944,14.4205011,50.0901502,14.4205798],[50.0901805,14.4205448,50.0901464,14.4200978,50.0901394,14.4200616,50.0901204,14.4200342,50.0900923,14.4200321,50.0900297,14.4200638,50.0898261,14.420193,50.0898041,14.420207],[50.0897579,14.4200783,50.0897482,14.420073,50.0895456,14.4194518,50.0895514,14.4194351,50.0895594,14.4194254],[50.0897615,14.4200893,50.0897579,14.4200783],[50.0897984,14.4201919,50.0897832,14.4201507,50.0897615,14.4200893],[50.0898041,14.420207,50.0897984,14.4201919],[50.0898349,14.4207163,50.089824,14.4206916],[50.0897164,14.4208095,50.0897114,14.4207843],[50.0897509,14.4209781,50.0897477,14.4209627],[50.0900178,14.4210791,50.0900099,14.4210605],[50.0897946,14.4209955,50.0898061,14.4209827],[50.0899821,14.4208153,50.0899295,14.4208663,50.0899098,14.4208854,50.0898605,14.4209332],[50.0899737,14.4209703,50.0899295,14.4208663],[50.0898738,14.4207979,50.0899098,14.4208854],[50.087853,14.4206543,50.0878343,14.4206787,50.0878077,14.4207134],[50.0843394,14.420402,50.0844328,14.4204272,50.0846594,14.420705,50.0851483,14.4214019,50.085194,14.4214671],[50.087085,14.4212168,50.0872523,14.4217613],[50.0894322,14.4223222,50.0894299,14.4222939],[50.0893229,14.4225565,50.0893296,14.4225548],[50.0893958,14.4225741,50.089397,14.4226013,50.0894039,14.4226263,50.0894157,14.4226463,50.0894311,14.4226592,50.0894346,14.42266,50.0894484,14.4226634,50.0894655,14.4226585,50.0894807,14.422645,50.0894922,14.4226245,50.0894987,14.4225992,50.0894995,14.4225733,50.0894951,14.4225483,50.0894899,14.4225363,50.0894858,14.4225267,50.0894727,14.4225108,50.089457,14.4225022,50.0894507,14.422502,50.0894404,14.4225017,50.0894245,14.4225094,50.0894104,14.4225254,50.0894059,14.4225356,50.0894004,14.4225478,50.0893958,14.4225741],[50.0894342,14.4227361,50.0894346,14.42266],[50.0895372,14.4225671,50.0894899,14.4225363],[50.0894435,14.4224417,50.0894507,14.422502],[50.0893766,14.4225429,50.0894059,14.4225356],[50.089591,14.4225975,50.0896085,14.4226067],[50.0894734,14.4228352,50.0894898,14.4228221],[50.089436,14.4228268,50.0894357,14.4228073],[50.0891002,14.418326,50.0890972,14.4183141,50.0891019,14.4182916,50.0890973,14.4182503,50.0889661,14.417762,50.0889623,14.4177513,50.0889586,14.4177352],[50.0891546,14.4203772,50.0889163,14.420607],[50.0872089,14.4171547,50.0872072,14.4170717,50.0871576,14.4152066,50.0871481,14.415175],[50.0888159,14.4234442,50.088867,14.4235919,50.0888279,14.4236241],[50.0848338,14.4219255,50.0848196,14.4219483],[50.0852596,14.422559,50.0855717,14.4230058],[50.0848509,14.4219537,50.0848696,14.4219839,50.0849165,14.4220559],[50.0849138,14.4221146,50.0849343,14.4220823,50.0849379,14.4220556,50.0851965,14.4215862],[50.0849165,14.4220559,50.0849343,14.4220823,50.0852261,14.4225109],[50.0852261,14.4225109,50.0852386,14.4225292,50.0852596,14.422559],[50.0904758,14.4257556,50.0904461,14.4257972,50.0904233,14.42581,50.0898622,14.425834,50.0898526,14.4257794,50.0898275,14.4256538,50.0896656,14.4251303,50.0893275,14.4240885,50.0892857,14.4239399,50.0892868,14.4239108,50.0894125,14.4238042],[50.0892514,14.4238171,50.0892451,14.4238007],[50.0892868,14.4239108,50.0892821,14.4238981],[50.089314,14.4240966,50.0893275,14.4240885],[50.0872798,14.4177289,50.0872681,14.4176607,50.0872596,14.4176144],[50.0868788,14.4176223,50.086832,14.4176342],[50.0875559,14.4186062,50.0874521,14.4180022,50.0874512,14.4179813,50.0874548,14.4179714,50.0874602,14.4179643,50.0874705,14.4179597,50.0874678,14.4179425],[50.0872949,14.4169447,50.0872823,14.416951,50.0872772,14.4169557,50.0872727,14.4169658,50.0872975,14.4171361,50.0873833,14.4176701,50.0874125,14.4178377,50.087449,14.4178223,50.0874514,14.4178376],[50.0872947,14.4177889,50.0873065,14.4177732],[50.0873777,14.4176777,50.0873833,14.4176701],[50.0870769,14.4193142,50.087078,14.4193172,50.0870803,14.4193248],[50.0869346,14.4179316,50.0869249,14.417936],[50.0868533,14.417968,50.0868437,14.4179719],[50.0878077,14.4207134,50.0877908,14.4207354],[50.0878717,14.4206299,50.087853,14.4206543],[50.0892134,14.4203205,50.0891836,14.4203492],[50.0891836,14.4203492,50.0891686,14.4203637,50.0891546,14.4203772],[50.0889163,14.420607,50.0888933,14.4206292,50.0888801,14.420642],[50.0888801,14.420642,50.0888514,14.4206696],[50.0889262,14.4197064,50.0889601,14.4198029,50.0891508,14.4203165],[50.0895644,14.4222162,50.0895556,14.4222115],[50.0896546,14.4225973,50.0896601,14.4225669],[50.0884175,14.4214621,50.08875,14.4217291,50.0887739,14.4217393,50.0887979,14.4217414,50.0888039,14.4217467],[50.0889115,14.4218408,50.0889222,14.4218501],[50.0884415,14.4216275,50.0885483,14.4217599,50.0886607,14.4218662,50.0887527,14.4219731],[50.0887527,14.4219731,50.0887681,14.4219963,50.0887834,14.4220177],[50.0881318,14.421425,50.0880983,14.4213904],[50.0880983,14.4213904,50.0880719,14.4213631,50.0880527,14.4213272],[50.0889065,14.4220267,50.0889106,14.4220146],[50.0889427,14.4219136,50.0889485,14.421895],[50.0877331,14.4204811,50.0877246,14.4204009],[50.0877426,14.4205657,50.0877385,14.4205282,50.0877331,14.4204811],[50.087437,14.4207136,50.0874243,14.4207762],[50.0878757,14.4204216,50.0878957,14.4205025],[50.0878472,14.420311,50.0878373,14.4202668],[50.0878373,14.4202668,50.0878305,14.4202349],[50.0876651,14.4245271,50.0876572,14.4245282,50.0876348,14.4245311],[50.0873687,14.4192463,50.0873997,14.4192185,50.0873794,14.4193533,50.0873553,14.4193698],[50.0876382,14.4190735,50.0877317,14.4190479,50.0877769,14.4190366],[50.0872838,14.4177524,50.0872743,14.4177497,50.087268,14.417748,50.0871932,14.4177509,50.0871344,14.4177436,50.0870802,14.417764,50.0870083,14.4178397],[50.088379,14.4188,50.0883962,14.4188583,50.0886542,14.4197372],[50.0884642,14.4187346,50.0887364,14.4196809],[50.0893558,14.4192797,50.0891538,14.4184846,50.0891362,14.4184639,50.089133,14.4184521],[50.0878305,14.4202349,50.0878057,14.4202067,50.0877781,14.4201189,50.0877539,14.4199487,50.0877157,14.4198671],[50.0878957,14.4205025,50.0878824,14.4205306,50.0878742,14.42055,50.0878686,14.4205762,50.0878671,14.4206031,50.0878717,14.4206299,50.0878786,14.4206488,50.0878863,14.4206624,50.0879012,14.420675,50.087916,14.4206822,50.0879289,14.4206829,50.0879418,14.4206795,50.0879638,14.4206996,50.0882228,14.4211973,50.0884175,14.4214621],[50.0851965,14.4215862,50.0852062,14.4215692,50.0852205,14.421544],[50.0852907,14.4214276,50.0855759,14.4209163,50.085694,14.4207139,50.0857207,14.4206883,50.0857486,14.4206734,50.085987,14.4206931,50.086018,14.4206966],[50.0852205,14.421544,50.0852419,14.4215086,50.0852907,14.4214276],[50.0871901,14.423353,50.087143,14.4233373]],"pathwayTypes":[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,4,3,3,0,0,3,0,3,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,3,3,3,0,0,3,0,3,3,3,3,3,0,0,4,4,0,0,4,4,3,0,3,0,3,0,0,0,3,3,3,3,0,0,3,0,3,3,3,3,3,3,3,0,1,3,3,3,3,0,0,3,3,3,0,3,0,0,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,3,3,0,0,4,0,0,0,0,0,0,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,3,3,3,0,0,0,0,0,3,3,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"areas":[[50.0886248,14.4226126,50.0886218,14.4225826,50.0885946,14.4223138,50.088608,14.4223096,50.0886104,14.4223347,50.0887001,14.4223145,50.0887276,14.4225765,50.0886248,14.4226126],[50.0886062,14.4246771,50.0886149,14.4246761,50.0886194,14.4247139,50.0886113,14.4247166,50.0886121,14.4247253,50.0886201,14.4247243,50.0886253,14.4247606,50.0886166,14.4247635,50.0886179,14.4247726,50.0886263,14.4247717,50.0886307,14.4248074,50.0886215,14.4248097,50.0886234,14.4248187,50.0886313,14.4248167,50.0886362,14.4248545,50.0886276,14.4248573,50.0886285,14.4248659,50.0886369,14.4248646,50.0886422,14.4249009,50.0886393,14.4249024,50.0886438,14.4249644,50.0886138,14.4249693,50.0886128,14.4249581,50.0885303,14.4249716,50.088531,14.4249828,50.0885004,14.4249875,50.0884784,14.4246529,50.0885116,14.4246477,50.0885122,14.4246608,50.0885182,14.4246592,50.0885171,14.4246472,50.0885423,14.4246425,50.0885434,14.4246544,50.0885504,14.4246536,50.0885495,14.4246413,50.0885757,14.4246379,50.0885765,14.4246497,50.0885819,14.424648,50.0885812,14.4246363,50.0886098,14.424631,50.0886135,14.4246654,50.0886051,14.4246687,50.0886062,14.4246771],[50.0852445,14.4184955,50.0854502,14.4185531,50.0854175,14.4188699,50.0852138,14.418815,50.0852445,14.4184955],[50.0871605,14.4205308,50.0871851,14.4205142,50.087049,14.4201047,50.087043,14.4201013,50.0870266,14.4201149,50.0871605,14.4205308]],"areaTypes":[0,0,0,0],"poIs":[50.0847015,14.42088582,7,50.086699640000006,14.417247940000001,4,50.086749297014926,14.425861274626866,7,50.086234445,14.423643915000003,7,50.086614530000006,14.419512110000003,7,50.089513726666674,14.420423613333332,3,50.08955660555555,14.424412027777777,3,50.08889799166666,14.424689041666666,7,50.087593633333334,14.419008166666666,7,50.08794664,14.42041552,7,50.08801030000001,14.42089494,7,50.089281320000005,14.4238071,7,50.08893038,14.42175798,7,50.08975302,14.420828,7,50.089346660000004,14.42227354,7,50.085561139999996,14.42309244,7,50.08682402000001,14.41780478,4,50.086784200000004,14.417210220000001,4,50.088351540000005,14.41724534,4,50.0883247,14.417046300000003,4,50.0878565,14.41769248,4,50.087839679999995,14.417766879999999,4,50.08804654,14.418476440000001,4,50.088013440000005,14.41827222,4,50.08867058,14.417659379999998,4,50.08868624,14.417726980000001,4,50.089079479999995,14.41805458,4,50.0890931,14.417800549999999,4,50.087829979999995,14.41901296,4,50.08729070769231,14.419217815384616,4,50.0876395,14.41784936,4,50.08745310909091,14.418636518181819,4,50.087509957142856,14.4185082,4,50.08699762,14.418722220000001,4,50.08701981428572,14.418517414285715,4,50.088482320000004,14.418899040000003,4,50.08866016,14.41950574,4,50.08855684,14.419328720000001,4,50.08855199166666,14.41858095,4,50.0881104,14.4189829,4,50.08854454,14.418626960000001,4,50.08900948,14.418448039999998,4,50.089353440000004,14.418811100000003,4,50.08926326,14.418773680000001,4,50.090331985714286,14.419759057142857,4,50.08964806,14.419852539999999,4,50.089992640000006,14.42005764,4,50.089889819999996,14.420485840000001,4,50.08953785,14.419825549999999,4,50.09017723333334,14.418832016666665,4,50.09021068,14.418932759999999,4,50.08920284,14.419582639999998,4,50.088988671428574,14.419592371428573,4,50.08819585,14.42122698,4,50.08840484,14.419965159999999,4,50.088518975,14.4200362375,4,50.088466839999995,14.4222484,4,50.0886289125,14.421775949999999,4,50.08849002857143,14.421553200000002,4,50.08961164,14.42089298,4,50.08920412857144,14.420367642857144,4,50.08928958,14.42112692,4,50.08902332857143,14.420651342857143,4,50.08900541999999,14.421501580000001,4,50.0893526076923,14.421231330769233,4,50.08578454,14.41813578,4,50.08522396666666,14.419009350000001,4,50.087966640000005,14.4207929,4,50.08807102,14.424522239999998,7,50.09006194,14.421070419999998,7,50.08955445714285,14.424904014285715,4,50.09032061999999,14.421696399999998,4,50.08777501428572,14.425251828571431,4,50.08999348333334,14.4225416,4,50.08912272,14.42413904,4,50.08768482000001,14.42330734,4,50.08974724000001,14.421535019999999,4,50.087698849999995,14.42500254,4,50.089808385714285,14.42359372857143,4,50.08909435,14.422183725000002,4,50.089341342857146,14.42342882857143,4,50.087982700000005,14.424510520000002,4,50.09001628,14.422654399999999,4,50.087640820000004,14.42321536,4,50.089274800000005,14.423989119999998,4,50.089666071428574,14.41832544285714,4,50.088148928571435,14.425087314285715,4,50.08974545,14.42182795,4,50.09012104,14.421208060000001,4,50.08908761428571,14.424009557142858,4,50.08922328,14.4221628,4,50.089595759999995,14.42304938,4,50.08981632,14.42340204,4,50.089308669999994,14.422801259999996,4,50.087653881818184,14.423900936363639,4,50.08784008,14.42451952,4,50.08820948571428,14.425135014285715,4,50.08822434,14.4245012,4,50.08965070000001,14.422975779999998,4,50.08866541,14.423751240000001,4,50.08971575714286,14.420300657142858,4,50.08879728000001,14.41972866,7,50.085041839999995,14.42178266,4,50.0853015,14.421802360000001,4,50.08545398,14.42108786,4,50.0851081,14.42259268,4,50.085045775000005,14.422303125000001,4,50.08533361428572,14.422733628571427,4,50.0890958,14.4186581,0,50.0865707,14.4229078,0,50.0857057,14.4182972,7,50.0874351,14.4193478,0,50.0862735,14.4246878,0,50.0880418,14.4177465,7,50.0869063,14.4192784,7,50.08699,14.4192013,0,50.0864618,14.4189931,3,50.0861543,14.4177617,7,50.0853793,14.4219175,6,50.0893376,14.4193225,6,50.0890945,14.4238324,0,50.0869973,14.4241908,3,50.0852686,14.421097,7,50.0870367,14.4178411,7,50.0897405,14.4212054,0,50.0895991,14.4218499,0,50.0896927,14.4223119,7,50.0896756,14.4214931,0,50.086716,14.4176584,7,50.0880826,14.4248957,0,50.0858413,14.4205435,1,50.0861923,14.4189571,0,50.0863674,14.4220734,7,50.0896854,14.4235127,7,50.0880421,14.424627,7,50.0857063,14.4209226,7,50.0853237,14.4198327,7,50.0855462,14.4228597,7,50.0870461,14.4186779,7,50.0894763,14.4226756,6,50.0894098,14.4226833,6,50.089512,14.4225131,6,50.0895019,14.4225018,6,50.0893998,14.4224468,6,50.0894957,14.4226551,6,50.0894008,14.4226582,6,50.0893865,14.422456,6,50.0859978,14.4242138,7,50.0872843,14.4246474,7,50.0870294,14.4216285,0,50.0883411,14.422479,0,50.0877719,14.4175947,7,50.0878439,14.4243083,7,50.0889995,14.4222151,0,50.0859247,14.4204885,0,50.0858033,14.4221112,0,50.0853306,14.4209504,0,50.0899778,14.4211902,0,50.0894885,14.4222256,0,50.0879237,14.4192744,7,50.0876045,14.4194062,0,50.0876712,14.4197769,0,50.08679,14.4209933,0,50.0875493,14.4220539,0,50.0876368,14.4222164,6,50.088346,14.421701,0,50.0866733,14.419156,0,50.0865614,14.4191426,0,50.086484,14.4201913,0,50.0864803,14.4200492,0,50.0859846,14.4181609,0,50.0860122,14.4181609,1,50.0879121,14.4183755,0,50.0884446,14.4217235,0,50.0877379,14.4219067,0,50.086861,14.4211045,0,50.08824,14.421702,0,50.0868895,14.4211701,0,50.0875593,14.4198128,0,50.087448,14.4198567,0,50.0878222,14.4218725,7,50.0873322,14.4198412,0,50.0878589,14.4201712,7,50.0887058,14.4239904,0,50.0880549,14.4232292,0,50.0864001,14.4215285,0,50.0888143,14.4234014,0,50.0869306,14.421279,0,50.0881174,14.4252451,7,50.0864357,14.4234182,7,50.086598,14.4246932,7,50.0866514,14.4239974,7,50.0855253,14.4216649,0,50.0898314,14.4223404,0,50.0890454,14.4202421,0,50.0868332,14.4241421,7,50.087796,14.424689,0,50.0874744,14.4220982,0,50.088012,14.4188202,7,50.0887534,14.4236677,0,50.0862926,14.4214627,0,50.0856399,14.4217723,0,50.085945,14.4198782,0,50.0874321,14.4229103,0,50.0872247,14.4238267,0,50.0892142,14.4227306,7,50.0864569,14.423513,3,50.0879498,14.4233898,0,50.087783,14.4176561,7,50.0883709,14.4234595,0,50.0874113,14.4171502,6,50.0878882,14.421884,6,50.0882087,14.4180992,0,50.088567,14.4186922,0,50.0889775,14.4179224,0,50.0885231,14.4178299,0,50.0886367,14.417563,0,50.0881635,14.4182857,0,50.0868548,14.4252407,0,50.0879393,14.4195066,0,50.0883348,14.418565,0,50.086952,14.4203372,6,50.0883326,14.4243654,0,50.0866555,14.4219331,0,50.0867616,14.4248541,0,50.0861364,14.4245372,0,50.0888941,14.4239773,0,50.0860902,14.4190354,0,50.086379,14.4188529,0,50.0868161,14.4183647,0,50.087329,14.4192916,0,50.0874639,14.419413,0,50.0870929,14.4194923,0,50.0867313,14.4199897,0,50.0863687,14.4208233,0,50.0866084,14.4209144,0,50.08572,14.4210008,0,50.0854967,14.4206435,0,50.0852225,14.4211059,0,50.0852945,14.4209985,0,50.0850458,14.4209564,0,50.0848839,14.4206879,0,50.0866009,14.4214771,0,50.08698,14.4214958,0,50.0865193,14.4208152,0,50.0883388,14.42126,0,50.0884916,14.4217667,0,50.0886309,14.4219628,0,50.0873335,14.4229653,6,50.0879647,14.4237661,6,50.0875443,14.4183145,0,50.0892246,14.4232839,0,50.0894759,14.4235079,0,50.089629,14.4216934,0,50.0890869,14.4223372,0,50.0892073,14.4225169,0,50.0892301,14.4231777,0,50.089433,14.4231357,0,50.0898866,14.4216531,0,50.0900671,14.4224222,0,50.0863048,14.4194325,0,50.0896449,14.4227,1,50.0851983,14.4200368,0,50.0859883,14.4244305,0,50.0868085,14.4249511,0,50.0853999,14.4232841,0,50.0864475,14.4229296,0,50.0862145,14.419764,0,50.0874255,14.4245647,0,50.0873211,14.4246087,0,50.0852824,14.4189623,0,50.0886624,14.4238654,0,50.0883254,14.4231517,0,50.0880697,14.4246578,0,50.0871724,14.4196117,6,50.0876715,14.4194963,0,50.0893142,14.4239251,0,50.0887067,14.4235899,0,50.088594,14.4236368,0,50.0879564,14.4244441,0,50.0880837,14.4241303,0,50.0883246,14.4238715,0,50.0879282,14.423947,7,50.0878781,14.4238018,0,50.08862,14.4210565,7,50.0856234,14.4229967,7,50.0855731,14.4229322,7,50.0854259,14.419992,0,50.0848199,14.4217447,7,50.0859739,14.4201595,0,50.0859158,14.4211435,0,50.0865657,14.4252299,0,50.0869802,14.4207138,7,50.0865017,14.4218739,0,50.0891595,14.4229002,0,50.0892367,14.4228046,0,50.0866702,14.422991,0,50.0891675,14.422774,7,50.0892461,14.4214886,0,50.0871893,14.419048,0,50.0866222,14.4198693,0,50.0895608,14.4201017,7,50.0869081,14.4242569,7,50.0858358,14.4180403,0,50.0855905,14.4197072,0,50.0880515,14.4227032,0,50.0852871,14.422282,7,50.0880698,14.4177935,7,50.0856108,14.4182998,0,50.0871887,14.4192966,0,50.0889744,14.4200404,0,50.0863876,14.4198575,0,50.0879137,14.4184421,1,50.0857235,14.4202133,0,50.0878375,14.4211203,6,50.087838,14.4211481,6,50.0878316,14.4212078,6,50.0877916,14.4213018,6,50.0877777,14.4213191,6,50.0877632,14.4213318,6,50.0878225,14.42104,6,50.0878095,14.4210149,6,50.0877845,14.4209753,6,50.0877693,14.4209595,6,50.0877354,14.4209364,6,50.0877187,14.4209325,6,50.0876819,14.4209364,6,50.0876621,14.4209462,6,50.0875857,14.4211666,6,50.0875844,14.4211432,6,50.0875825,14.4211127,6,50.0875835,14.4210804,6,50.0875871,14.421049,6,50.0876041,14.4212484,6,50.0876152,14.4212736,6,50.0876277,14.4212963,6,50.0876412,14.4213169,6,50.0876546,14.4213346,6,50.0877417,14.4213426,6,50.0852223,14.421064,7,50.0855537,14.4200128,0,50.0858182,14.4200127,0,50.0867433,14.4217741,0,50.0862133,14.4177581,0,50.0897189,14.4229144,2,50.08808,14.418555,1,50.0865429,14.4192425,1,50.0880522,14.4228794,0,50.0859176,14.4198435,1,50.085837,14.4188593,1,50.0900398,14.4207319,7,50.087357,14.4204375,6,50.0873373,14.420531,6,50.0873765,14.4204931,6,50.0874164,14.4204676,6,50.0873921,14.4204068,6,50.087296,14.4205562,6,50.0874351,14.4203743,6,50.0872147,14.4175128,7,50.085233,14.4215132,7,50.0859042,14.4242415,0,50.0896073,14.4227123,1,50.0873433,14.4224184,1,50.0895715,14.4200923,1,50.0883958,14.4178062,7,50.0877873,14.4192354,7,50.088181,14.4182057,0,50.0892733,14.423123,0,50.0870511,14.4215032,0,50.0856285,14.4203644,7,50.0860551,14.4185185,0,50.087009,14.4178576,6,50.0881817,14.4223745,0,50.0889849,14.4226568,0,50.0853295,14.4210484,0,50.088819,14.4239263,0,50.0866959,14.4208627,0,50.0861994,14.4194064,1,50.0866361,14.4199378,0,50.0879143,14.4219171,6,50.0881494,14.4220417,7,50.0871059,14.424813,0,50.0857819,14.4182346,1,50.0859887,14.4202891,0,50.0853493,14.4202887,0,50.0881001,14.4251481,0,50.0873507,14.4192357,0,50.0869703,14.4206877,7,50.086988,14.4207437,7,50.0875446,14.4185583,7,50.0865235,14.4251507,0,50.0898753,14.420854,6,50.087313,14.4204715,6,50.0872779,14.4204946,6,50.0882442,14.424073,0,50.085591,14.4190347,1,50.0890994,14.4184438,7,50.0875007,14.4179042,7,50.0867083,14.4198266,7,50.0856164,14.4208703,0,50.0873847,14.4223734,7,50.0855382,14.4205988,0,50.0890353,14.4243006,7,50.0857427,14.4191105,0,50.0868674,14.4183722,0,50.0888976,14.4235413,7,50.0869024,14.4211811,1,50.0861935,14.4190373,7,50.0863673,14.4196116,0,50.0860615,14.4186877,0,50.0865213,14.4204038,1,50.0861486,14.418047,7,50.0870562,14.4250523,0,50.086287,14.4226157,0,50.0873539,14.4226459,1,50.0872272,14.4236932,0,50.0867132,14.4218137,0,50.0872447,14.4252718,0,50.0866687,14.4216859,0,50.0890353,14.4193397,7,50.0893566,14.4213584,0,50.0877076,14.4241423,1,50.0868757,14.4232973,7,50.0877544,14.4236129,0,50.0877445,14.4242971,0,50.0873309,14.4242684,6,50.0873501,14.4243579,0,50.0875008,14.423657,6,50.0868455,14.4251958,0,50.0865001,14.4201069,0,50.0871461,14.4218628,0,50.0864626,14.4220409,7,50.0897321,14.4218949,7,50.0881806,14.4187496,0,50.0868721,14.4253357,0,50.0851847,14.4198158,0,50.0881413,14.4183921,7,50.0850673,14.4218903,1,50.0854008,14.421315,1,50.0865062,14.4206464,1,50.0870913,14.4243362,0,50.0882229,14.4187198,0,50.0876911,14.4203382,7,50.0875011,14.4204871,7,50.0875663,14.4204366,7,50.0876328,14.420383,7,50.0864128,14.4180862,7,50.0882978,14.4175458,7,50.088111,14.4177962,7,50.0877636,14.4197545,7,50.0876224,14.4200385,7,50.0877533,14.419642,7,50.0876614,14.4204597,7,50.0875441,14.4205365,7,50.087101,14.4245859,0,50.0873712,14.4248354,7,50.0848401,14.4208812,6,50.088148,14.417463,0,50.0870543,14.4177999,7,50.0861298,14.4179149,7,50.0872221,14.4177719,6,50.0869922,14.4178616,7,50.0860003,14.4181104,7,50.087235,14.4177676,7,50.08828,14.4177757,7,50.0873533,14.4175784,7,50.0871884,14.417787,6,50.0860493,14.4180786,7,50.0861214,14.4179212,7,50.0855377,14.4185876,7,50.0859038,14.420014,0,50.0859669,14.4188964,0,50.0851731,14.4212393,0,50.086413,14.4200723,0,50.0865173,14.4207471,0,50.0870575,14.4172326,7,50.0869857,14.4172396,7,50.0871594,14.4171801,7,50.0871503,14.4171974,7,50.0897883,14.4207556,7,50.0886003,14.4192712,7,50.0897025,14.420313,7,50.0895923,14.4208662,7,50.0884026,14.418633,7,50.0890695,14.4204697,6,50.089837,14.4206164,7,50.0884602,14.4187581,7,50.0891764,14.4180623,7,50.0889342,14.4206004,7,50.0892883,14.419335,7,50.0891195,14.4183026,7,50.0890648,14.4203011,7,50.0892612,14.4211113,7,50.0889973,14.4205404,6,50.0894023,14.4189436,7,50.0885943,14.4176484,7,50.0873512,14.4226613,7,50.0870012,14.4188342,7,50.0888902,14.4235097,7,50.0875837,14.4210081,7,50.0877258,14.4213364,7,50.0877945,14.4209808,7,50.0876762,14.4213517,7,50.0878173,14.4212549,7,50.0887896,14.4234999,6,50.0888793,14.4234809,7,50.0869225,14.4206638,7,50.0868407,14.4204243,7,50.0878062,14.4212817,6,50.0868677,14.42051,7,50.0870502,14.42093,7,50.0871266,14.4236578,7,50.0871724,14.420891,7,50.0871171,14.4209254,7,50.0868023,14.4203088,7,50.087439,14.4203858,7,50.0875073,14.4198518,1,50.0872838,14.4205189,7,50.0873637,14.420455,7,50.0880591,14.4187214,0,50.087591,14.4188649,7,50.0881295,14.4184737,0,50.0879827,14.418308,7,50.0874357,14.4179951,7,50.0880794,14.4186405,0,50.0888456,14.4178545,2,50.0880909,14.4188336,0,50.0871246,14.4246207,7,50.089726,14.4200281,7,50.0893013,14.4195561,7,50.0892293,14.4201234,2,50.089569,14.4194053,7,50.0891846,14.4201388,0,50.0890541,14.4197,7,50.0899429,14.4201268,7,50.0857638,14.4231318,7,50.0856721,14.4232566,7,50.0861883,14.4240098,6,50.0860902,14.4235956,7,50.0868302,14.425143,0,50.0862422,14.4239284,7,50.0858373,14.4238463,7,50.0862119,14.4239779,6,50.0861995,14.423996,7,50.0861193,14.4241066,7,50.0860053,14.4228928,7,50.0869885,14.4213748,7,50.0869284,14.4214589,7,50.0878249,14.420247,7,50.0868743,14.421569,7,50.0866323,14.4219771,0,50.0869605,14.4212643,7,50.0870176,14.4213745,7,50.0872104,14.4253861,7,50.0871083,14.4249803,7,50.0895203,14.4192069,7,50.0876842,14.4195404,0,50.0859875,14.4203488,0,50.0861679,14.4199367,0,50.088022,14.4178204,0,50.0880991,14.4185617,0,50.0882739,14.4186787,0,50.0869639,14.4178375,7,50.0881085,14.4209016,7,50.0890533,14.4194471,7,50.0894012,14.4188402,7,50.0899091,14.4209168,7,50.0857926,14.4182453,0,50.0862465,14.4179074,7,50.0861069,14.4180762,0]},"playAreaCenter":{"lat":50.0875,"lon":14.4213},"playAreaRadius":300},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":5,"serverSeq":5,"timestamp":"2026-01-27T12:21:15.5305608Z","actor":"1105a210","eventType":"PlayerLeft","payload":{"clientUuid":"1105a210","reason":"Disconnected"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":6,"serverSeq":6,"timestamp":"2026-01-27T12:21:15.5366972Z","actor":"417f8cb0","eventType":"HostChanged","payload":{"newHostId":"417f8cb0","previousHostId":"none"},"clientSeq":0,"actionId":null} +{"type":"GameEvent","eventId":7,"serverSeq":7,"timestamp":"2026-01-27T12:21:15.5421372Z","actor":"417f8cb0","eventType":"PlayerLeft","payload":{"clientUuid":"417f8cb0","reason":"Disconnected"},"clientSeq":0,"actionId":null} diff --git a/data/stats.db b/data/stats.db new file mode 100644 index 0000000..36159a8 Binary files /dev/null and b/data/stats.db differ diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..fc5abd8 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,55 @@ +# ═══════════════════════════════════════════════════════════════════════════ +# GeoSus Docker Compose +# ═══════════════════════════════════════════════════════════════════════════ +# Spuštění: docker-compose up -d +# Logy: docker-compose logs -f +# Stop: docker-compose down +# ═══════════════════════════════════════════════════════════════════════════ + +version: '3.8' + +services: + geosus-server: + build: . + container_name: geosus-server + restart: unless-stopped + + ports: + # TCP port pro herní komunikaci + - "7777:7777" + # HTTP port pro Stats API + - "8088:8088" + + volumes: + # Persist herních dat (lobby, statistiky) + - geosus-data:/app/data + # Volitelně: vlastní konfigurace + # - ./appsettings.json:/app/appsettings.json:ro + + environment: + - DOTNET_ENVIRONMENT=Production + - GEOSUS_TCP_PORT=7777 + - GEOSUS_HTTP_PORT=8088 + # Pro ladění můžeš povolit: + # - Logging__LogLevel__Default=Debug + + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8088/health"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 10s + + # Limity zdrojů (volitelné) + deploy: + resources: + limits: + cpus: '2' + memory: 512M + reservations: + cpus: '0.5' + memory: 128M + +volumes: + geosus-data: + name: geosus-data diff --git a/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/obj/Debug/net8.0/Server.AssemblyInfo.cs b/obj/Debug/net8.0/Server.AssemblyInfo.cs new file mode 100644 index 0000000..bc9d9d8 --- /dev/null +++ b/obj/Debug/net8.0/Server.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Server")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Server")] +[assembly: System.Reflection.AssemblyTitleAttribute("Server")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net8.0/Server.AssemblyInfoInputs.cache b/obj/Debug/net8.0/Server.AssemblyInfoInputs.cache new file mode 100644 index 0000000..49f8d65 --- /dev/null +++ b/obj/Debug/net8.0/Server.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +90c736faeb404bd17e67340076dc1d19aa41e7b022d0ca71cdcf518271c7ee76 diff --git a/obj/Debug/net8.0/Server.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0/Server.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ad480d7 --- /dev/null +++ b/obj/Debug/net8.0/Server.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = GeoSus.Server +build_property.RootNamespace = GeoSus.Server +build_property.ProjectDir = C:\Users\racek\Documents\GeoSus\Server\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\racek\Documents\GeoSus\Server +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/net8.0/Server.GlobalUsings.g.cs b/obj/Debug/net8.0/Server.GlobalUsings.g.cs new file mode 100644 index 0000000..c65f0a7 --- /dev/null +++ b/obj/Debug/net8.0/Server.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Debug/net8.0/Server.MvcApplicationPartsAssemblyInfo.cache b/obj/Debug/net8.0/Server.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net8.0/Server.assets.cache b/obj/Debug/net8.0/Server.assets.cache new file mode 100644 index 0000000..cdc1937 Binary files /dev/null and b/obj/Debug/net8.0/Server.assets.cache differ diff --git a/obj/Debug/net8.0/Server.csproj.AssemblyReference.cache b/obj/Debug/net8.0/Server.csproj.AssemblyReference.cache new file mode 100644 index 0000000..11d2917 Binary files /dev/null and b/obj/Debug/net8.0/Server.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net8.0/Server.csproj.BuildWithSkipAnalyzers b/obj/Debug/net8.0/Server.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net8.0/Server.csproj.CoreCompileInputs.cache b/obj/Debug/net8.0/Server.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..545c802 --- /dev/null +++ b/obj/Debug/net8.0/Server.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +057d43f28b87c26a452fd5c6948bffa761b09d4c06df4add297c5176ff33dde3 diff --git a/obj/Debug/net8.0/Server.csproj.FileListAbsolute.txt b/obj/Debug/net8.0/Server.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..00c97de --- /dev/null +++ b/obj/Debug/net8.0/Server.csproj.FileListAbsolute.txt @@ -0,0 +1,53 @@ +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\appsettings.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\Server.staticwebassets.endpoints.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\Server.exe +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\Server.deps.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\Server.runtimeconfig.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\Server.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\Server.pdb +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\SQLitePCLRaw.core.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\Server.csproj.AssemblyReference.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\rpswa.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\Server.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\Server.AssemblyInfoInputs.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\Server.AssemblyInfo.cs +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\Server.csproj.CoreCompileInputs.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\Server.MvcApplicationPartsAssemblyInfo.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\rjimswa.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\rjsmrazor.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\rjsmcshtml.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\scopedcss\bundle\Server.styles.css +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\staticwebassets.build.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\staticwebassets.build.json.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\staticwebassets.development.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\staticwebassets.build.endpoints.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\swae.build.ex.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\Server.csproj.Up2Date +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\Server.dll +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\refint\Server.dll +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\Server.pdb +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\Server.genruntimeconfig.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net8.0\ref\Server.dll diff --git a/obj/Debug/net8.0/Server.csproj.Up2Date b/obj/Debug/net8.0/Server.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net8.0/Server.dll b/obj/Debug/net8.0/Server.dll new file mode 100644 index 0000000..b6f0e15 Binary files /dev/null and b/obj/Debug/net8.0/Server.dll differ diff --git a/obj/Debug/net8.0/Server.genruntimeconfig.cache b/obj/Debug/net8.0/Server.genruntimeconfig.cache new file mode 100644 index 0000000..cba81df --- /dev/null +++ b/obj/Debug/net8.0/Server.genruntimeconfig.cache @@ -0,0 +1 @@ +7e2be2c6ef7ad8af06d3d84e211e2082c53dee50b474f134dc0c5ebd50ed51a8 diff --git a/obj/Debug/net8.0/Server.pdb b/obj/Debug/net8.0/Server.pdb new file mode 100644 index 0000000..f066030 Binary files /dev/null and b/obj/Debug/net8.0/Server.pdb differ diff --git a/obj/Debug/net8.0/apphost.exe b/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..7bcc4d7 Binary files /dev/null and b/obj/Debug/net8.0/apphost.exe differ diff --git a/obj/Debug/net8.0/ref/Server.dll b/obj/Debug/net8.0/ref/Server.dll new file mode 100644 index 0000000..0cbb3c2 Binary files /dev/null and b/obj/Debug/net8.0/ref/Server.dll differ diff --git a/obj/Debug/net8.0/refint/Server.dll b/obj/Debug/net8.0/refint/Server.dll new file mode 100644 index 0000000..0cbb3c2 Binary files /dev/null and b/obj/Debug/net8.0/refint/Server.dll differ diff --git a/obj/Debug/net8.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net8.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..577841d --- /dev/null +++ b/obj/Debug/net8.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"1uTcSHgWH86Q8v8iWh0SXFgOm4a4LSGTNfqYGaJX/0c=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["mbc1dzU/eDC1x9A7iQvzt39QOFnbTg\u002Bj4N0AwsKQjFk=","FdG5QQo5e3u5dFbM5QuaQOI1JN6n/IhB26owQ5VtCc0=","ofh4kY1O2M\u002B0IrSVjJvKGMBGT1Rd2BT3PaoUbPD7cCA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net8.0/rjsmrazor.dswa.cache.json b/obj/Debug/net8.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..ed4731b --- /dev/null +++ b/obj/Debug/net8.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"KOfKlEck+33tmoKlsD8+kGy1Qe/BI81/bLGrN1Uhpf8=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["mbc1dzU/eDC1x9A7iQvzt39QOFnbTg\u002Bj4N0AwsKQjFk=","FdG5QQo5e3u5dFbM5QuaQOI1JN6n/IhB26owQ5VtCc0=","ofh4kY1O2M\u002B0IrSVjJvKGMBGT1Rd2BT3PaoUbPD7cCA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net8.0/rpswa.dswa.cache.json b/obj/Debug/net8.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..e1b6caa --- /dev/null +++ b/obj/Debug/net8.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"3oSNzQTwYvH9K0OY5IuqKC/CfvmjyxsBLcbGtCLxQ/U=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["mbc1dzU/eDC1x9A7iQvzt39QOFnbTg\u002Bj4N0AwsKQjFk="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net8.0/staticwebassets.build.endpoints.json b/obj/Debug/net8.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/obj/Debug/net8.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/obj/Debug/net8.0/staticwebassets.build.json b/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..1baa7cd --- /dev/null +++ b/obj/Debug/net8.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"ksAQLj6u35t97JRxvZfK6gXmiNFMYDIBNC+hPai0Elw=","Source":"Server","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/obj/Debug/net8.0/staticwebassets.build.json.cache b/obj/Debug/net8.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..0eb0085 --- /dev/null +++ b/obj/Debug/net8.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +ksAQLj6u35t97JRxvZfK6gXmiNFMYDIBNC+hPai0Elw= \ No newline at end of file diff --git a/obj/Debug/net8.0/staticwebassets.references.upToDateCheck.txt b/obj/Debug/net8.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net8.0/staticwebassets.removed.txt b/obj/Debug/net8.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net8.0/swae.build.ex.cache b/obj/Debug/net8.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/obj/Debug/net9.0/Server.AssemblyInfo.cs b/obj/Debug/net9.0/Server.AssemblyInfo.cs new file mode 100644 index 0000000..3b1dc14 --- /dev/null +++ b/obj/Debug/net9.0/Server.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Server")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7adee0231fb397631e0040edccc32eb8f452a94d")] +[assembly: System.Reflection.AssemblyProductAttribute("Server")] +[assembly: System.Reflection.AssemblyTitleAttribute("Server")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net9.0/Server.AssemblyInfoInputs.cache b/obj/Debug/net9.0/Server.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d09e22a --- /dev/null +++ b/obj/Debug/net9.0/Server.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +37b8496d46852d8f09447aea60aadf8416cb37daa930c67c4b964eee4356f2f1 diff --git a/obj/Debug/net9.0/Server.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/Server.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d0fcbaf --- /dev/null +++ b/obj/Debug/net9.0/Server.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = GeoSus.Server +build_property.RootNamespace = GeoSus.Server +build_property.ProjectDir = C:\Users\racek\Documents\GeoSus\Server\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\racek\Documents\GeoSus\Server +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/net9.0/Server.GlobalUsings.g.cs b/obj/Debug/net9.0/Server.GlobalUsings.g.cs new file mode 100644 index 0000000..c65f0a7 --- /dev/null +++ b/obj/Debug/net9.0/Server.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Debug/net9.0/Server.MvcApplicationPartsAssemblyInfo.cache b/obj/Debug/net9.0/Server.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net9.0/Server.assets.cache b/obj/Debug/net9.0/Server.assets.cache new file mode 100644 index 0000000..c631713 Binary files /dev/null and b/obj/Debug/net9.0/Server.assets.cache differ diff --git a/obj/Debug/net9.0/Server.csproj.AssemblyReference.cache b/obj/Debug/net9.0/Server.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d0d436d Binary files /dev/null and b/obj/Debug/net9.0/Server.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net9.0/Server.csproj.BuildWithSkipAnalyzers b/obj/Debug/net9.0/Server.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net9.0/Server.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/Server.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..844fee0 --- /dev/null +++ b/obj/Debug/net9.0/Server.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b7735049e5229289927c36e403155416e92195a262fbc7f9247cfe1fcf106e2a diff --git a/obj/Debug/net9.0/Server.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/Server.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e7315c3 --- /dev/null +++ b/obj/Debug/net9.0/Server.csproj.FileListAbsolute.txt @@ -0,0 +1,88 @@ +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\appsettings.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\Server.staticwebassets.endpoints.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\Server.exe +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\Server.deps.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\Server.runtimeconfig.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\Server.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\Server.pdb +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\Microsoft.Data.Sqlite.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\SQLitePCLRaw.batteries_v2.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\SQLitePCLRaw.core.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\SQLitePCLRaw.provider.e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\browser-wasm\nativeassets\net9.0\e_sqlite3.a +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-arm\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-armel\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-musl-s390x\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-s390x\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-x64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\linux-x86\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\win-arm\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\win-arm64\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\win-x64\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\runtimes\win-x86\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\Server.csproj.AssemblyReference.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\rpswa.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\Server.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\Server.AssemblyInfoInputs.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\Server.AssemblyInfo.cs +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\Server.csproj.CoreCompileInputs.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\Server.MvcApplicationPartsAssemblyInfo.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\rjimswa.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\rjsmrazor.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\scopedcss\bundle\Server.styles.css +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\staticwebassets.build.json.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\swae.build.ex.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\Server.csproj.Up2Date +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\Server.dll +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\refint\Server.dll +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\Server.pdb +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\Server.genruntimeconfig.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Debug\net9.0\ref\Server.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\6772d80dd8a44352_20260127113711\snapshot_12.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\0ef46de0570a4be6_20260127134127\snapshot_12.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\27685b18526d4ce5_20260127133627\snapshot_7.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\34d8737b80434782_20260127133627\snapshot_12.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\5d096533c3094eaa_20260127133127\snapshot_51.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\6af233ecf68b4434_20260127134127\snapshot_4.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\6dba8c0edbe7490d_20260127134127\snapshot_12.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\74771a6153544040_20260127134127\snapshot_7.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\7da1c15116fc4fbc_20260127133627\snapshot_7.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\7f234630f0d3470c_20260127134127\snapshot_51.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\8da0b3e582444daf_20260127134127\snapshot_7.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\9f07a2d91db949ad_20260127133127\snapshot_7.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\a16bac8d99e74830_20260127134127\snapshot_12.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\b9cffa33b9264559_20260127133627\snapshot_11.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\cf3be038c5a3472e_20260127134127\snapshot_7.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\d3e8a657109144ce_20260127133627\snapshot_7.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\dc41c9d596db4946_20260127134127\snapshot_12.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\df5878e2914a4104_20260127133627\snapshot_12.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\archive\e52ea7e70f9c4475_20260127133127\snapshot_12.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\578a2e6234924b7e\snapshot_8.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\79b0a3695df748e9\snapshot_15.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\92a59e40e47f46a4\snapshot_24.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\8d4e9da599f54808\snapshot_24.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\8d4e9da599f54808\snapshot_38.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\2e22bb042f2f4bbe\snapshot_22.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\ce407ba2a282475a\snapshot_23.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\2c50d55476084b56\snapshot_12.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\525fa8b4d76a42ed\snapshot_18.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\6dc0701887224f6c\snapshot_29.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\5e6dc2f6267b4a23\snapshot_49.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\5e6dc2f6267b4a23\snapshot_97.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\2648919f382c41c5\snapshot_59.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\c20295d1ca0241b3\snapshot_39.json +C:\Users\racek\Documents\GeoSus\Server\bin\Debug\net9.0\data\lobbies\833e71c1c6c64572\snapshot_41.json diff --git a/obj/Debug/net9.0/Server.csproj.Up2Date b/obj/Debug/net9.0/Server.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net9.0/Server.dll b/obj/Debug/net9.0/Server.dll new file mode 100644 index 0000000..5f87c8a Binary files /dev/null and b/obj/Debug/net9.0/Server.dll differ diff --git a/obj/Debug/net9.0/Server.genruntimeconfig.cache b/obj/Debug/net9.0/Server.genruntimeconfig.cache new file mode 100644 index 0000000..0d72881 --- /dev/null +++ b/obj/Debug/net9.0/Server.genruntimeconfig.cache @@ -0,0 +1 @@ +31d7862c48afe2c54c3ba5e12d1516d9de656b02baa1621fcdbe82d7ba135138 diff --git a/obj/Debug/net9.0/Server.pdb b/obj/Debug/net9.0/Server.pdb new file mode 100644 index 0000000..6410722 Binary files /dev/null and b/obj/Debug/net9.0/Server.pdb differ diff --git a/obj/Debug/net9.0/apphost.exe b/obj/Debug/net9.0/apphost.exe new file mode 100644 index 0000000..9fd4211 Binary files /dev/null and b/obj/Debug/net9.0/apphost.exe differ diff --git a/obj/Debug/net9.0/ref/Server.dll b/obj/Debug/net9.0/ref/Server.dll new file mode 100644 index 0000000..f6077bd Binary files /dev/null and b/obj/Debug/net9.0/ref/Server.dll differ diff --git a/obj/Debug/net9.0/refint/Server.dll b/obj/Debug/net9.0/refint/Server.dll new file mode 100644 index 0000000..f6077bd Binary files /dev/null and b/obj/Debug/net9.0/refint/Server.dll differ diff --git a/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..e838515 --- /dev/null +++ b/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"1uTcSHgWH86Q8v8iWh0SXFgOm4a4LSGTNfqYGaJX/0c=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["2ucpj4\u002BWHhVjGXbWfwRYupeeJTrSoPqz3q1XydNqMY8=","dageDQcTmV4iRVud7WCs6M3DF6bnSOMD\u002B5EAbfE/GsI=","QhVsA8tZpSszWoFBxgOPrCVCLQeBz4AUpLM328TYxaw=","0mJP0sb3yxs6a\u002Bqgl1dSMvm//NFmXHDuxzVKABBIGEg=","0B7YrL7qd7yO8k0ubo0OVc1q1UElkVJ0tbxgwfFP54c=","V2ihhSUcyk/CM5Rh72qwMhT7dH/BJvpEKNyN592o/Gw=","s8kJ/nXRGz2Z7skl0WWhTb8CVFM7BVh5lLDizNKVkuc=","oAEpolgp2wM7g2UtDld29xfUizWHssW4sUyCyw2mKts=","RYSEAwpbBA5dEkHK9Qhuk3PuAgnSZtZXzKc65aZNwgA=","I1LMZaExmVzGkfAhqEWIY5ZFi/CuVF/Z3rPVSxe5O3A=","EvzuXArZIOinvSEowiRGjWfbCi5Zby8Ath9dCJXodSE=","AXbxBXuSye84gb023Dqu/u8uokCRAxtFONmGnKxKJkI=","k\u002B4eneTbId4eA9gp4qpQJnt5dCvuesknpckQODjwHfE=","o3tNgfBY5rnFEUkHzc\u002BUxH31xGma1PFMwMvVaI0h/3U=","KoUTADkDSJZnYrcAP2CJCIuxHgbo/ADF7DdpYV6GKBE=","OuL19\u002BCJvnxafSMWLFcufvRM1lb/ZmvzrOuyb1dJG08=","6aMc0KOl/687M5q47YSY4hxqxDgkM\u002Bw07b7\u002BBA6Sjkg=","wygW4WZ/8pX3l\u002BVnPWc23c13P0P6yClZHotR4Xc/McM=","oU6t8TL5ldy5Ul6M29Z2lSPb/WFywCr9ntCfjHOrLIs=","gI2XaocMT0d\u002BMibT50cTluU0aGjTp/\u002BO3hnVxsObjsE=","C56ikJ2wLOgq3qXEXGuHBE/rocD9d\u002BKq\u002BySD0aQO\u002BfU=","dhalqmZazM5R4nE7t\u002BQYun7gDWKPAsxkfpaJd77d8kE=","gA\u002BNupU0Sdi1uH27dbQwMNm8wN/ca1nyaQz5GXyQPj4=","XHaOZwH5EuUnqIeokPjxTqx2IAix9sBVVCjs0QeCEyM=","eWD6GsuI6DzTQ53Z5xEWhLZYpiGwRqj8GrAdSc6e9yk=","gHx2d/5HGL\u002BS1ZIZZUP3QoIW40n8lxwO6qKbPvH01AM=","qINMGq0gkvgFzO6WXwcWElGKff1igjFfEl9c5jcrriI=","USc9hAtZAKNvvqqd2EvJyWp66tc6l60HkoXAOXmSDSM=","g68ZZ\u002BZpp9jKzP4PEubuT1v5pRffH9L6802L1bUan7k=","5L3D6DBjtILlnyV0YA092ACsFlySho0vLEDaDZFjmSY=","vcfjvhELRE7VzI7ad\u002BUIF05awgts0KsafRmSImEm2UI=","0IaYI//F4Xj7SRuTt/o6n6p7bQLB1vDdlrnsJVyLkEA=","0Z2pXdEC91JgKLQim3vpnxToe1UEmdflTCQfQ6m7v6I=","XFVoZfztuYe42dLLMYtRe\u002BCwOgNsVSfzxN3apHAfqjw=","p85npebsCcjRlbgmexr4nXd7AnQLSvJ3G\u002BI7prLthto=","UrIQVvqeuuIW\u002B7cjiJUA5Z\u002BA/yogQq85sB4EZRxu2fQ=","7awDJxoU6y4Spl7bnd4Pit1BKcTtkEkgpk5gJMnF\u002B3w=","oUal3rp2AlGCg2ySfPVheaeIz0qZcAo2l0RLb71L1XU=","6Gt2z3dXVaD76qPsG0joMm5\u002BzJtleeobS/NKqfXTaWQ=","7wZHLvoWWw0E8Yygygj4FO9XBPLt4RF7ZKz\u002BMTLkB/c=","0aVHNCpi55tKau\u002BRhALHOaW1aACRVbgndslXQQ3qIzo=","XGTl\u002BOKWhbgSFYoIs/y2ldWK1PUT3dCP0nGMLIyqsrQ=","udmVsseEr/H9Mv6W\u002BkCu6ny\u002BQTy6ljPUOcxYP9C627c=","n81lCcEcMk1REFDrA8Gv/D\u002Bu/Zlfl6thoWcu8tUl8\u002Bk=","ZokN8Nq5QZtLH\u002BZc7A\u002BP4fojvneBI1lz37efBVuIELo=","HYRUHL0N9owL7AIG7bSSvG0W4wLWfb4ypSvuh/u4hhE=","MZXE2e5CeYUBoXPQm4Mr99Lz1a3j\u002Becgzma2JWEMOaM=","uERg69BMVUFfIyaEodE2WQKugWY/citkmGH08MhmQuo=","Bf5HYI5PMnHanqWLp9AKi0\u002BELCBPSFYXneBQitEYHac=","/ptKNI\u002BkZeZLHN/k3ajm9BeUfEhqJj4o3PaRoyy2fvU=","gy0BtqtoEN7Lz7WvYy1Q50l28LrEAKF5qkNx6BI9aHs=","/I1Pc1Jn6dA4gsx8xTeraPOmpAXoCqgwjNm9LL6S71E=","yGbfddfyP5alVbiYBIie3cJ\u002BQAXPy59pZlm3c796pfk=","7kw5vMg9JiSeReRPdcBhzLzhytQq1UhnAQIZSUZrGQU=","bWwqi1EO7q3gpNEB3zt9Zbd0m\u002BXwPL/evWv29I2OnYw=","UksXA7g/wN9NiO0EoUhycx09t7qB/14y/uNWi8HhbkU=","4sqH\u002Bjg4gzcUaP2GCheQQ281PWW3jYyYEbR9Op70Yt4=","7vUi5Q8oS2LyXupFYSxYwL9Vlwh7t4WXgy4wgU5HOIo=","3UTITzSa1Se2prNgLyJyEfRS0wJNP6FJy3bMNr/Qycg=","oVnUYuME/\u002B0UFJVsA8/2Mqta6UfkphJYuXXI2nsMVRE=","WVapNJHVmrPccysKk2T9ifTHcpG00H2MJmTZwoLzRYc=","gCXc0r8gqrgivp5DsK4lNfqZ3FaL00U/wlwXCPfQODQ=","VBeWwDV584YTpMUIUw\u002BMG346muh8aqJN3I8jVm5n2UQ=","QxVK3srK9OsPAiwlm2op68BRI0gnLYkIOfT3DGMH8Zc=","o5Srh0\u002BlUIIaSAcB5FsgMDj75VmUpIS2veVSKeXTqnU=","mDi\u002BwbrCb3KBL1yW08/Ekta\u002BVQ0Orcc5VRWH7XhwNUI=","Cd8JV73EBJPbDsBVC9wo7LVEaVd4s/PTkfohd/FNddQ=","JSAf8m\u002B4hrEyTIwGpw0eN4Fgy9zcCEFesu7akddmmIo=","KQ4roUao2ctlfNF01dDiIgo1yLTzWoGj9q9970JspXs=","5V6imQHo0IQi8ByFBmZz/NUvq0UywBRDKviKKdfyYzY=","1Zwui2foqEkJIH9nJz/bIJpiuYvgCRPpd0Uf5v7SKqM=","RouEBijQ\u002B13jb2AyWdgQ77uquE53gczgYgvuZbKxrVE=","y5qAFTnPLqMxwBIHhQH9gMnKZM4ai14JjcXx1fJ4nFg=","8vO4hSPXjq4F8/tbMs6QmVGBemPCIWYUINztil72ef8=","FGppPwlaG69qgrs91b8iRM7lJKaHmEdoRsWstdeYbYU=","Rcep1roHiICKwg1ZlPLqlvYdUtdg3KxJCZ4\u002B/gFwgHc=","4PM45jqIizH5y/FOxS7EcCcCAsOU6FeqCxrb2Pns6Ns=","/RgC0mennpyONiYzIpLvhNpUguXHBXMVH2Mqzmu03z8=","U0tG7lOMohDTi9bdDH7s2uM4D0\u002BEN5Pb3JHquo3XmhU=","lhXtXiLJP4FeM145mEYuj0qVhHyKMyHt92Aypw3AEgk=","TVefMKZqyH\u002B\u002BhxBFKzyiBFS2wLhlOyzA8uHNEqNV2PQ=","xUt2azGJuvfhIeigtF1Ze9L8ALS9bBPLDoy7mVCe5f8=","A4\u002ByPotYO2NSduOlmILrzF3es8HCdKCBSxlCAb2rQEw=","xPPP3NKR51zDDP6voSvWBeElR/qYkDgX6yfnY0D8eNM=","Cih1s93V3nSX7TGNFCsQDV2VDERn0vYtNKSPbXLj2fw=","1lXKukmj\u002BsiAdMhWRsjNlEmft0W27OyA4j0aDrA/kps=","9GaNLmgwix6FhKOgMQnxFLLuTr0MaKu13/d18fzg7jo=","x0Abn9Tz28GsE6gPioPOs710/Sl2hCrEMv73Q0eXpik=","nGuhChao51BIYqh5AwhuTNpWNpku2bglzKAhklLJT9c=","xIwYeJbHK70LPDwZLAk7sq9RiYa9mg6lIoX9DTp6Nv0=","\u002BqkYhW9qZb/hdzq8t/eAiAFs3AiHGwdWbOpXhU\u002BSWsI=","UsXbhnuu\u002BP\u002BGM9XHWInDV\u002BGlJUQiVKkPJacNfsySifE=","TggWBXz5SD4Ig1Mg5b3MMgRaYcMXZNClk9Bffd\u002B7r2k=","FOjxmJ9qG678W41FE41KaNR\u002BAQCR20LHfj86XTtjb7U=","PmxKgaAWYiU/Egq4IdufEu2gKiZfaw6NLswgtRZXgqQ=","iRpKsuyoFHhZ7OB9WQVeN7CJ\u002BKt0FTfi9sx7PwMQHRg=","gqgBjMRVmNfNQ0w9elegzI2SAjkTqW8ZyTt3ee66UIU=","06i6HfrDZcBHuQQoPXZkaDBcs23eYKQFae3kWM5K9jY=","28sArDEgJI5tF\u002BkjdHnwMBpFDgV2Atm/ik\u002BY1ih0yPg=","IMAR7fWwlArR7uXRvmNnK3kzk7rBPUYZSiedR3O/uj8=","4pOejGuE0NEnkaiUBQQHqwwSAoOFfDVaI6vImFQ96Bc=","pTdG5rRRV1MOoFOqJ7O9cLrwNWao5l/6R8jwUSUDJUI=","gwG7lKEjiWE3xL5UH4Xr3FYDdCt24Xum\u002ByfvG/eZYx8=","s6a8vl4SZA7EFaVJ0/kStXGTkL2HrPu9s/5P0d\u002B3KII=","0Iur54/f/GpMR1aFDr9uI5QYEsL4oDeP4sPGCSN5NZE=","rDAT1D/bpyDut9jelzEmWAMRfUvQZOhFkWib63jN7a8=","o3mTgMg6lBwMKWxY9Kj7tFtH1kwJvaUcbQ0H5xQ6PEw=","xH3SNqFtu9Pvj67w4VqdOnJbExnCMejbBL7noo2s/xk=","jwqE4sXTlkTyHgyeZLzbBCc2eqqa7APkTmazY2ooYp0=","45wM8MOU5f4PG4fGCkMSWDEtdWEk0hv9LdP55nxiNIk=","5I/1HjEXDYy/rOA3dvsUhye0GNu9r0JqAXlA3G2Qsz0=","lOMHUqRO2m9eyLLiaXb4xe5O1SXiICAcgccpx031GIo=","nra\u002BEyYMQd\u002Bea\u002BikrLZ0mgk/C9sAPnSQResYWaKBf58=","qKIcb2sXzVOAMFMQu8EPQkj77GzbXtijDWyWyZyepzg=","Sh1IQYg7eg2b2eVCNk59EnNwyCFElr4mc7v19x\u002Byfm8=","J9HnZh3UixAZcI5/isIQzvm9GHH8IS9TGj74Ss4Smhk=","ZLWavqwl58TX208p6zNDoRlHnwSRTC6hxMCjQd1r0X4=","\u002B5\u002B0WSu7fBki6\u002B\u002BFZs36\u002BU3w2E3tN7P7aemvxy8kbVw=","xAU\u002BUPzJEXWZntFR9eKM2kQQA16JF9JZZ69wIvuWCVc=","AkdC5goFMZJXujnnAUM6g\u002BOcmGCf8q\u002BCEe\u002B0dZ0krJQ=","7EugNFh5MbXneZDluw\u002BwzGEl8pVXe1u\u002BFgfsFl8CqPA=","QpbImeiwKqJZcCJ9WUM0yUg8elLGOJLfGzT71jsBfoE=","QimH45QyFMwpML/yjUoXzGacURAPyk7gjvifRxWbI0Q=","y5wYksgm0vTA73yx4bnUiEt6Mp98BBCdZg8itgR1ibU=","TZKOAX33sGDSW\u002BcZxyqWXmOPfHcvFFfmC\u002BMAMS/ZFUQ=","Gt2tQMj5AexLM9PphcXJx1F5YnuY0UfQFIcuLtcb0sA=","pnIk9vkhRb5VzHV8E9KCW11KTS5gSXoKjTG1HEk/4Eg=","lpW5/o0ASRdYmcpcd9w2EwSbhWPRc/uRnCgu1VBJH58=","ZnEqeoQvub0T8IokqY00OolPzUyQyQyHF0aNzQKU6nA=","vjEMujqbQJsAvuguSjwnURm8rHrQD2/XasS\u002BHFyi3Zg=","yE2KtgZ1eAQrPUom/GCSfrs9L0jXPYNBV5FA6OjoupU=","7wk2rjI/amookKwPspkfh/liQjLDZ7\u002B/Zc6Kguoy6Os=","3CpoTrpkdq9\u002Bmx9xInwN4yekbOTFERkI2dkAhXWi3p0=","Ckt31te4svikGlw99h34vdK48WmU7Y/3CZ2tb1NPz1c=","Wg65rIMfLtU2d4c7mB1tAq9upJZWmHUQXRawjn0KkCg=","G2RY3TQq6qNvR84xwhKtxpt49\u002BiiYvA7cqTXy/EywZg=","OvFc4AaocoXcYpx3QZ5eYg8OXaMPfNHx43Fc1sWQTVs=","C\u002BE4HjEI\u002BGOAUpppIIoFYx78YWatqGB\u002BBwRKGOTMJ0o=","xYul36XgtS66wDQMBdweiHKrAt1emOdlq20wm3R4YJM=","dFpWewfvgjp/NsgW1Mq5hbGH42wxDi9tWQ5kA5fMQNg=","e9gXhRQik/HhzF6ukztqUGOHbP9pdJFYIoy1IDbPK7Y=","Mt6RiJPMNpXbfX0XpAG3FuNnm1xke/2ucHIOMIcf3\u002Bo=","NNk0a0oNh21C466qH/5Y8pI8jIekb7ER4cY7VMnPPDE=","gKVOjHTScaD\u002Bu1PbX13vYAS0p4doPTy5pDIzUYq6BGU=","Egn5OHw5KM/X5SQNQT02g2HbsXOJTFVWHObmrxSUxfI=","DVvXy2AmWkgUjtTYaQ2p/nE8vUVQEYCqfBp3B9DuqMk=","f2VGIy9UXsxpKGbqVumAal5dVd8L\u002B0/QQpw9ziqJzlg=","l7x44oU/CXoDaI15IeyzkcPPN7oOgEQ/dLQh86SJR84=","3fg9gLTbDQllDZQprzzFM6U/mBsc2R7Dw8jJqzkImkQ=","E7dexWDAOUfbPyoMGsX01Ql43VU7SrjoE1ibbqkG8hA=","1w/qBfrCuneB43VYISzIMyixdEFkCOlquGXt7NMJDl4=","4\u002BrwAW81Sd7hBdi10Mw\u002BvR8WtrlIzOcJ6HpL/JSP3Eo=","MlixkDG5VrET30U8bB/\u002BHkfU7s4nC74oYusvkD3qtuw=","7byy7AX3k4P4OOXFaQTdRae6JttL6alc8PpMgIL0D60=","\u002B8roCWkxk6wQEmVGpyg\u002B9te7iKc3IO1\u002BAI1b0/z7vEg=","NORxIbGuwlBo1i0SHcQwKvsHvVaAH8dQY41diiTL8r8=","Qs0nL2H9sOu\u002Bmh1kbA2MHXiRCgFJRftg3iF6fhoAfeA=","FdG5QQo5e3u5dFbM5QuaQOI1JN6n/IhB26owQ5VtCc0=","sPqL\u002BPnFGVZOWMkgflyyQBZGHbfHC2pRBkzedSihWoM="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/obj/Debug/net9.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..3b7385d --- /dev/null +++ b/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"KOfKlEck+33tmoKlsD8+kGy1Qe/BI81/bLGrN1Uhpf8=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["2ucpj4\u002BWHhVjGXbWfwRYupeeJTrSoPqz3q1XydNqMY8=","dageDQcTmV4iRVud7WCs6M3DF6bnSOMD\u002B5EAbfE/GsI=","QhVsA8tZpSszWoFBxgOPrCVCLQeBz4AUpLM328TYxaw=","0mJP0sb3yxs6a\u002Bqgl1dSMvm//NFmXHDuxzVKABBIGEg=","0B7YrL7qd7yO8k0ubo0OVc1q1UElkVJ0tbxgwfFP54c=","V2ihhSUcyk/CM5Rh72qwMhT7dH/BJvpEKNyN592o/Gw=","s8kJ/nXRGz2Z7skl0WWhTb8CVFM7BVh5lLDizNKVkuc=","oAEpolgp2wM7g2UtDld29xfUizWHssW4sUyCyw2mKts=","RYSEAwpbBA5dEkHK9Qhuk3PuAgnSZtZXzKc65aZNwgA=","I1LMZaExmVzGkfAhqEWIY5ZFi/CuVF/Z3rPVSxe5O3A=","EvzuXArZIOinvSEowiRGjWfbCi5Zby8Ath9dCJXodSE=","AXbxBXuSye84gb023Dqu/u8uokCRAxtFONmGnKxKJkI=","k\u002B4eneTbId4eA9gp4qpQJnt5dCvuesknpckQODjwHfE=","o3tNgfBY5rnFEUkHzc\u002BUxH31xGma1PFMwMvVaI0h/3U=","KoUTADkDSJZnYrcAP2CJCIuxHgbo/ADF7DdpYV6GKBE=","OuL19\u002BCJvnxafSMWLFcufvRM1lb/ZmvzrOuyb1dJG08=","6aMc0KOl/687M5q47YSY4hxqxDgkM\u002Bw07b7\u002BBA6Sjkg=","wygW4WZ/8pX3l\u002BVnPWc23c13P0P6yClZHotR4Xc/McM=","oU6t8TL5ldy5Ul6M29Z2lSPb/WFywCr9ntCfjHOrLIs=","gI2XaocMT0d\u002BMibT50cTluU0aGjTp/\u002BO3hnVxsObjsE=","C56ikJ2wLOgq3qXEXGuHBE/rocD9d\u002BKq\u002BySD0aQO\u002BfU=","dhalqmZazM5R4nE7t\u002BQYun7gDWKPAsxkfpaJd77d8kE=","gA\u002BNupU0Sdi1uH27dbQwMNm8wN/ca1nyaQz5GXyQPj4=","XHaOZwH5EuUnqIeokPjxTqx2IAix9sBVVCjs0QeCEyM=","eWD6GsuI6DzTQ53Z5xEWhLZYpiGwRqj8GrAdSc6e9yk=","gHx2d/5HGL\u002BS1ZIZZUP3QoIW40n8lxwO6qKbPvH01AM=","qINMGq0gkvgFzO6WXwcWElGKff1igjFfEl9c5jcrriI=","USc9hAtZAKNvvqqd2EvJyWp66tc6l60HkoXAOXmSDSM=","g68ZZ\u002BZpp9jKzP4PEubuT1v5pRffH9L6802L1bUan7k=","5L3D6DBjtILlnyV0YA092ACsFlySho0vLEDaDZFjmSY=","vcfjvhELRE7VzI7ad\u002BUIF05awgts0KsafRmSImEm2UI=","0IaYI//F4Xj7SRuTt/o6n6p7bQLB1vDdlrnsJVyLkEA=","0Z2pXdEC91JgKLQim3vpnxToe1UEmdflTCQfQ6m7v6I=","XFVoZfztuYe42dLLMYtRe\u002BCwOgNsVSfzxN3apHAfqjw=","p85npebsCcjRlbgmexr4nXd7AnQLSvJ3G\u002BI7prLthto=","UrIQVvqeuuIW\u002B7cjiJUA5Z\u002BA/yogQq85sB4EZRxu2fQ=","7awDJxoU6y4Spl7bnd4Pit1BKcTtkEkgpk5gJMnF\u002B3w=","oUal3rp2AlGCg2ySfPVheaeIz0qZcAo2l0RLb71L1XU=","6Gt2z3dXVaD76qPsG0joMm5\u002BzJtleeobS/NKqfXTaWQ=","7wZHLvoWWw0E8Yygygj4FO9XBPLt4RF7ZKz\u002BMTLkB/c=","0aVHNCpi55tKau\u002BRhALHOaW1aACRVbgndslXQQ3qIzo=","XGTl\u002BOKWhbgSFYoIs/y2ldWK1PUT3dCP0nGMLIyqsrQ=","udmVsseEr/H9Mv6W\u002BkCu6ny\u002BQTy6ljPUOcxYP9C627c=","n81lCcEcMk1REFDrA8Gv/D\u002Bu/Zlfl6thoWcu8tUl8\u002Bk=","ZokN8Nq5QZtLH\u002BZc7A\u002BP4fojvneBI1lz37efBVuIELo=","HYRUHL0N9owL7AIG7bSSvG0W4wLWfb4ypSvuh/u4hhE=","MZXE2e5CeYUBoXPQm4Mr99Lz1a3j\u002Becgzma2JWEMOaM=","uERg69BMVUFfIyaEodE2WQKugWY/citkmGH08MhmQuo=","Bf5HYI5PMnHanqWLp9AKi0\u002BELCBPSFYXneBQitEYHac=","/ptKNI\u002BkZeZLHN/k3ajm9BeUfEhqJj4o3PaRoyy2fvU=","gy0BtqtoEN7Lz7WvYy1Q50l28LrEAKF5qkNx6BI9aHs=","/I1Pc1Jn6dA4gsx8xTeraPOmpAXoCqgwjNm9LL6S71E=","yGbfddfyP5alVbiYBIie3cJ\u002BQAXPy59pZlm3c796pfk=","7kw5vMg9JiSeReRPdcBhzLzhytQq1UhnAQIZSUZrGQU=","bWwqi1EO7q3gpNEB3zt9Zbd0m\u002BXwPL/evWv29I2OnYw=","UksXA7g/wN9NiO0EoUhycx09t7qB/14y/uNWi8HhbkU=","4sqH\u002Bjg4gzcUaP2GCheQQ281PWW3jYyYEbR9Op70Yt4=","7vUi5Q8oS2LyXupFYSxYwL9Vlwh7t4WXgy4wgU5HOIo=","3UTITzSa1Se2prNgLyJyEfRS0wJNP6FJy3bMNr/Qycg=","oVnUYuME/\u002B0UFJVsA8/2Mqta6UfkphJYuXXI2nsMVRE=","WVapNJHVmrPccysKk2T9ifTHcpG00H2MJmTZwoLzRYc=","gCXc0r8gqrgivp5DsK4lNfqZ3FaL00U/wlwXCPfQODQ=","VBeWwDV584YTpMUIUw\u002BMG346muh8aqJN3I8jVm5n2UQ=","QxVK3srK9OsPAiwlm2op68BRI0gnLYkIOfT3DGMH8Zc=","o5Srh0\u002BlUIIaSAcB5FsgMDj75VmUpIS2veVSKeXTqnU=","mDi\u002BwbrCb3KBL1yW08/Ekta\u002BVQ0Orcc5VRWH7XhwNUI=","Cd8JV73EBJPbDsBVC9wo7LVEaVd4s/PTkfohd/FNddQ=","JSAf8m\u002B4hrEyTIwGpw0eN4Fgy9zcCEFesu7akddmmIo=","KQ4roUao2ctlfNF01dDiIgo1yLTzWoGj9q9970JspXs=","5V6imQHo0IQi8ByFBmZz/NUvq0UywBRDKviKKdfyYzY=","1Zwui2foqEkJIH9nJz/bIJpiuYvgCRPpd0Uf5v7SKqM=","RouEBijQ\u002B13jb2AyWdgQ77uquE53gczgYgvuZbKxrVE=","y5qAFTnPLqMxwBIHhQH9gMnKZM4ai14JjcXx1fJ4nFg=","8vO4hSPXjq4F8/tbMs6QmVGBemPCIWYUINztil72ef8=","FGppPwlaG69qgrs91b8iRM7lJKaHmEdoRsWstdeYbYU=","Rcep1roHiICKwg1ZlPLqlvYdUtdg3KxJCZ4\u002B/gFwgHc=","4PM45jqIizH5y/FOxS7EcCcCAsOU6FeqCxrb2Pns6Ns=","/RgC0mennpyONiYzIpLvhNpUguXHBXMVH2Mqzmu03z8=","U0tG7lOMohDTi9bdDH7s2uM4D0\u002BEN5Pb3JHquo3XmhU=","lhXtXiLJP4FeM145mEYuj0qVhHyKMyHt92Aypw3AEgk=","TVefMKZqyH\u002B\u002BhxBFKzyiBFS2wLhlOyzA8uHNEqNV2PQ=","xUt2azGJuvfhIeigtF1Ze9L8ALS9bBPLDoy7mVCe5f8=","A4\u002ByPotYO2NSduOlmILrzF3es8HCdKCBSxlCAb2rQEw=","xPPP3NKR51zDDP6voSvWBeElR/qYkDgX6yfnY0D8eNM=","Cih1s93V3nSX7TGNFCsQDV2VDERn0vYtNKSPbXLj2fw=","1lXKukmj\u002BsiAdMhWRsjNlEmft0W27OyA4j0aDrA/kps=","9GaNLmgwix6FhKOgMQnxFLLuTr0MaKu13/d18fzg7jo=","x0Abn9Tz28GsE6gPioPOs710/Sl2hCrEMv73Q0eXpik=","nGuhChao51BIYqh5AwhuTNpWNpku2bglzKAhklLJT9c=","xIwYeJbHK70LPDwZLAk7sq9RiYa9mg6lIoX9DTp6Nv0=","\u002BqkYhW9qZb/hdzq8t/eAiAFs3AiHGwdWbOpXhU\u002BSWsI=","UsXbhnuu\u002BP\u002BGM9XHWInDV\u002BGlJUQiVKkPJacNfsySifE=","TggWBXz5SD4Ig1Mg5b3MMgRaYcMXZNClk9Bffd\u002B7r2k=","FOjxmJ9qG678W41FE41KaNR\u002BAQCR20LHfj86XTtjb7U=","PmxKgaAWYiU/Egq4IdufEu2gKiZfaw6NLswgtRZXgqQ=","iRpKsuyoFHhZ7OB9WQVeN7CJ\u002BKt0FTfi9sx7PwMQHRg=","gqgBjMRVmNfNQ0w9elegzI2SAjkTqW8ZyTt3ee66UIU=","06i6HfrDZcBHuQQoPXZkaDBcs23eYKQFae3kWM5K9jY=","28sArDEgJI5tF\u002BkjdHnwMBpFDgV2Atm/ik\u002BY1ih0yPg=","IMAR7fWwlArR7uXRvmNnK3kzk7rBPUYZSiedR3O/uj8=","4pOejGuE0NEnkaiUBQQHqwwSAoOFfDVaI6vImFQ96Bc=","pTdG5rRRV1MOoFOqJ7O9cLrwNWao5l/6R8jwUSUDJUI=","gwG7lKEjiWE3xL5UH4Xr3FYDdCt24Xum\u002ByfvG/eZYx8=","s6a8vl4SZA7EFaVJ0/kStXGTkL2HrPu9s/5P0d\u002B3KII=","0Iur54/f/GpMR1aFDr9uI5QYEsL4oDeP4sPGCSN5NZE=","rDAT1D/bpyDut9jelzEmWAMRfUvQZOhFkWib63jN7a8=","o3mTgMg6lBwMKWxY9Kj7tFtH1kwJvaUcbQ0H5xQ6PEw=","xH3SNqFtu9Pvj67w4VqdOnJbExnCMejbBL7noo2s/xk=","jwqE4sXTlkTyHgyeZLzbBCc2eqqa7APkTmazY2ooYp0=","45wM8MOU5f4PG4fGCkMSWDEtdWEk0hv9LdP55nxiNIk=","5I/1HjEXDYy/rOA3dvsUhye0GNu9r0JqAXlA3G2Qsz0=","lOMHUqRO2m9eyLLiaXb4xe5O1SXiICAcgccpx031GIo=","nra\u002BEyYMQd\u002Bea\u002BikrLZ0mgk/C9sAPnSQResYWaKBf58=","qKIcb2sXzVOAMFMQu8EPQkj77GzbXtijDWyWyZyepzg=","Sh1IQYg7eg2b2eVCNk59EnNwyCFElr4mc7v19x\u002Byfm8=","J9HnZh3UixAZcI5/isIQzvm9GHH8IS9TGj74Ss4Smhk=","ZLWavqwl58TX208p6zNDoRlHnwSRTC6hxMCjQd1r0X4=","\u002B5\u002B0WSu7fBki6\u002B\u002BFZs36\u002BU3w2E3tN7P7aemvxy8kbVw=","xAU\u002BUPzJEXWZntFR9eKM2kQQA16JF9JZZ69wIvuWCVc=","AkdC5goFMZJXujnnAUM6g\u002BOcmGCf8q\u002BCEe\u002B0dZ0krJQ=","7EugNFh5MbXneZDluw\u002BwzGEl8pVXe1u\u002BFgfsFl8CqPA=","QpbImeiwKqJZcCJ9WUM0yUg8elLGOJLfGzT71jsBfoE=","QimH45QyFMwpML/yjUoXzGacURAPyk7gjvifRxWbI0Q=","y5wYksgm0vTA73yx4bnUiEt6Mp98BBCdZg8itgR1ibU=","TZKOAX33sGDSW\u002BcZxyqWXmOPfHcvFFfmC\u002BMAMS/ZFUQ=","Gt2tQMj5AexLM9PphcXJx1F5YnuY0UfQFIcuLtcb0sA=","pnIk9vkhRb5VzHV8E9KCW11KTS5gSXoKjTG1HEk/4Eg=","lpW5/o0ASRdYmcpcd9w2EwSbhWPRc/uRnCgu1VBJH58=","ZnEqeoQvub0T8IokqY00OolPzUyQyQyHF0aNzQKU6nA=","vjEMujqbQJsAvuguSjwnURm8rHrQD2/XasS\u002BHFyi3Zg=","yE2KtgZ1eAQrPUom/GCSfrs9L0jXPYNBV5FA6OjoupU=","7wk2rjI/amookKwPspkfh/liQjLDZ7\u002B/Zc6Kguoy6Os=","3CpoTrpkdq9\u002Bmx9xInwN4yekbOTFERkI2dkAhXWi3p0=","Ckt31te4svikGlw99h34vdK48WmU7Y/3CZ2tb1NPz1c=","Wg65rIMfLtU2d4c7mB1tAq9upJZWmHUQXRawjn0KkCg=","G2RY3TQq6qNvR84xwhKtxpt49\u002BiiYvA7cqTXy/EywZg=","OvFc4AaocoXcYpx3QZ5eYg8OXaMPfNHx43Fc1sWQTVs=","C\u002BE4HjEI\u002BGOAUpppIIoFYx78YWatqGB\u002BBwRKGOTMJ0o=","xYul36XgtS66wDQMBdweiHKrAt1emOdlq20wm3R4YJM=","dFpWewfvgjp/NsgW1Mq5hbGH42wxDi9tWQ5kA5fMQNg=","e9gXhRQik/HhzF6ukztqUGOHbP9pdJFYIoy1IDbPK7Y=","Mt6RiJPMNpXbfX0XpAG3FuNnm1xke/2ucHIOMIcf3\u002Bo=","NNk0a0oNh21C466qH/5Y8pI8jIekb7ER4cY7VMnPPDE=","gKVOjHTScaD\u002Bu1PbX13vYAS0p4doPTy5pDIzUYq6BGU=","Egn5OHw5KM/X5SQNQT02g2HbsXOJTFVWHObmrxSUxfI=","DVvXy2AmWkgUjtTYaQ2p/nE8vUVQEYCqfBp3B9DuqMk=","f2VGIy9UXsxpKGbqVumAal5dVd8L\u002B0/QQpw9ziqJzlg=","l7x44oU/CXoDaI15IeyzkcPPN7oOgEQ/dLQh86SJR84=","3fg9gLTbDQllDZQprzzFM6U/mBsc2R7Dw8jJqzkImkQ=","E7dexWDAOUfbPyoMGsX01Ql43VU7SrjoE1ibbqkG8hA=","1w/qBfrCuneB43VYISzIMyixdEFkCOlquGXt7NMJDl4=","4\u002BrwAW81Sd7hBdi10Mw\u002BvR8WtrlIzOcJ6HpL/JSP3Eo=","MlixkDG5VrET30U8bB/\u002BHkfU7s4nC74oYusvkD3qtuw=","7byy7AX3k4P4OOXFaQTdRae6JttL6alc8PpMgIL0D60=","\u002B8roCWkxk6wQEmVGpyg\u002B9te7iKc3IO1\u002BAI1b0/z7vEg=","NORxIbGuwlBo1i0SHcQwKvsHvVaAH8dQY41diiTL8r8=","Qs0nL2H9sOu\u002Bmh1kbA2MHXiRCgFJRftg3iF6fhoAfeA=","FdG5QQo5e3u5dFbM5QuaQOI1JN6n/IhB26owQ5VtCc0=","sPqL\u002BPnFGVZOWMkgflyyQBZGHbfHC2pRBkzedSihWoM="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/rpswa.dswa.cache.json b/obj/Debug/net9.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..8fa2e2f --- /dev/null +++ b/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"3oSNzQTwYvH9K0OY5IuqKC/CfvmjyxsBLcbGtCLxQ/U=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["oUKe55hm9SxjDiIrtp/G7ksI0gZ0aSfcOdHuQSyJNVk=","dageDQcTmV4iRVud7WCs6M3DF6bnSOMD\u002B5EAbfE/GsI=","QhVsA8tZpSszWoFBxgOPrCVCLQeBz4AUpLM328TYxaw=","0mJP0sb3yxs6a\u002Bqgl1dSMvm//NFmXHDuxzVKABBIGEg=","0B7YrL7qd7yO8k0ubo0OVc1q1UElkVJ0tbxgwfFP54c=","V2ihhSUcyk/CM5Rh72qwMhT7dH/BJvpEKNyN592o/Gw=","s8kJ/nXRGz2Z7skl0WWhTb8CVFM7BVh5lLDizNKVkuc=","oAEpolgp2wM7g2UtDld29xfUizWHssW4sUyCyw2mKts=","RYSEAwpbBA5dEkHK9Qhuk3PuAgnSZtZXzKc65aZNwgA=","I1LMZaExmVzGkfAhqEWIY5ZFi/CuVF/Z3rPVSxe5O3A=","EvzuXArZIOinvSEowiRGjWfbCi5Zby8Ath9dCJXodSE=","AXbxBXuSye84gb023Dqu/u8uokCRAxtFONmGnKxKJkI=","k\u002B4eneTbId4eA9gp4qpQJnt5dCvuesknpckQODjwHfE=","o3tNgfBY5rnFEUkHzc\u002BUxH31xGma1PFMwMvVaI0h/3U=","KoUTADkDSJZnYrcAP2CJCIuxHgbo/ADF7DdpYV6GKBE=","OuL19\u002BCJvnxafSMWLFcufvRM1lb/ZmvzrOuyb1dJG08=","6aMc0KOl/687M5q47YSY4hxqxDgkM\u002Bw07b7\u002BBA6Sjkg=","wygW4WZ/8pX3l\u002BVnPWc23c13P0P6yClZHotR4Xc/McM=","oU6t8TL5ldy5Ul6M29Z2lSPb/WFywCr9ntCfjHOrLIs=","gI2XaocMT0d\u002BMibT50cTluU0aGjTp/\u002BO3hnVxsObjsE=","C56ikJ2wLOgq3qXEXGuHBE/rocD9d\u002BKq\u002BySD0aQO\u002BfU=","dhalqmZazM5R4nE7t\u002BQYun7gDWKPAsxkfpaJd77d8kE=","gA\u002BNupU0Sdi1uH27dbQwMNm8wN/ca1nyaQz5GXyQPj4=","XHaOZwH5EuUnqIeokPjxTqx2IAix9sBVVCjs0QeCEyM=","eWD6GsuI6DzTQ53Z5xEWhLZYpiGwRqj8GrAdSc6e9yk=","gHx2d/5HGL\u002BS1ZIZZUP3QoIW40n8lxwO6qKbPvH01AM=","qINMGq0gkvgFzO6WXwcWElGKff1igjFfEl9c5jcrriI=","USc9hAtZAKNvvqqd2EvJyWp66tc6l60HkoXAOXmSDSM=","g68ZZ\u002BZpp9jKzP4PEubuT1v5pRffH9L6802L1bUan7k=","5L3D6DBjtILlnyV0YA092ACsFlySho0vLEDaDZFjmSY=","vcfjvhELRE7VzI7ad\u002BUIF05awgts0KsafRmSImEm2UI=","0IaYI//F4Xj7SRuTt/o6n6p7bQLB1vDdlrnsJVyLkEA=","0Z2pXdEC91JgKLQim3vpnxToe1UEmdflTCQfQ6m7v6I=","XFVoZfztuYe42dLLMYtRe\u002BCwOgNsVSfzxN3apHAfqjw=","p85npebsCcjRlbgmexr4nXd7AnQLSvJ3G\u002BI7prLthto="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.build.json b/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..1baa7cd --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"ksAQLj6u35t97JRxvZfK6gXmiNFMYDIBNC+hPai0Elw=","Source":"Server","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.build.json.cache b/obj/Debug/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..0eb0085 --- /dev/null +++ b/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +ksAQLj6u35t97JRxvZfK6gXmiNFMYDIBNC+hPai0Elw= \ No newline at end of file diff --git a/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt b/obj/Debug/net9.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net9.0/staticwebassets.removed.txt b/obj/Debug/net9.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net9.0/swae.build.ex.cache b/obj/Debug/net9.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/obj/Release/net8.0/Server.AssemblyInfo.cs b/obj/Release/net8.0/Server.AssemblyInfo.cs new file mode 100644 index 0000000..b270c92 --- /dev/null +++ b/obj/Release/net8.0/Server.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Server")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Server")] +[assembly: System.Reflection.AssemblyTitleAttribute("Server")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Release/net8.0/Server.AssemblyInfoInputs.cache b/obj/Release/net8.0/Server.AssemblyInfoInputs.cache new file mode 100644 index 0000000..39759fb --- /dev/null +++ b/obj/Release/net8.0/Server.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +de626008ab478696095f5a4f76d8453fba4715bb09e02c38b06b445dbfb1ddc9 diff --git a/obj/Release/net8.0/Server.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net8.0/Server.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ad480d7 --- /dev/null +++ b/obj/Release/net8.0/Server.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = GeoSus.Server +build_property.RootNamespace = GeoSus.Server +build_property.ProjectDir = C:\Users\racek\Documents\GeoSus\Server\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\racek\Documents\GeoSus\Server +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/obj/Release/net8.0/Server.GlobalUsings.g.cs b/obj/Release/net8.0/Server.GlobalUsings.g.cs new file mode 100644 index 0000000..c65f0a7 --- /dev/null +++ b/obj/Release/net8.0/Server.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Release/net8.0/Server.assets.cache b/obj/Release/net8.0/Server.assets.cache new file mode 100644 index 0000000..afef05b Binary files /dev/null and b/obj/Release/net8.0/Server.assets.cache differ diff --git a/obj/Release/net8.0/Server.csproj.AssemblyReference.cache b/obj/Release/net8.0/Server.csproj.AssemblyReference.cache new file mode 100644 index 0000000..11d2917 Binary files /dev/null and b/obj/Release/net8.0/Server.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net8.0/rpswa.dswa.cache.json b/obj/Release/net8.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..e1b6caa --- /dev/null +++ b/obj/Release/net8.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"3oSNzQTwYvH9K0OY5IuqKC/CfvmjyxsBLcbGtCLxQ/U=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["mbc1dzU/eDC1x9A7iQvzt39QOFnbTg\u002Bj4N0AwsKQjFk="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Release/net8.0/staticwebassets.removed.txt b/obj/Release/net8.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/obj/Release/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/obj/Release/net9.0/Server.AssemblyInfo.cs b/obj/Release/net9.0/Server.AssemblyInfo.cs new file mode 100644 index 0000000..b270c92 --- /dev/null +++ b/obj/Release/net9.0/Server.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Server")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Server")] +[assembly: System.Reflection.AssemblyTitleAttribute("Server")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Release/net9.0/Server.AssemblyInfoInputs.cache b/obj/Release/net9.0/Server.AssemblyInfoInputs.cache new file mode 100644 index 0000000..39759fb --- /dev/null +++ b/obj/Release/net9.0/Server.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +de626008ab478696095f5a4f76d8453fba4715bb09e02c38b06b445dbfb1ddc9 diff --git a/obj/Release/net9.0/Server.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net9.0/Server.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d0fcbaf --- /dev/null +++ b/obj/Release/net9.0/Server.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = GeoSus.Server +build_property.RootNamespace = GeoSus.Server +build_property.ProjectDir = C:\Users\racek\Documents\GeoSus\Server\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\racek\Documents\GeoSus\Server +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/obj/Release/net9.0/Server.GlobalUsings.g.cs b/obj/Release/net9.0/Server.GlobalUsings.g.cs new file mode 100644 index 0000000..c65f0a7 --- /dev/null +++ b/obj/Release/net9.0/Server.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/obj/Release/net9.0/Server.MvcApplicationPartsAssemblyInfo.cache b/obj/Release/net9.0/Server.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net9.0/Server.assets.cache b/obj/Release/net9.0/Server.assets.cache new file mode 100644 index 0000000..1b7050e Binary files /dev/null and b/obj/Release/net9.0/Server.assets.cache differ diff --git a/obj/Release/net9.0/Server.csproj.AssemblyReference.cache b/obj/Release/net9.0/Server.csproj.AssemblyReference.cache new file mode 100644 index 0000000..330b954 Binary files /dev/null and b/obj/Release/net9.0/Server.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net9.0/Server.csproj.BuildWithSkipAnalyzers b/obj/Release/net9.0/Server.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net9.0/Server.csproj.CoreCompileInputs.cache b/obj/Release/net9.0/Server.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d15bcc2 --- /dev/null +++ b/obj/Release/net9.0/Server.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +448bbf2ee0d28b1180b55022324ee65b50fe42c2cedbd29ea2afbac619b19062 diff --git a/obj/Release/net9.0/Server.csproj.FileListAbsolute.txt b/obj/Release/net9.0/Server.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c1f0444 --- /dev/null +++ b/obj/Release/net9.0/Server.csproj.FileListAbsolute.txt @@ -0,0 +1,55 @@ +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\appsettings.json +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\Server.staticwebassets.endpoints.json +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\Server.exe +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\Server.deps.json +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\Server.runtimeconfig.json +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\Server.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\Server.pdb +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\Microsoft.Data.Sqlite.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\SQLitePCLRaw.batteries_v2.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\SQLitePCLRaw.core.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\SQLitePCLRaw.provider.e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\browser-wasm\nativeassets\net9.0\e_sqlite3.a +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-arm\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-armel\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-musl-s390x\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-s390x\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-x64\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\linux-x86\native\libe_sqlite3.so +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\win-arm\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\win-arm64\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\win-x64\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\bin\Release\net9.0\runtimes\win-x86\native\e_sqlite3.dll +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\Server.csproj.AssemblyReference.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\rpswa.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\Server.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\Server.AssemblyInfoInputs.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\Server.AssemblyInfo.cs +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\Server.csproj.CoreCompileInputs.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\Server.MvcApplicationPartsAssemblyInfo.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\rjimswa.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\rjsmrazor.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\rjsmcshtml.dswa.cache.json +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\scopedcss\bundle\Server.styles.css +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\staticwebassets.build.json +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\staticwebassets.build.json.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\staticwebassets.development.json +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\staticwebassets.build.endpoints.json +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\swae.build.ex.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\staticwebassets.upToDateCheck.txt +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\Server.csproj.Up2Date +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\Server.dll +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\refint\Server.dll +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\Server.pdb +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\Server.genruntimeconfig.cache +C:\Users\racek\Documents\GeoSus\Server\obj\Release\net9.0\ref\Server.dll diff --git a/obj/Release/net9.0/Server.csproj.Up2Date b/obj/Release/net9.0/Server.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net9.0/Server.dll b/obj/Release/net9.0/Server.dll new file mode 100644 index 0000000..d6fa3cb Binary files /dev/null and b/obj/Release/net9.0/Server.dll differ diff --git a/obj/Release/net9.0/Server.genruntimeconfig.cache b/obj/Release/net9.0/Server.genruntimeconfig.cache new file mode 100644 index 0000000..1b7ca11 --- /dev/null +++ b/obj/Release/net9.0/Server.genruntimeconfig.cache @@ -0,0 +1 @@ +8ff317110f81db276bb40b8f29b351facf1237f96ba581284fffbfebf897e0ab diff --git a/obj/Release/net9.0/Server.pdb b/obj/Release/net9.0/Server.pdb new file mode 100644 index 0000000..91cb5d0 Binary files /dev/null and b/obj/Release/net9.0/Server.pdb differ diff --git a/obj/Release/net9.0/apphost.exe b/obj/Release/net9.0/apphost.exe new file mode 100644 index 0000000..129cb1d Binary files /dev/null and b/obj/Release/net9.0/apphost.exe differ diff --git a/obj/Release/net9.0/ref/Server.dll b/obj/Release/net9.0/ref/Server.dll new file mode 100644 index 0000000..2f40fe1 Binary files /dev/null and b/obj/Release/net9.0/ref/Server.dll differ diff --git a/obj/Release/net9.0/refint/Server.dll b/obj/Release/net9.0/refint/Server.dll new file mode 100644 index 0000000..2f40fe1 Binary files /dev/null and b/obj/Release/net9.0/refint/Server.dll differ diff --git a/obj/Release/net9.0/rjsmcshtml.dswa.cache.json b/obj/Release/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..88e4428 --- /dev/null +++ b/obj/Release/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"1uTcSHgWH86Q8v8iWh0SXFgOm4a4LSGTNfqYGaJX/0c=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["frzGhctfNO9zM1rTRdwdT4gK2/yh\u002B64CubDDkM6Q1bc=","/6Mp501SWokhRM8P46RRwXBrBFZmT8PnTDQsEP\u002BzBv4=","wEd2JHApU8bCtrFZIz90xdUer1IJHrQPiAk4jMGBi8Q=","oFR05VOFfCy8uKwAuP0hU6/Q6x5S0tccnpC5vcgkCfI=","eBB5DR/2DiQGJbssuzcLseqrnIXoy54Moq7\u002BHbV6Xx4=","uyk9BByRTD712G37Ea\u002BHGkD/QCLYBhkly/qP0KhKZPY=","nDNr5in8ZAziAX2whM539vs49mOWmiEQyIPsboiMK8s=","6BXDk2Z/tJ0FyXqk\u002BbvQPy7No5Wh65SQ5sYKHtLLdmk=","zOEoY2sW\u002BlFc2qmMXuzw230VHkKkc9lNaAahbyCQ8Hc=","BkjFF2aBA\u002By3M0aCacqx\u002BPJwo9B4xW3cOSjvcm9nIn4=","l\u002BD3Jj8wVcLXBE3j7FK0IYJOszCbEypKQpJ4kbztmyo=","vuFYhS\u002BEKj\u002BKnKagyZffFOFKZIXkJ/Y/si25EKPVUAQ=","\u002B99chttja/qWPbHq\u002Bgw/46wciYVFyBxjUMN52tyiFL8=","kppjn8v8IGMZQhV\u002BRRxpacifIkIg8V7quiR0dWpwPL4=","g4DjVAA7kV6BpuAHLWl5l/B0aq4Yv3lOZCwqRQSZgo8=","eyQSLKX7rR7pGGpfI7qjGi9f7TbxQcfnluA2L1XMRmM=","FdG5QQo5e3u5dFbM5QuaQOI1JN6n/IhB26owQ5VtCc0=","AAQT1iruTAUHvD5LSV59TlQ6\u002Bb8kbRdjJe5xSvLRm\u002BY="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Release/net9.0/rjsmrazor.dswa.cache.json b/obj/Release/net9.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..15aa45b --- /dev/null +++ b/obj/Release/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"KOfKlEck+33tmoKlsD8+kGy1Qe/BI81/bLGrN1Uhpf8=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["frzGhctfNO9zM1rTRdwdT4gK2/yh\u002B64CubDDkM6Q1bc=","/6Mp501SWokhRM8P46RRwXBrBFZmT8PnTDQsEP\u002BzBv4=","wEd2JHApU8bCtrFZIz90xdUer1IJHrQPiAk4jMGBi8Q=","oFR05VOFfCy8uKwAuP0hU6/Q6x5S0tccnpC5vcgkCfI=","eBB5DR/2DiQGJbssuzcLseqrnIXoy54Moq7\u002BHbV6Xx4=","uyk9BByRTD712G37Ea\u002BHGkD/QCLYBhkly/qP0KhKZPY=","nDNr5in8ZAziAX2whM539vs49mOWmiEQyIPsboiMK8s=","6BXDk2Z/tJ0FyXqk\u002BbvQPy7No5Wh65SQ5sYKHtLLdmk=","zOEoY2sW\u002BlFc2qmMXuzw230VHkKkc9lNaAahbyCQ8Hc=","BkjFF2aBA\u002By3M0aCacqx\u002BPJwo9B4xW3cOSjvcm9nIn4=","l\u002BD3Jj8wVcLXBE3j7FK0IYJOszCbEypKQpJ4kbztmyo=","vuFYhS\u002BEKj\u002BKnKagyZffFOFKZIXkJ/Y/si25EKPVUAQ=","\u002B99chttja/qWPbHq\u002Bgw/46wciYVFyBxjUMN52tyiFL8=","kppjn8v8IGMZQhV\u002BRRxpacifIkIg8V7quiR0dWpwPL4=","g4DjVAA7kV6BpuAHLWl5l/B0aq4Yv3lOZCwqRQSZgo8=","eyQSLKX7rR7pGGpfI7qjGi9f7TbxQcfnluA2L1XMRmM=","FdG5QQo5e3u5dFbM5QuaQOI1JN6n/IhB26owQ5VtCc0=","AAQT1iruTAUHvD5LSV59TlQ6\u002Bb8kbRdjJe5xSvLRm\u002BY="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Release/net9.0/rpswa.dswa.cache.json b/obj/Release/net9.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..e6f082b --- /dev/null +++ b/obj/Release/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"3oSNzQTwYvH9K0OY5IuqKC/CfvmjyxsBLcbGtCLxQ/U=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["frzGhctfNO9zM1rTRdwdT4gK2/yh\u002B64CubDDkM6Q1bc="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Release/net9.0/staticwebassets.build.endpoints.json b/obj/Release/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/obj/Release/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/obj/Release/net9.0/staticwebassets.build.json b/obj/Release/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..1baa7cd --- /dev/null +++ b/obj/Release/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"ksAQLj6u35t97JRxvZfK6gXmiNFMYDIBNC+hPai0Elw=","Source":"Server","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/obj/Release/net9.0/staticwebassets.build.json.cache b/obj/Release/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..0eb0085 --- /dev/null +++ b/obj/Release/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +ksAQLj6u35t97JRxvZfK6gXmiNFMYDIBNC+hPai0Elw= \ No newline at end of file diff --git a/obj/Release/net9.0/staticwebassets.references.upToDateCheck.txt b/obj/Release/net9.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net9.0/staticwebassets.removed.txt b/obj/Release/net9.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net9.0/swae.build.ex.cache b/obj/Release/net9.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Server.csproj.nuget.dgspec.json b/obj/Server.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e56d299 --- /dev/null +++ b/obj/Server.csproj.nuget.dgspec.json @@ -0,0 +1,109 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\racek\\Documents\\GeoSus\\Server\\Server.csproj": {} + }, + "projects": { + "C:\\Users\\racek\\Documents\\GeoSus\\Server\\Server.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\racek\\Documents\\GeoSus\\Server\\Server.csproj", + "projectName": "Server", + "projectPath": "C:\\Users\\racek\\Documents\\GeoSus\\Server\\Server.csproj", + "packagesPath": "C:\\Users\\racek\\.nuget\\packages\\", + "outputPath": "C:\\Users\\racek\\Documents\\GeoSus\\Server\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\racek\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.Data.Sqlite": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.Extensions.Logging": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.Extensions.Logging.Console": { + "target": "Package", + "version": "[9.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[9.0.12, 9.0.12]" + }, + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[9.0.12, 9.0.12]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[9.0.12, 9.0.12]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Ref", + "version": "[9.0.12, 9.0.12]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.102/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/Server.csproj.nuget.g.props b/obj/Server.csproj.nuget.g.props new file mode 100644 index 0000000..e1ca359 --- /dev/null +++ b/obj/Server.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\racek\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 7.0.0 + + + + + + \ No newline at end of file diff --git a/obj/Server.csproj.nuget.g.targets b/obj/Server.csproj.nuget.g.targets new file mode 100644 index 0000000..fb409e2 --- /dev/null +++ b/obj/Server.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..9f5c778 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,1094 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "Microsoft.Data.Sqlite/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "9.0.0", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10", + "SQLitePCLRaw.core": "2.1.10" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/9.0.0": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "compile": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.10", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.10" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.10": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "buildTransitive/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + }, + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": { + "assetType": "native", + "rid": "browser-wasm" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-s390x" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-ppc64le" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-s390x" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-arm64" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-x64" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + } + } + }, + "libraries": { + "Microsoft.Data.Sqlite/9.0.0": { + "sha512": "lw6wthgXGx3r/U775k1UkUAWIn0kAT0wj4ZRq0WlhPx4WAOiBsIjgDKgWkXcNTGT0KfHiClkM+tyPVFDvxeObw==", + "type": "package", + "path": "microsoft.data.sqlite/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/netstandard2.0/_._", + "microsoft.data.sqlite.9.0.0.nupkg.sha512", + "microsoft.data.sqlite.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/9.0.0": { + "sha512": "cFfZjFL+tqzGYw9lB31EkV1IWF5xRQNk2k+MQd+Cf86Gl6zTeAoiZIFw5sRB1Z8OxpEC7nu+nTDsLSjieBAPTw==", + "type": "package", + "path": "microsoft.data.sqlite.core/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net6.0/Microsoft.Data.Sqlite.dll", + "lib/net6.0/Microsoft.Data.Sqlite.xml", + "lib/net8.0/Microsoft.Data.Sqlite.dll", + "lib/net8.0/Microsoft.Data.Sqlite.xml", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.9.0.0.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "sha512": "YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "type": "package", + "path": "microsoft.extensions.configuration/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "sha512": "lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "sha512": "RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "sha512": "MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "sha512": "+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/9.0.0": { + "sha512": "crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "sha512": "g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "sha512": "H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets", + "lib/net462/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net462/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "sha512": "yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "type": "package", + "path": "microsoft.extensions.logging.console/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "lib/net462/Microsoft.Extensions.Logging.Console.dll", + "lib/net462/Microsoft.Extensions.Logging.Console.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Console.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.0": { + "sha512": "y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "type": "package", + "path": "microsoft.extensions.options/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "sha512": "Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "sha512": "N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "sha512": "UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", + "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.1.10": { + "sha512": "Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==", + "type": "package", + "path": "sqlitepclraw.core/2.1.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.1.10.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "sha512": "mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-arm/native/libe_sqlite3.so", + "runtimes/linux-musl-arm64/native/libe_sqlite3.so", + "runtimes/linux-musl-s390x/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-ppc64le/native/libe_sqlite3.so", + "runtimes/linux-s390x/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib", + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib", + "runtimes/osx-arm64/native/libe_sqlite3.dylib", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "sha512": "uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "Microsoft.Data.Sqlite >= 9.0.0", + "Microsoft.Extensions.Logging >= 9.0.0", + "Microsoft.Extensions.Logging.Console >= 9.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\racek\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\racek\\Documents\\GeoSus\\Server\\Server.csproj", + "projectName": "Server", + "projectPath": "C:\\Users\\racek\\Documents\\GeoSus\\Server\\Server.csproj", + "packagesPath": "C:\\Users\\racek\\.nuget\\packages\\", + "outputPath": "C:\\Users\\racek\\Documents\\GeoSus\\Server\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\racek\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.Data.Sqlite": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.Extensions.Logging": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.Extensions.Logging.Console": { + "target": "Package", + "version": "[9.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[9.0.12, 9.0.12]" + }, + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[9.0.12, 9.0.12]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[9.0.12, 9.0.12]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Ref", + "version": "[9.0.12, 9.0.12]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.102/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..4bf9952 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,32 @@ +{ + "version": 2, + "dgSpecHash": "kuxIEyJUaLo=", + "success": true, + "projectFilePath": "C:\\Users\\racek\\Documents\\GeoSus\\Server\\Server.csproj", + "expectedPackageFiles": [ + "C:\\Users\\racek\\.nuget\\packages\\microsoft.data.sqlite\\9.0.0\\microsoft.data.sqlite.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.data.sqlite.core\\9.0.0\\microsoft.data.sqlite.core.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.configuration\\9.0.0\\microsoft.extensions.configuration.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.0\\microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.configuration.binder\\9.0.0\\microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.0\\microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.0\\microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.logging\\9.0.0\\microsoft.extensions.logging.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.0\\microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.logging.configuration\\9.0.0\\microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.logging.console\\9.0.0\\microsoft.extensions.logging.console.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.options\\9.0.0\\microsoft.extensions.options.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\9.0.0\\microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.0\\microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.10\\sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\sqlitepclraw.core\\2.1.10\\sqlitepclraw.core.2.1.10.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.10\\sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.10\\sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.netcore.app.ref\\9.0.12\\microsoft.netcore.app.ref.9.0.12.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\9.0.12\\microsoft.windowsdesktop.app.ref.9.0.12.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\9.0.12\\microsoft.aspnetcore.app.ref.9.0.12.nupkg.sha512", + "C:\\Users\\racek\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\9.0.12\\microsoft.netcore.app.host.win-x64.9.0.12.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file